diff --git a/README.md b/README.md index 0ff4ae6..4d651d5 100644 --- a/README.md +++ b/README.md @@ -1 +1,43 @@ -# diagnostic-system-1.0 \ No newline at end of file +# Ollama Diagnostics 1.1 + +Локальный анализатор системы с интеграцией Ollama для автоматизированной диагностики проблем + +## Описание +Ollama Diagnostics - интеллектуальное приложение для macOS, сочетающее системный профилировщик с AI-анализом через локальную LLM Ollama. Автоматически выявляет проблемы и предлагает решения (пока только на английском языке). + +## Основные функции +### Уже реализованы в версии (1.0): +- Полный системный аудит через `system_profiler` +- ИИ-анализ отчетов с использованием Ollama (llama3.2) +- Управление историей отчетов +- Копирование результатов +### Дополнительно реализованы в версии (1.1): +- Регулируемая точность анализа (10-30 сегментов) +- Встроенный чат с Ollama + +## Требования +- macOS 12.0+ +- Python 3.9+ +- Установленная Ollama (https://ollama.ai/) в файл проекта +- Модель llama3.2 + +## Установка +```bash +git clone https://github.com/Gando4lapi/diagnostic-system-1.0.git +cd diagnostic-system-1.0 +pip install tkinter ollama python-slugify +python3 diagnostic_app.py +``` + +## Будущие идеи разработки: +- Сделать контейнер с автоматической дозагрузкой дополнительных файлов +- Реализовать установщик, который будет устанавливать контейнер +- Повысить точность исследования +- Добавить возможность выбрать язык (сейчас доступна только возможность использовать чат в приложении, для того чтобы описать отчет llama на вашем родном языке) +- Добавить возможнось выбора модели LLM для анализа системы +- Улучшить графический интерфейс + +## Скриншоты приложения +![telegram-cloud-photo-size-2-5300798188493601631-y](https://github.com/user-attachments/assets/fc52e7e7-1ca5-4219-af62-16ffe3b9030c) +![telegram-cloud-photo-size-2-5300798188493601633-y](https://github.com/user-attachments/assets/5c825f78-2584-4f87-ae39-6a9d76952727) +![telegram-cloud-photo-size-2-5300798188493601635-y](https://github.com/user-attachments/assets/5d6389e5-f202-4a8e-ae5e-c89b6ae721f8) diff --git a/har_and_cookies/blackbox.json b/har_and_cookies/blackbox.json new file mode 100644 index 0000000..385a46f --- /dev/null +++ b/har_and_cookies/blackbox.json @@ -0,0 +1 @@ +{"validated_value": "00f37b34-a166-4efb-bce5-1312d87f2f94"} \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..9c3dcfb --- /dev/null +++ b/main.py @@ -0,0 +1,384 @@ +import tkinter as tk +from tkinter import messagebox +from tkinter import ttk +from datetime import datetime +import subprocess +import os +import platform +import re +import time +import json +import ssl +from ollama import chat +from ollama import ChatResponse +import threading +import math +import webbrowser + +def get_ssl_context(): + context = ssl.create_default_context() + context.check_hostname = False + return context + +class SystemAnalyzerLocal: + def __init__(self, model_name="llama3.2"): + self.model_name = model_name + + def analyze_system(self, report_content, num_parts, progress_callback): + num_parts = max(1, num_parts) + content_length = len(report_content) + part_length = math.ceil(content_length / num_parts) + chunks = [report_content[i:i + part_length] for i in range(0, content_length, part_length)] + num_chunks = len(chunks) + all_analysis = [] + start_time = time.time() + + for i, chunk in enumerate(chunks): + prompt = f"Часть {i + 1} из {num_chunks}. Проанализируй следующий фрагмент отчета системы на наличие **необычных записей, ошибок, предупреждений или потенциальных проблем в работе оборудования или программного обеспечения**. Обрати внимание на **ошибки, предупреждения, странные значения или любые аномалии**. После обнаружения проблемы, предложи **возможные способы ее решения** на **русском языке**. Помни о контексте предыдущих частей анализа (если они были). **Не описывай структуру отчета, просто скажи, если что-то не так, и как это исправить.** НЕ ЛЕЙ МНОГО ВОДЫ, КРАТКО И ПО ДЕЛУ, СДЕЛАЙ ВСЕ НА РУССКОМ ЯЗЫКЕ, НЕ НА АНГЛИЙСКОМ БЛЯТЬ, А НА РУССКОМ!!!!!\n\n{chunk}" + try: + response: ChatResponse = chat(model=self.model_name, messages=[ + {'role': 'user', 'content': prompt} + ]) + analysis_result = response.get('message', {}).get('content', "") + all_analysis.append(analysis_result) + except Exception as e: + return [{'code': 'OLLAMA_ERROR', 'message': f'Ошибка Ollama при анализе части {i + 1}: {e}'}] + + progress = int((i + 1) / num_chunks * 100) + elapsed_time = time.time() - start_time + estimated_time = elapsed_time / (i + 1) * num_chunks if (i + 1) > 0 else 0 + remaining_time = estimated_time - elapsed_time + progress_callback(progress, remaining_time) + time.sleep(0.1) + + if all_analysis: + combined_analysis = "\n\n".join(all_analysis) + return [{"code": "OLLAMA_ANALYSIS", "message": combined_analysis}] + else: + return [{"code": "OLLAMA_NO_RESPONSE", "message": "Ollama не предоставила ответов на части отчета."}] + +class AppManager(tk.Tk): + def __init__(self, ollama_model="llama3.2"): + super().__init__() + self.title("Оllama Diagnostics") + self.geometry("700x900") + self.system_analyzer = SystemAnalyzerLocal(ollama_model) + self.ollama_model = ollama_model + self.app_name = "Ollama.app" + self.app_path = os.path.join(os.getcwd(), self.app_name) + self.save_dir = "system_info" + os.makedirs(self.save_dir, exist_ok=True) + self.created_files = [] + self.current_num_parts = 10 + + webbrowser.open("https://github.com/Gando4lapi/diagnostic-system-1.0") + + try: + subprocess.Popen(["ollama", "run", self.ollama_model], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + print(f"Команда 'ollama run {self.ollama_model}' запущена в фоновом режиме.") + except FileNotFoundError: + print(f"Ошибка: Команда 'ollama' не найдена. Убедитесь, что Ollama установлена и доступна в PATH.") + except Exception as e: + print(f"Непредвиденная ошибка при запуске Ollama: {e}") + + self.open_app_button = tk.Button(self, text=f"Открыть {self.app_name}", command=self.open_ollama) + self.open_app_button.pack(pady=20) + + self.progress_bar_app = ttk.Progressbar(self, mode='indeterminate') + self.install_label = tk.Label(self, text="") + + self.chat_button = tk.Button(self, text="Открыть чат с Ollama", command=self.open_ollama_chat) + self.chat_button.pack(pady=10) + + self.accuracy_label = tk.Label(self, text="Точность анализа: 50% (частей: 10)") + self.accuracy_scale = ttk.Scale(self, from_=0, to=100, orient=tk.HORIZONTAL, + command=self._update_accuracy_label) + self.accuracy_scale.set(50) + + + self.diagnose_button = None + self.file_list_label = None + self.file_list = None + self.analyze_button = None + self.analysis_text = None + self.analysis_scrollbar = None + self.copy_button = None + self.progress_bar_analysis = None + self.progress_label = None + self.time_label = None + + self.protocol("WM_DELETE_WINDOW", self.on_close) + + def _update_accuracy_label(self, value): + accuracy_percentage = int(float(value)) + num_parts = round(1 + (accuracy_percentage / 100) * 19) + self.accuracy_label.config(text=f"Точность анализа: {accuracy_percentage}% (частей: {num_parts})") + self.current_num_parts = num_parts + + def open_ollama(self): + if platform.system() == "Darwin": + self.open_app_button.pack_forget() + self.progress_bar_app.pack(pady=10) + self.install_label.pack() + self.install_label.config(text="Ожидание запуска Ollama...") + self.progress_bar_app.start(50) + self.after(100, self.try_open_ollama) + else: + messagebox.showerror("Ошибка", "Открытие Ollama.app поддерживается только на macOS.") + + def try_open_ollama(self): + try: + subprocess.run(["open", self.app_path], check=True, timeout=5) + self.progress_bar_app.stop() + self.progress_bar_app.pack_forget() + self.install_label.config(text="Установите и закройте Ollama.") + self.after(1000, self.wait_for_ollama_close) + except FileNotFoundError: + self.progress_bar_app.stop() + self.progress_bar_app.pack_forget() + self.install_label.config(text=f"Ошибка: '{self.app_name}' не найден.") + self.open_app_button.pack(pady=20) + except subprocess.CalledProcessError: + self.progress_bar_app.stop() + self.progress_bar_app.pack_forget() + self.install_label.config(text="Ollama запущено.") + self.after(1000, self.wait_for_ollama_close) + except subprocess.TimeoutExpired: + self.progress_bar_app.stop() + self.progress_bar_app.pack_forget() + self.install_label.config(text="Ollama запущено.") + self.after(1000, self.wait_for_ollama_close) + except Exception as e: + self.progress_bar_app.stop() + self.progress_bar_app.pack_forget() + self.install_label.config(text=f"Ошибка запуска: {e}") + self.open_app_button.pack(pady=20) + + def wait_for_ollama_close(self): + ollama_running = False + try: + processes = subprocess.run(['pgrep', '-x', 'Ollama'], capture_output=True, text=True) + if processes.returncode == 0 and 'Ollama' in processes.stdout: + ollama_running = True + except FileNotFoundError: + pass + + if ollama_running: + self.after(1000, self.wait_for_ollama_close) + else: + self.install_label.pack_forget() + self.create_diagnose_button() + self.create_file_list_widgets() + self.update_file_list() + self.accuracy_label.pack(pady=(10, 0)) + self.accuracy_scale.pack(pady=(0, 10), fill=tk.X, padx=10) + + + def create_diagnose_button(self): + self.diagnose_button = tk.Button(self, text="Провести диагностику системы", command=self.run_system_profiler) + self.diagnose_button.pack(pady=10) + + def create_file_list_widgets(self): + self.file_list_label = tk.Label(self, text="Отчеты диагностики:") + self.file_list_label.pack() + self.file_list = tk.Listbox(self, width=60, height=10) + self.file_list.pack(pady=5, padx=10, fill=tk.BOTH, expand=True) + self.file_list.bind("", self.open_selected_file) + + self.analyze_button = tk.Button(self, text="Анализировать отчет", command=self.start_analysis) + self.analyze_button.pack(pady=5) + + self.analysis_text = tk.Text(self, height=15, width=60) + self.analysis_scrollbar = ttk.Scrollbar(self, command=self.analysis_text.yview) + self.analysis_text.config(yscrollcommand=self.analysis_scrollbar.set) + self.analysis_text.pack(pady=5, padx=10, fill=tk.BOTH, expand=True) + self.analysis_scrollbar.pack(side=tk.RIGHT, fill=tk.Y) + self.analysis_text.config(state=tk.DISABLED) + + self.progress_bar_analysis = ttk.Progressbar(self, mode='determinate', maximum=100) + self.progress_label = tk.Label(self, text="Прогресс анализа: 0%") + self.time_label = tk.Label(self, text="Примерное время до конца: -") + + def run_system_profiler(self): + if platform.system() == "Darwin": + now = datetime.now() + date_str = now.strftime("%d-%m-%y") + time_str = now.strftime("%H-%M-%S") + filename = f"system_profiler_file[{date_str}][{time_str}].txt" + filepath = os.path.join(self.save_dir, filename) + command = f"system_profiler > \"{filepath}\"" + + try: + subprocess.run(command, shell=True, check=True) + messagebox.showinfo("Успех", f"Сведения о системе сохранены в '{filepath}'") + print(f"Сведения о системе сохранены в '{filepath}'") + self.update_file_list() + except subprocess.CalledProcessError as e: + messagebox.showerror("Ошибка", f"Ошибка выполнения команды: {e}") + print(f"Ошибка выполнения команды: {e}") + except FileNotFoundError: + messagebox.showerror("Ошибка", "Команда 'system_profiler' не найдена.") + print("Ошибка: Команда 'system_profiler' не найдена.") + except Exception as e: + messagebox.showerror("Ошибка", f"Непредвиденная ошибка: {e}") + print(f"Непредвиденная ошибка: {e}") + else: + messagebox.showinfo("Информация", "Диагностика системы доступна только на macOS.") + + def update_file_list(self): + if self.file_list: + self.file_list.delete(0, tk.END) + self.created_files = [] + for filename in os.listdir(self.save_dir): + if filename.startswith("system_profiler_file") and filename.endswith(".txt"): + self.file_list.insert(tk.END, filename) + self.created_files.append(os.path.join(self.save_dir, filename)) + + def open_selected_file(self, event): + if self.file_list: + selected_index = self.file_list.curselection() + if selected_index: + filepath = self.created_files[selected_index[0]] + try: + if platform.system() == "Darwin": + subprocess.run(["open", filepath], check=True) + elif platform.system() == "Windows": + os.startfile(filepath) + elif platform.system() == "Linux": + subprocess.run(["xdg-open", filepath], check=True) + print(f"Открыт файл: {filepath}") + except FileNotFoundError: + messagebox.showerror("Ошибка", f"Файл не найден: {filepath}") + except Exception as e: + messagebox.showerror("Ошибка", f"Не удалось открыть файл: {e}") + + def start_analysis(self): + if self.file_list: + selected_index = self.file_list.curselection() + if selected_index: + filepath = self.created_files[selected_index[0]] + with open(filepath, 'r', encoding='utf-8') as f: + report_content = f.read() + self.analyze_button.config(state=tk.DISABLED, text="Анализ...") + self.progress_bar_analysis.pack(pady=5, fill=tk.X, padx=10) + self.progress_label.pack() + self.time_label.pack() + self.analysis_text.config(state=tk.DISABLED) + threading.Thread(target=self._perform_analysis, args=(report_content, self.current_num_parts,)).start() + else: + messagebox.showinfo("Внимание", "Выберите файл отчета для анализа.") + + def _perform_analysis(self, report_content, num_parts): + analysis_result = self.system_analyzer.analyze_system(report_content, num_parts, self._update_progress) + self.after(0, self._display_analysis, analysis_result) + + def _update_progress(self, progress, remaining_time): + self.progress_bar_analysis['value'] = progress + self.progress_label.config(text=f"Прогресс анализа: {progress}%") + minutes = int(remaining_time // 60) + seconds = int(remaining_time % 60) + self.time_label.config(text=f"Примерное время до конца: {minutes:02d}:{seconds:02d}") + + def _display_analysis(self, analysis): + self.progress_bar_analysis.pack_forget() + self.progress_label.pack_forget() + self.time_label.pack_forget() + self.analyze_button.config(state=tk.NORMAL, text="Анализировать отчет") + self.analysis_text.config(state=tk.NORMAL) + self.analysis_text.delete("1.0", tk.END) + if analysis: + self.analysis_text.insert(tk.END, "Результаты анализа:\n") + for item in analysis: + code = item.get('code', 'N/A') + message = item.get('message', 'Нет сообщения') + self.analysis_text.insert(tk.END, f"Код: {code}, Сообщение: {message}\n") + else: + self.analysis_text.insert(tk.END, "Анализ не выявил ошибок или произошла ошибка при анализе.\n") + self.analysis_text.config(state=tk.DISABLED) + self.create_copy_button() + + def create_copy_button(self): + if self.copy_button is None: + self.copy_button = tk.Button(self, text="Копировать анализ", command=self.copy_analysis_to_clipboard) + self.copy_button.pack(pady=5) + else: + self.copy_button.pack(pady=5) + + def copy_analysis_to_clipboard(self): + self.analysis_text.config(state=tk.NORMAL) + analysis_content = self.analysis_text.get("1.0", tk.END) + self.clipboard_clear() + self.clipboard_append(analysis_content) + self.update() + self.analysis_text.config(state=tk.DISABLED) + messagebox.showinfo("Успех", "Результаты анализа скопированы в буфер обмена.") + + def open_ollama_chat(self): + chat_window = tk.Toplevel(self) + chat_window.title("Чат с Ollama") + chat_window.geometry("500x600") + + chat_history_frame = tk.Frame(chat_window) + chat_history_frame.pack(pady=10, padx=10, fill=tk.BOTH, expand=True) + + chat_history_text = tk.Text(chat_history_frame, wrap=tk.WORD, state=tk.DISABLED, height=20) + chat_history_scrollbar = ttk.Scrollbar(chat_history_frame, command=chat_history_text.yview) + chat_history_text.config(yscrollcommand=chat_history_scrollbar.set) + chat_history_text.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) + chat_history_scrollbar.pack(side=tk.RIGHT, fill=tk.Y) + + input_frame = tk.Frame(chat_window) + input_frame.pack(pady=10, padx=10, fill=tk.X) + + user_input_entry = tk.Entry(input_frame, width=50) + user_input_entry.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=(0, 5)) + user_input_entry.bind("", lambda event: send_message()) + + send_button = tk.Button(input_frame, text="Отправить") + send_button.pack(side=tk.RIGHT) + + messages = [] + + def display_message(sender, message): + chat_history_text.config(state=tk.NORMAL) + if sender == "user": + chat_history_text.insert(tk.END, f"Вы: {message}\n", "user_tag") + else: + chat_history_text.insert(tk.END, f"Ollama: {message}\n", "ollama_tag") + chat_history_text.config(state=tk.DISABLED) + chat_history_text.see(tk.END) + + chat_history_text.tag_config("user_tag", foreground="blue") + chat_history_text.tag_config("ollama_tag", foreground="green") + + def send_message(): + user_message = user_input_entry.get() + if user_message.strip(): + display_message("user", user_message) + messages.append({'role': 'user', 'content': user_message}) + user_input_entry.delete(0, tk.END) + send_button.config(state=tk.DISABLED) + user_input_entry.config(state=tk.DISABLED) + threading.Thread(target=get_ollama_response, args=(user_message,)).start() + + def get_ollama_response(user_message): + try: + response: ChatResponse = chat(model=self.ollama_model, messages=messages) + ollama_response = response.get('message', {}).get('content', "Не удалось получить ответ от Ollama.") + messages.append({'role': 'assistant', 'content': ollama_response}) + self.after(0, lambda: display_message("ollama", ollama_response)) + except Exception as e: + self.after(0, lambda: display_message("ollama", f"Ошибка: {e}")) + finally: + self.after(0, lambda: send_button.config(state=tk.NORMAL)) + self.after(0, lambda: user_input_entry.config(state=tk.NORMAL)) + + send_button.config(command=send_message) + + def on_close(self): + self.destroy() + +if __name__ == "__main__": + ollama_model_name = "llama3.2" + app = AppManager(ollama_model_name) + app.mainloop() \ No newline at end of file diff --git a/system_info/system_profiler_file[09-05-25][22-25-30].txt b/system_info/system_profiler_file[09-05-25][22-25-30].txt new file mode 100644 index 0000000..f4db977 --- /dev/null +++ b/system_info/system_profiler_file[09-05-25][22-25-30].txt @@ -0,0 +1,110170 @@ +Accessibility: + + Accessibility Information: + + Cursor Magnification: Off + Display: Black on White + Flash Screen: Off + Mouse Keys: Off + Slow Keys: Off + Sticky Keys: Off + VoiceOver: Off + Zoom Mode: Full Screen + Contrast: 0 + Keyboard Zoom: Off + Scroll Zoom: Off + +Apple Pay: + + Apple Pay Information: + Platform ID: N5E0000001100000 + SEID: 04501DF33E2490024346099397328803030F1A4C55FB17FD + System OS SEID: 04501DF33E2490024346099397328803FF0F1A4C55FB17FD + Device: 0x37 + Production Signed: Да + Restricted Mode: Нет + Hardware: 0x00000018 + Firmware: 0x82350500 + JCOP OS: 20.05 + + Controller Information: + Hardware: 60.1 () + Firmware: 1.2b rev 156564 + Middleware: 5.1.3.32 + +Applications: + + App Store: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/App Store.app + + Automator: + + Version: 2.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Automator.app + + Книги: + + Version: 7.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Books.app + + Калькулятор: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Calculator.app + + Календарь: + + Version: 15.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Calendar.app + + Шахматы: + + Version: 3.18 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Chess.app + Get Info String: 3.18, Copyright 2003–2024 Apple Inc. + + Часы: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Clock.app + + Контакты: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Contacts.app + + Словарь: + + Version: 2.3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Dictionary.app + + FaceTime: + + Version: 36 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/FaceTime.app + + Локатор: + + Version: 4.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/FindMy.app + + Шрифты: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Font Book.app + + Freeform: + + Version: 3.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Freeform.app + + Дом: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Home.app + + Захват изображений: + + Version: 8.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Image Capture.app + + Image Playground: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Image Playground.app + + Launchpad: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Launchpad.app + + Почта: + + Version: 16.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Mail.app + + Карты: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Maps.app + + Сообщения: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Messages.app + + Mission Control: + + Version: 1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Mission Control.app + + Музыка: + + Version: 1.5.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Music.app + Get Info String: Music 1.5.4.70, © 2019–2025 Apple Inc. All rights reserved. + + Заметки: + + Version: 4.12.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Notes.app + + Пароли: + + Version: 1.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Passwords.app + + Photo Booth: + + Version: 13.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Photo Booth.app + + Фото: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Photos.app + + Подкасты: + + Version: 1.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Podcasts.app + + Просмотр: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Preview.app + + QuickTime Player: + + Version: 10.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/QuickTime Player.app + Get Info String: 10.5, Copyright © 2009-2024 Apple Inc. All Rights Reserved. + + Напоминания: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Reminders.app + + Команды: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Shortcuts.app + + Siri: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Siri.app + + Записки: + + Version: 10.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Stickies.app + + Акции: + + Version: 7.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Stocks.app + + Системные настройки: + + Version: 15.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/System Settings.app + + TV: + + Version: 1.5.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/TV.app + Get Info String: TV 1.5.4.70, © 2019–2025 Apple Inc. All rights reserved. + + TextEdit: + + Version: 1.20 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/TextEdit.app + + Time Machine: + + Version: 1.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Time Machine.app + + Советы: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Tips.app + + Мониторинг системы: + + Version: 10.14 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Activity Monitor.app + + Утилита AirPort: + + Version: 6.3.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/AirPort Utility.app + Get Info String: 6.3.9, Copyright 2001 -2024 Apple Inc. + + Программа для обновления Rosetta 2: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Rosetta 2 Updater.app + + Экранное время: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Screen Time.app + + ScreenSaverEngine: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ScreenSaverEngine.app + + Меню скриптов: + + Version: 1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Script Menu.app + + ScriptMonitor: + + Version: 1.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ScriptMonitor.app + + Ассистент настройки системы: + + Version: 10.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Setup Assistant.app + + TMHelperAgent: + + Version: 13 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TimeMachine/TMHelperAgent.app + + Советы: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TipsSpotlightHandler.app + + UIKitSystem: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UIKitSystem.app + + UniversalAccessControl: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UniversalAccessControl.app + + Универсальное управление: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UniversalControl.app + + UnmountAssistantAgent: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UnmountAssistantAgent.app + + UserNotificationCenter: + + Version: 82 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UserNotificationCenter.app + + VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/VoiceOver.app + + Обои: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WallpaperAgent.app + + Справка циферблатов: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WatchFaceAlert.app + + WiFiAgent: + + Version: 17.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WiFiAgent.app + Get Info String: 17.0, Copyright © 2012-2019 Apple Inc. All rights reserved. + + WidgetKit Simulator: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WidgetKit Simulator.app + + WindowManager: + + Version: 278.4.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WindowManager.app + Get Info String: WindowManager + + WindowManagerShowDesktopEducation: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WindowManagerShowDesktopEducation.app + Get Info String: WindowManagerShowDesktopEducation + + WorkoutAlert-Mac: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WorkoutAlert-Mac.app + + iCloud+: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/iCloud+.app + + iCloud: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/iCloud.app + + liquiddetectiond: + + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/liquiddetectiond.app + + loginwindow: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/loginwindow.app + + rcd: + + Version: 362 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/rcd.app + Get Info String: 362 + + screencaptureui: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/screencaptureui.app + + Настройка Audio‑MIDI: + + Version: 3.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Audio MIDI Setup.app + Get Info String: 3.6, Copyright 2002–2024 Apple Inc. + + Обмен файлами по Bluetooth: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Bluetooth File Exchange.app + Get Info String: 7.0.0, Copyright © 2002-2018 Apple Inc. All rights reserved. + + Ассистент Boot Camp: + + Version: 6.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Boot Camp Assistant.app + + Утилита ColorSync: + + Version: 12.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/ColorSync Utility.app + + Консоль: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Console.app + + Цифровой колориметр: + + Version: 5.26 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Digital Color Meter.app + + Дисковая утилита: + + Version: 22.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Disk Utility.app + + Графический калькулятор: + + Version: 2.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Grapher.app + + Ассистент миграции: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Migration Assistant.app + + Центр печати: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Print Center.app + + Общий экран: + + Version: 5.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Screen Sharing.app + + Снимок экрана: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Screenshot.app + + Редактор скриптов: + + Version: 2.11 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Script Editor.app + + Информация о системе: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/System Information.app + + Терминал: + + Version: 2.14 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Terminal.app + + Утилита VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/VoiceOver Utility.app + + Диктофон: + + Version: 3.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/VoiceMemos.app + + Погода: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Weather.app + + Видеоповтор iPhone: + + Version: 1.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/iPhone Mirroring.app + + Об этом Mac: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/About This Mac.app + + Утилита архивирования: + + Version: 10.15 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Archive Utility.app + + DVD-плеер: + + Version: 6.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/DVD Player.app + + Обзор стола: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Desk View.app + + Служба каталогов: + + Version: 6.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Directory Utility.app + + Утилита слотов расширения: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Expansion Slot Utility.app + + Ассистент обратной связи: + + Version: 5.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Feedback Assistant.app + + Настройка действий папки: + + Version: 1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Folder Actions Setup.app + + Связка ключей: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Keychain Access.app + + Просмотр билетов: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Ticket Viewer.app + + Беспроводная диагностика: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Wireless Diagnostics.app + + Установщик iOS-приложений: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/iOS App Installer.app + + Finder: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app + + AirDrop: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/AirDrop.app + + Компьютер: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Computer.app + + Сеть: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Network.app + + Недавние: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Recents.app + + iCloud Drive: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/iCloud Drive.app + + OpenSpell: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/OpenSpell.service + + SpeechService: + + Version: 9.2.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/SpeechService.service + Get Info String: 9.2.22 + + Spotlight: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/Spotlight.service + + Сводка: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/Summary Service.app + + BluetoothUIServer: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothUIServer.app + Get Info String: kBluetoothCFBundleGetInfoString + + BluetoothUIService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothUIService.app + + CalendarFileHandler: + + Version: 8.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CalendarFileHandler.app + + Captive Network Assistant: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Captive Network Assistant.app + + Ассистент сертификации: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Certificate Assistant.app + + Пункт управления: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ControlCenter.app + + ControlStrip: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ControlStrip.app + + CoreLocationAgent: + + Version: 2960.0.57 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CoreLocationAgent.app + Get Info String: Copyright © 2013 Apple Inc. + + CoreServicesUIAgent: + + Version: 369 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CoreServicesUIAgent.app + Get Info String: Copyright © 2009 Apple Inc. + + Сведения о действии гарантии: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Coverage Details.app + + Database Events: + + Version: 1.0.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Database Events.app + + Diagnostics Reporter: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Diagnostics Reporter.app + + DiscHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/DiscHelper.app + + DiskImageMounter: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/DiskImageMounter.app + + Dock: + + Version: 1.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Dock.app + Get Info String: Dock 1.8 + + Dwell Control: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Dwell Control.app + + Расширенное журналирование: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Enhanced Logging.app + + Ассистент стирания: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Erase Assistant.app + + EscrowSecurityAlert: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/EscrowSecurityAlert.app + + Family: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Family.app + + FileProvider-Feedback: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/FileProvider-Feedback.app + + FolderActionsDispatcher: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/FolderActionsDispatcher.app + + Game Center: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Game Center.app + + IOUIAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/IOUIAgent.app + + Image Events: + + Version: 1.1.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Image Events.app + + Install Command Line Developer Tools: + + Version: 2409 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Install Command Line Developer Tools.app + + Идет установка: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Install in Progress.app + + Installer Progress: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Installer Progress.app + + Установщик: + + Version: 6.2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Installer.app + + JavaLauncher: + + Version: 325 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/JavaLauncher.app + + KeyboardAccessAgent: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/KeyboardAccessAgent.app + + KeyboardSetupAssistant: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/KeyboardSetupAssistant.app + + Keychain Circle Notification: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Keychain Circle Notification.app + + Выбор языка: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Language Chooser.app + + MTLReplayer: + + Version: 304.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MTLReplayer.app + + ManagedClient: + + Version: 17.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ManagedClient.app + + MediaMLPluginApp: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MediaMLPluginApp.app + + Утилита слотов памяти: + + Version: 1.5.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Memory Slot Utility.app + + Распознавание музыки: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MusicRecognitionMac.app + + NetAuthAgent: + + Version: 6.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NetAuthAgent.app + + Центр уведомлений: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NotificationCenter.app + + NowPlayingTouchUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NowPlayingTouchUI.app + + OBEXAgent: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/OBEXAgent.app + Get Info String: 7.0.0, Copyright © 2002-2018 Apple Inc. All rights reserved. + + ODSAgent: + + Version: 1.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ODSAgent.app + Get Info String: 1.9 (190.2), Copyright © 2007-2009 Apple Inc. All Rights Reserved. + + OSDUIHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/OSDUIHelper.app + + PIPAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PIPAgent.app + + Связывание устройств: + + Version: 6.5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Paired Devices.app + + Pass Viewer: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Pass Viewer.app + + PeopleMessageService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PeopleMessageService.app + + Контакты: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PeopleViewService.app + + PowerChime: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PowerChime.app + + PreviewShell: + + Version: 16.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PreviewShell.app + + Калибратор Pro Display: + + Version: 211.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Pro Display Calibrator.app + + Problem Reporter: + + Version: 10.13 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Problem Reporter.app + + Установщик профиля: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ProfileHelper.app + + RapportUIAgent: + + Version: 6.5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RapportUIAgent.app + + RegisterPluginIMApp: + + Version: 26.200 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RegisterPluginIMApp.app + + ARDAgent: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/ARDAgent.app + + Сообщение Remote Desktop: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/Remote Desktop Message.app + + SSMenuAgent: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/SSMenuAgent.app + + ShortcutDroplet: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ShortcutDroplet.app + + Shortcuts Events: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Shortcuts Events.app + + ShortcutsActions: + + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ShortcutsActions.app + + Siri: + + Version: 3404.72.1.14.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Siri.app + + Обновление ПО: + + Version: 6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Software Update.app + Get Info String: Software Update version 4.0, Copyright © 2000-2009, Apple Inc. All rights reserved. + + SpacesTouchBarAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/SpacesTouchBarAgent.app + + Spotlight: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Spotlight.app + + StageManagerOnboarding: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/StageManagerOnboarding.app + Get Info String: StageManagerOnboarding + + System Events: + + Version: 1.3.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/System Events.app + + SystemUIServer: + + Version: 1.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/SystemUIServer.app + + TextInputMenuAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TextInputMenuAgent.app + + TextInputSwitcher: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TextInputSwitcher.app + + ThermalTrap: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ThermalTrap.app + + ClassroomStudentMenuExtra: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Classroom/ClassroomStudentMenuExtra.app + + Калибратор дисплея: + + Version: 4.19 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/ColorSync/Calibrators/Display Calibrator.app + Get Info String: 4.19, Copyright 2014-2024 Apple Computer, Inc. + + STMUIHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/StorageManagement.framework/Versions/A/Resources/STMUIHelper.app + + AMSEngagementViewService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework/Versions/A/Resources/AMSEngagementViewService.app + + ParentalControls: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources/ParentalControls.app + Get Info String: 2.0, Copyright Apple Inc. 2007-2019 + + Calibration Assistant: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/Resources/Calibration Assistant.app + + AppSSOAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppSSO.framework/Support/AppSSOAgent.app + + KerberosMenuExtra: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppSSOKerberos.framework/Support/KerberosMenuExtra.app + + DFRHUD: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/DFRHUD.app + + universalAccessAuthWarn: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app + + UASharedPasteboardProgressUI: + + Version: 54.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UserActivity.framework/Agents/UASharedPasteboardProgressUI.app + + AutoFillPanelService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AutoFillUI.framework/Contents/AutoFillPanelService.app + + AutomationModeUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AutomationMode.framework/AutomationModeUI.app + + BackgroundTaskManagementAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Support/BackgroundTaskManagementAgent.app + + Сверка данных: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/Conflict Resolver.app + Get Info String: 1.0, Copyright Apple Computer Inc. 2004 + + CIMFindInputCodeTool: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreChineseEngine.framework/Versions/A/SharedSupport/CIMFindInputCodeTool.app + + nbagent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app + + iCloudUserNotificationsd: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/Resources/iCloudUserNotificationsd.app + + AOSAlertManager: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSAlertManager.app + + AOSHeartbeat: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSHeartbeat.app + + AOSPushRelay: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSPushRelay.app + + IMAutomaticHistoryDeletionAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMDPersistence.framework/IMAutomaticHistoryDeletionAgent.app + + iCloud Drive: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/iCloudDriveCore.framework/Versions/A/Resources/iCloud Drive.app + + FindMyMacMessenger: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/Resources/FindMyMacMessenger.app + + eaptlstrust: + + Version: 13.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/EAP8021X.framework/Support/eaptlstrust.app + + identityservicesd: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app + + IDSRemoteURLConnectionAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSRemoteURLConnectionAgent.app + + imagent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMCore.framework/imagent.app + + SoftwareUpdateNotificationManager: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app + + ScreenReaderUIServer: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/ScreenReaderUIServer.app + + Краткое руководство по VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/VoiceOver Quickstart.app + + Загрузчик речи: + + Version: 9.0.72 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/SpeechDataInstallerd.app + + SpeechRecognitionServer: + + Version: 9.0.72 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/SpeechRecognitionServer.app + + DiskImages UI Agent: + + Version: 671.100.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/Resources/DiskImages UI Agent.app + + AXVisualSupportAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/AXVisualSupportAgent.app + + Руководство по Универсальному доступу: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/Accessibility Tutorial.app + + FeedbackRemoteView: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FeedbackService.framework/Versions/A/Support/FeedbackRemoteView.app + + privatecloudcomputed: + + Version: 2250.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/PrivateCloudCompute.framework/privatecloudcomputed.app + + FollowUpUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Resources/FollowUpUI.app + + Создание веб-страницы: + + Version: 10.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Automatic Tasks/Build Web Page.app + Get Info String: 10.1, © Copyright 2003-2014 Apple Inc. All rights reserved. + + Создание PDF: + + Version: 10.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Automatic Tasks/MakePDF.app + Get Info String: 10.1, © Copyright 2003-2015 Apple Inc. All rights reserved. + + AirScanScanner: + + Version: 18 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Devices/AirScanScanner.app + + 50onPaletteServer: + + Version: 1.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/50onPaletteServer.app + + AinuIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/AinuIM.app + + Assistive Control: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/Assistive Control.app + + CharacterPalette: + + Version: 2.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/CharacterPalette.app + + Диктовка: + + Version: 6.2.9.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/DictationIM.app + + EmojiFunctionRowIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/EmojiFunctionRowIM.app + + JapaneseIM-KanaTyping: + + Version: 6.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/JapaneseIM-KanaTyping.app + + JapaneseIM-RomajiTyping: + + Version: 6.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/JapaneseIM-RomajiTyping.app + + KoreanIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/KoreanIM.app + + PluginIM: + + Version: 26.200 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/PluginIM.app + + PressAndHold: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/PressAndHold.app + + SCIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/SCIM.app + + TCIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TCIM.app + + TYIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TYIM.app + + TamilIM: + + Version: 1.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TamilIM.app + Get Info String: Tamil Input Method 1.5 + + TrackpadIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TrackpadIM.app + + TransliterationIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TransliterationIM.app + + VietnameseIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/VietnameseIM.app + + AskPermissionUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/AskPermissionUI.app + + storeuid: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app + + IMTransferAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferAgent.app + + syncuid: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/syncuid.app + Get Info String: 4.0, Copyright Apple Computer Inc. 2004 + + LinkedNotesUIService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/PaperKit.framework/Contents/LinkedNotesUIService.app + + AquaAppearanceHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/AquaAppearanceHelper.app + + sociallayerd: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SocialLayer.framework/sociallayerd.app + + Субтитры: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/Resources/Live Captions.app + + LiveSpeech: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/Resources/LiveSpeech.app + + AccessibilityVisualsAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Versions/A/Resources/AccessibilityVisualsAgent.app + + AddressBookSync: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Helpers/AddressBookSync.app + + Пара со смарт‑картой: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CryptoTokenKit.framework/ctkbind.app + + qlmanage: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/qlmanage.app + + quicklookd: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd.app + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + + FontRegistryUIAgent: + + Version: 81.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/FontRegistryUIAgent.app + Get Info String: Copyright © 2008-2013 Apple Inc. + + Озвучивание системы: + + Version: 9.2.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/System Speech.app + Get Info String: 9.2.22 + + Quick Look Simulator: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLookUI.framework/Versions/A/Resources/Quick Look Simulator.app + + QuickLookUIHelper: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLookUI.framework/Versions/A/Resources/QuickLookUIHelper.app + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + + Wish: + + Version: 8.5.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/Tk.framework/Versions/8.5/Resources/Wish.app + Get Info String: Wish Shell 8.5.9, +Copyright © 1989-2025 Tcl Core Team, +Copyright © 2002-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + + SyncServer: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/SyncServices.framework/Versions/A/Resources/SyncServer.app + Get Info String: © 2002-2003 Apple + + ABAssistantService: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/ABAssistantService.app + + AddressBookManager: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/AddressBookManager.app + + AddressBookSourceSync: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/AddressBookSourceSync.app + + CinematicFramingOnboardingUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/CinematicFramingOnboardingUI.app + + ContinuityCaptureOnboardingUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/ContinuityCaptureOnboardingUI.app + + AppleSpell: + + Version: 2.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/AppleSpell.service + + ChineseTextConverterService: + + Version: 2.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/ChineseTextConverterService.app + Get Info String: Chinese Text Converter 1.1 + + AOSUIPrefPaneLauncher: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AOSUIPrefPaneLauncher.app + + Конфигурирование AVB: + + Version: 1320.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AVB Configuration.app + + AddPrinter: + + Version: 607 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AddPrinter.app + + AddressBookUrlForwarder: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AddressBookUrlForwarder.app + + AirPlayUIAgent: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AirPlayUIAgent.app + + Агент базовой станции AirPort: + + Version: 2.2.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AirPort Base Station Agent.app + Get Info String: 2.2.1 (221.12), Copyright © 2006 -2024 Apple Inc. All Rights Reserved. + + Утилита AppleScript: + + Version: 1.1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AppleScript Utility.app + + AskToMessagesHost: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AskToMessagesHost.app + + Automator Application Stub: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Location: /System/Library/CoreServices/Automator Application Stub.app + + Установщик Automator: + + Version: 2.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Automator Installer.app + + Аккумуляторы: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Batteries.app + + Ассистент настройки Bluetooth: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothSetupAssistant.app + Get Info String: 9.0 (1) + + WhatsApp: + + Version: 25.10.72 + Obtained from: App Store + Last Modified: 09.04.2025, 00:45 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/WhatsApp.app + + V2BOX: + + Version: 9.5.1 + Obtained from: App Store + Last Modified: 09.04.2025, 00:45 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/V2Box.app + + Xcode: + + Version: 16.3 + Obtained from: App Store + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Xcode.app + + Simulator: + + Version: 16.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app + + Create ML: + + Version: 6.2 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Create ML.app + + Instruments: + + Version: 16.3 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Instruments.app + + FileMerge: + + Version: 2.11 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/FileMerge.app + + Reality Composer Pro: + + Version: 2.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Reality Composer Pro.app + + Accessibility Inspector: + + Version: 5.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Accessibility Inspector.app + + dz_07: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 17:26 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/dz_07-ghfxceciofsxfrazzktwmoqvkqgp/Build/Products/Debug-iphonesimulator/dz_07.app + + Yandex: + + Version: 25.4.0.2011 + Obtained from: Identified Developer + Last Modified: 09.05.2025, 18:30 + Kind: iOS + Signed by: Developer ID Application: Yandex, LLC (477EAT77S3), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Yandex.app + Get Info String: Yandex ../../chrome/YANDEX_VERSION, Copyright 2025 Yandex. All rights reserved. + + Project1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 15.04.2025, 22:49 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project1-bmffaqvdxnjcpxanhxaydnkstmbi/Build/Products/Debug-iphonesimulator/Project1.app + + Visual Studio Code: + + Version: 1.100.0 + Obtained from: Identified Developer + Last Modified: 07.05.2025, 16:08 + Kind: Universal + Signed by: Developer ID Application: Microsoft Corporation (UBF8T346G9), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Visual Studio Code.app + + AppleMobileSync: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileSync.app + + AppleMobileDeviceHelper: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileDeviceHelper.app + + MobileDeviceUpdater: + + Version: 1.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/MobileDeviceUpdater.app + + Endoparasitic2: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 04.10.2024, 16:40 + Kind: Universal + Location: /Applications/Endoparasitic2.app + + Keynote: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Keynote.app + + Pages: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Pages.app + + Numbers: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Numbers.app + + group.is.workflow: + + Obtained from: Unknown + Last Modified: 09.04.2025, 01:03 + Kind: Other + Location: /Users/main/Library/Application Scripts/group.is.workflow.my.app + + MRT: + + Version: 1.93 + Obtained from: Apple + Last Modified: 09.04.2025, 00:34 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/CoreServices/MRT.app + + XProtect: + + Version: 151 + Obtained from: Apple + Last Modified: 09.04.2025, 00:34 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/CoreServices/XProtect.app + + Telegram: + + Version: 11.8 + Obtained from: App Store + Last Modified: 09.04.2025, 00:56 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Telegram.app + + Fork: + + Version: 2.51 + Obtained from: Unknown + Last Modified: 07.03.2025, 19:46 + Kind: Universal + Signed by: TNT + Location: /Applications/Fork.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 12:02 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-flvlphivubqrhigbwzfqdjkiaifx/Build/Products/Debug-iphonesimulator/MyProject.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 15:46 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-daphqrjozafovkesyqjzyimjzoij/Build/Products/Debug-iphonesimulator/MyProject.app + + Символы SF: + + Version: 6.0 + Obtained from: Apple + Last Modified: 09.04.2025, 12:09 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Users/main/Applications/SF Symbols.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 16:12 + Kind: Apple Silicon + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-djifbirmwmzzzygwpxjfzanyifsv/Build/Products/Debug/MyProject.app + + com.apple.ctcategories: + + Obtained from: Unknown + Last Modified: 09.04.2025, 19:07 + Kind: Other + Location: /Users/main/Library/HTTPStorages/com.apple.ctcategories.service + + Macs Fan Control: + + Version: 1.5.17 + Obtained from: Identified Developer + Last Modified: 17.12.2024, 16:54 + Kind: Universal + Signed by: Developer ID Application: Ilya Parniuk (ACC5R6RH47), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/Applications/Macs Fan Control.app + + Hacking with iOS – learn to code iPhone and iPad apps with free Swift tutorials: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:00 + Kind: Web + Location: /Users/main/Applications/Hacking with iOS – learn to code iPhone and iPad apps with free Swift tutorials.app + + ЛКС МГТУ: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:01 + Kind: Web + Location: /Users/main/Applications/ЛКС МГТУ.app + + translator: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:11 + Kind: Web + Location: /Users/main/Applications/translator.app + + MyTestProgramm: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 22:12 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyTestProgramm-bfrrqemgoypcprfazhfjfxlaesij/Build/Products/Debug-iphonesimulator/MyTestProgramm.app + + YouTube: + + Version: 1.0 + Obtained from: Safari + Last Modified: 10.04.2025, 00:10 + Kind: Web + Location: /Users/main/Applications/YouTube.app + + myHomeWork7: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 17:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/myHomeWork7-dnhqbpswridfladazsxqoytkpmvg/Build/Products/Debug-iphonesimulator/myHomeWork7.app + + Landmarks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 10.04.2025, 15:05 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Landmarks-avsvqmyyntvugthfslsuexcsyrmh/Build/Products/Debug-iphonesimulator/Landmarks.app + + IDLE: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Other + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Python 3.13/IDLE.app + Get Info String: 3.13.3, © 2001-2024 Python Software Foundation + + Python Launcher: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Python 3.13/Python Launcher.app + Get Info String: 3.13.3, © 2001-2024 Python Software Foundation + + Python: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Library/Frameworks/Python.framework/Versions/3.13/Resources/Python.app + Get Info String: 3.13.3, (c) 2001-2024 Python Software Foundation. + + Python: + + Version: 3.9.6 + Obtained from: Apple + Last Modified: 12.04.2025, 13:56 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/Resources/Python.app + Get Info String: 3.9.6, (c) 2001-2020 Python Software Foundation. + + ImageLoaderApp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 14.04.2025, 10:40 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/ImageLoaderApp-dnutiqbxsmslysdtgcftfbvbxpya/Build/Products/Debug-iphonesimulator/ImageLoaderApp.app + + MyStudyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 14.04.2025, 11:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyStudyProject-hgvmuguuiesdpcecrlmxsogwdbcc/Build/Products/Debug-iphonesimulator/MyStudyProject.app + + MyTestProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 15.04.2025, 22:47 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyTestProject-bgarzauysixeencvilwmwxwdptdd/Build/Products/Debug-iphonesimulator/MyTestProject.app + + MyProject2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 16.04.2025, 11:33 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject2-dfpvuvpfmmrdwufjzggxamwjnuow/Build/Products/Debug-iphonesimulator/MyProject2.app + + Project1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 16.04.2025, 13:23 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project1-aozyzfjwnxjxxwdxfywnjekixsok/Build/Products/Debug-iphonesimulator/Project1.app + + MyHomework8: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 17.04.2025, 12:10 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyHomework8-gwnbwijvmeqqzohewoihqsvaoozx/Build/Products/Debug-iphonesimulator/MyHomework8.app + + test1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 21.04.2025, 23:41 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/test1-fcftgvpgklpeupcymvtvuafspxyd/Build/Products/Debug-iphonesimulator/test1.app + + Project2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 17.04.2025, 12:08 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project2-bloouirgqevowpdjhdvzbkyisabq/Build/Products/Debug-iphonesimulator/Project2.app + + Project39: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 19.04.2025, 17:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project39-awtngumvjbjheedldbryjiqmnqxy/Build/Products/Debug-iphonesimulator/Project39.app + + Project33: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 23.04.2025, 13:11 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project33-fyqfbgadjcnajmbwichqoyvkldyk/Build/Products/Debug-iphonesimulator/Project33.app + + Project28: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 19.04.2025, 17:34 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project28-fxbhwfqlctdktbfcufrcuizhfmqc/Build/Products/Debug-iphonesimulator/Project28.app + + hw7 2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 22.04.2025, 19:57 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/hw7_2.0-gjznnvhlnnyofgdhrxdhzietmiik/Build/Products/Debug-iphonesimulator/hw7 2.0.app + + test2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 22.04.2025, 22:46 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/test2-drncxmicyqadlxelznsritlvzzpd/Build/Products/Debug-iphonesimulator/test2.app + + AirScanLegacyDiscovery: + + Version: 607 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/AirScanLegacyDiscovery.app + + Recursive File Processing Droplet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app + + Droplet with Settable Properties: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app + + Recursive Image File Processing Droplet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app + + Cocoa-AppleScript Applet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Location: /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app + + mathQuest: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 27.04.2025, 21:51 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/mathQuest-etrcnxxmyztygkcshabaxtghjyfj/Build/Products/Debug-iphonesimulator/mathQuest.app + + mathGame: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 30.04.2025, 12:59 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/mathGame-bhsjosfvdrfcqveltfmfwnwpxzsw/Build/Products/Debug-iphonesimulator/mathGame.app + + Ollama: + + Version: 0.6.8 + Obtained from: Identified Developer + Last Modified: 04.05.2025, 22:08 + Kind: Universal + Signed by: Developer ID Application: Infra Technologies, Inc (3MU9H2V9Y9), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Ollama.app + +Audio: + + Devices: + + Микрофон (iPhone): + + Input Channels: 1 + Manufacturer: Apple Inc. + Current SampleRate: 48000 + Transport: Unknown + Input Source: Default + + Внешние наушники: + + Default Output Device: Yes + Default System Output Device: Yes + Manufacturer: Apple Inc. + Output Channels: 2 + Current SampleRate: 48000 + Transport: Built-in + Output Source: Внешние наушники + + Микрофон MacBook Air: + + Default Input Device: Yes + Input Channels: 3 + Manufacturer: Apple Inc. + Current SampleRate: 48000 + Transport: Built-in + Input Source: Микрофон MacBook Air + + Динамики MacBook Air: + + Manufacturer: Apple Inc. + Output Channels: 2 + Current SampleRate: 48000 + Transport: Built-in + Output Source: Динамики MacBook Air + +Bluetooth: + + Bluetooth Controller: + Address: C4:84:FC:0B:3C:A9 + State: On + Chipset: BCM_4388 + Discoverable: Off + Firmware Version: 22.5.542.2791 + Product ID: 0x4A33 + Supported services: 0x392039 < HFP AVRCP A2DP HID Braille LEA AACP GATT SerialPort > + Transport: PCIe + Vendor ID: 0x004C (Apple) + Not Connected: + iPhone: + Address: 24:B3:39:D1:F8:FC + RSSI: -37 + WH-CH720N: + Address: 40:72:18:99:15:54 + Vendor ID: 0x054C + Product ID: 0x0EAF + Firmware Version: 1.0.9 + Minor Type: Headset + +Camera: + + HD-камера FaceTime: + + Model ID: HD-камера FaceTime + Unique ID: 3642F2CD-E322-42E7-9360-19815B003AA6 + + Камера (iPhone): + + Model ID: iPhone14,5 + Unique ID: BBD09DD4-6FDC-4241-95C3-A65D00000001 + +Controller: + + Model Identifier: Mac15,12 + Firmware Version: iBoot-11881.101.1 + Boot UUID: 83423475-C544-4275-84DD-36AC84134231 + Boot Policy: + Secure Boot: Высший уровень безопасности + System Integrity Protection: Включено + Signed System Volume: Включено + Kernel CTRR: Включено + Boot Arguments Filtering: Включено + Allow All Kernel Extensions: Нет + User Approved Privileged MDM Operations: Нет + DEP Approved Privileged MDM Operations: Нет + +Developer: + + Developer Tools: + + Version: 16.3 (16E140) + Location: /Applications/Xcode.app + Applications: + Xcode: 16.3 (23785) + Instruments: 16.3 (64570.99) + SDKs: + DriverKit: + 24,4: + iOS: + 18,4: (22E235) + iOS Simulator: + 18,4: (22E235) + macOS: + 15,4: (24E241) + tvOS: + 18,4: (22L251) + tvOS Simulator: + 18,4: (22L251) + visionOS: + 2,4: (22O233) + visionOS Simulator: + 2,4: (22O233) + watchOS: + 11,4: (22T246) + watchOS Simulator: + 11,4: (22T246) + +Extensions: + + AppleHIDKeyboard: + + Version: 8010.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDKeyboard + Loaded: Yes + Get Info String: 8 010,1 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDKeyboard.kext/ + Kext Version: 8010.1 + Load Address: 18446741874808347000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Properties Applier for USB Services: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBHostMergeProperties + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostMergeProperties.kext/ + Kext Version: 1.2 + Load Address: 18446741874814755000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSlaveProcessor: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOSlaveProcessor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSlaveProcessor.kext/ + Kext Version: 1 + Load Address: 18446741874813784000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPMI: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPMI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPMI.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809960000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltEDMSource: + + Version: 5.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltEDMSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltEDMService.kext/Contents/PlugIns/AppleThunderboltEDMSource.kext/ + Kext Version: 5.0.3 + Load Address: 18446741874810485000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SEPHibernation: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SEPHibernation + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SEPHibernation.kext/ + Kext Version: 1 + Load Address: 18446741874815035000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOImageLoader driver: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOImageLoader + Loaded: Yes + Get Info String: 1.0, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOImageLoader.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813470000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedSimpleSPINORFlasherDriver: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleEmbeddedSimpleSPINORFlasher + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedSimpleSPINORFlasherDriver.kext/ + Kext Version: 1 + Load Address: 18446741874807910000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAccessoryManager: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAccessoryManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAccessoryManager.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874812893000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + PPPoE: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.pppoe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/PPPoE.kext/ + Kext Version: 1.9 + Load Address: 18446741874814978000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAVFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874812744000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + DCPDPFamilyProxy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DCPDPFamilyProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/DCPDPFamilyProxy.kext/ + Kext Version: 1 + Load Address: 18446741874811482000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBPLCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBPLCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBPLCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBPLCOM, TeamID: @apple + + CoreStorage: + + Version: 559 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreStorage + Loaded: Yes + Get Info String: CoreStorage 1.0, Copyright © 2009 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreStorage.kext/ + Kext Version: 559 + Load Address: 18446741874811415000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleInputDeviceSupport: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleInputDeviceSupport + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleInputDeviceSupport.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808599000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8020SOCTuner: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8020SOCTuner + Loaded: Yes + Get Info String: Copyright © 2017 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8020SOCTuner.kext/ + Kext Version: 1 + Load Address: 18446741874810171000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.AppleUserHIDDrivers: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleUserHIDDrivers + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.AppleUserHIDDrivers.dext/ + Kext Version: 1 + Load Address: 242 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.AppleUserHIDDrivers, TeamID: @apple + + AppleKextExcludeList: + + Version: 20.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.KextExcludeList + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /Library/Apple/System/Library/Extensions/AppleKextExcludeList.kext/ + Kext Version: 20.0.0 + Loadable: Yes + Dependencies: Satisfied + + AppleA7IOP-ASCWrap-v6: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP-ASCWrap-v6 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP-ASCWrap-v6.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804929000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + cddafs: + + Version: 2.6.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.cddafs + Loaded: Yes + Get Info String: 2.6.1, Copyright Apple Inc. 2000-2014 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/cddafs.kext/ + Kext Version: 2.6.1 + Load Address: 18446741874815898000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBSLCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBSLCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBSLCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBSLCOM, TeamID: @apple + + AppleSCDriver: + + Version: 25.75 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSCDriver + Loaded: Yes + Get Info String: Copyright © 2016-2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSCDriver.kext/ + Kext Version: 25.75 + Load Address: 18446741874809776000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.iokit + Loaded: Yes + Get Info String: I/O Kit Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/IOKit.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedUSBXHCIPCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleEmbeddedUSBXHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleEmbeddedUSBXHCIPCI.kext/ + Kext Version: 1 + Load Address: 18446741874814605000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMultiFunctionManager: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMultiFunctionManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMultiFunctionManager.kext/ + Kext Version: 1 + Load Address: 18446741874809480000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSummitLCD: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSummitLCD + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSummitLCD.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810128000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHIDPowerSource: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOHIDPowerSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDPowerSource.kext/ + Kext Version: 1 + Load Address: 18446741874813467000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIMultimediaCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIMultimediaCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIMultimediaCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813753000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPMIPMU: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPMIPMU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPMIPMU.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809975000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BootPolicy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.BootPolicy + Loaded: Yes + Get Info String: Copyright © 2020-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BootPolicy.kext/ + Kext Version: 1 + Load Address: 18446741874811382000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCDPProxy: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SCDPProxy + Loaded: Yes + Get Info String: Copyright © 2016-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SCDPProxy.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874815027000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEventLogHandler: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEventLogHandler + Loaded: Yes + Get Info String: Copyright © 2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEventLogHandler.kext/ + Kext Version: 1 + Load Address: 18446741874807935000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB VHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCIRSM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBVHCIRSM.kext/ + Kext Version: 1.2 + Load Address: 18446741874814829000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTypeCRetimer: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTypeCRetimer + Loaded: Yes + Get Info String: AppleTypeCRetimer version 1.0.0, Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCRetimer.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811120000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SoftRAID: + + Version: 8.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SoftRAID + Loaded: Yes + Get Info String: SoftRAID version 8.5, Copyright © 2002-23 Other World Computing, Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SoftRAID.kext/ + Kext Version: 8.5 + Load Address: 18446741874815203000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + lifs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.lifs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/lifs.kext/ + Kext Version: 1 + Load Address: 18446741874816043000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAudioFamily: + + Version: 600.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAudioFamily + Loaded: Yes + Get Info String: IOAudioFamily 600.2, Copyright © 2000-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAudioFamily.kext/ + Kext Version: 600.2 + Load Address: 18446741874813037000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + msdosfs: + + Version: 1.10 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.msdosfs + Loaded: Yes + Get Info String: 1.10, Copyright © 2000-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/msdosfs.kext/ + Kext Version: 1.10 + Load Address: 18446741874816063000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-IOUserDockChannelSerial: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-IOUserDockChannelSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-IOUserDockChannelSerial.dext/ + Kext Version: 1 + Load Address: 245 + Loadable: Yes + Dependencies: Satisfied + Description: Dock Channel Serial Interface Driver + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-IOUserDockChannelSerial, TeamID: @apple + + AppleThunderboltPCIUpAdapter: + + Version: 4.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltPCIUpAdapter + Loaded: Yes + Get Info String: AppleThunderboltPCIAdapters version 4.1.1, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltPCIAdapters.kext/Contents/PlugIns/AppleThunderboltPCIUpAdapter.kext/ + Kext Version: 4.1.1 + Load Address: 18446741874810920000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreStorageFsck: + + Version: 559 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreStorageFsck + Loaded: Yes + Get Info String: CoreStorage 1.0, Copyright © 2010 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreStorage.kext/Contents/PlugIns/CoreStorageFsck.kext/ + Kext Version: 559 + Load Address: 18446741874811453000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleStockholmControl: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleStockholmControl + Loaded: Yes + Get Info String: Copyright © 2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStockholmControl.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810081000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBNetworking: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.networking + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBNetworking.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811208000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Libkern Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.libkern + Loaded: Yes + Get Info String: Libkern Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Libkern.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AudioDMAController_T8122: + + Version: 440.40 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AudioDMAController-T8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AudioDMAController_T8122.kext/ + Kext Version: 440.40 + Load Address: 18446741874811234000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBDeviceMux: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBDeviceMux + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBDeviceMux.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874811169000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Unsupported Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.unsupported + Loaded: Yes + Get Info String: Unsupported Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Unsupported.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOVideoFamily: + + Version: 1.2.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOVideoFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOVideoFamily.kext/ + Kext Version: 1.2.1 + Load Address: 18446741874814930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + corecapture: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.corecapture + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/corecapture.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874815902000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122.kext/ + Kext Version: 1 + Load Address: 18446741874810186000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBLightningAdapter: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBLightningAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBLightningAdapter.kext/ + Kext Version: 1 + Load Address: 18446741874811193000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCSEmbeddedAudio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCSEmbeddedAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCSEmbeddedAudio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807452000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.driver.usb.AppleUSBHostPlatformProperties: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostPlatformProperties + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostPlatformProperties.kext/ + Kext Version: 1.2 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit.AppleUserECM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit.AppleUserECM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit.AppleUserECM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit.AppleUserECM, TeamID: @apple + + IOFireWireAVC: + + Version: 4.2.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireAVC + Loaded: Yes + Get Info String: IOFireWireAVC version 4.2.8, Copyright © 2011-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireAVC.kext/ + Kext Version: 4.2.8 + Load Address: 18446741874813268000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreAnalyticsFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.CoreAnalyticsFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreAnalyticsFamily.kext/ + Kext Version: 1 + Load Address: 18446741874811390000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + L2TP: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.l2tp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/L2TP.kext/ + Kext Version: 1.9 + Load Address: 18446741874814937000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHostiOSDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostiOSDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostiOSDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874814763000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBECM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.ecm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBECM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811180000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCDC: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCDC.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811150000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBEthernetHost: + + Version: 8.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.macos.driver.AppleUSBEthernetHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBEthernetHost.kext/ + Kext Version: 8.1.1 + Load Address: 18446741874811187000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleIISController: + + Version: 440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleIISController + Loaded: Yes + Get Info String: Copyright © 2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleIISController.kext/ + Kext Version: 440.2 + Load Address: 18446741874808530000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysMIPIDSI: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSynopsysMIPIDSI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSynopsysMIPIDSI.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810132000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8940XI2C: + + Version: 1.0.0d2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8940XI2C + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8940XI2C.kext/ + Kext Version: 1.0.0d2 + Load Address: 18446741874809756000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBSerial: + + Version: 6.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.serial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBSerial.kext/ + Kext Version: 6.0.0 + Load Address: 18446741874811220000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Graphics Family: + + Version: 599 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGraphicsFamily + Loaded: Yes + Get Info String: 599, Copyright 2000-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGraphicsFamily.kext/ + Kext Version: 599 + Load Address: 18446741874813356000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT6020PCIeCPIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT6020PCIeCPIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT6020PCIeCPIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874810161000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPOutAdapter: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPOutAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPOutAdapter.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810368000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleA7IOP-MXWrap-v1: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP-MXWrap-v1 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP-MXWrap-v1.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleInterruptControllerV3: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleInterruptControllerV3 + Loaded: Yes + Get Info String: Copyright © 2009-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleInterruptControllerV3.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874808609000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleOLYHAL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleOLYHAL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleOLYHAL.kext/ + Kext Version: 1 + Load Address: 18446741874809512000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PCIe: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PCIe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PCIe.kext/ + Kext Version: 1 + Load Address: 18446741874810233000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB EHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBEHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCIPCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814743000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IODARTFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IODARTFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODARTFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813184000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBRecoveryHost: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBRecoveryHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBRecoveryHost.kext/ + Kext Version: 1.2 + Load Address: 18446741874814788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SanyoIDShot Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SanyoIDShot + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2004-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/SanyoIDShot.kext/ + Kext Version: 556 + Load Address: 18446741874810122000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreKDL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreKDL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreKDL.kext/ + Kext Version: 1 + Load Address: 18446741874811406000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOGameControllerFamily: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGameControllerFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGameControllerFamily.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874813346000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtionFirmware: + + Version: 1.0.36 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleEthernetAquantiaAqtionFirmware + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtionFirmware.kext/ + Kext Version: 1.0.36 + Load Address: 18446741874813676000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBFTDI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBFTDI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBFTDI.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBFTDI, TeamID: @apple + + AppleBiometricSensor: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBiometricSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBiometricSensor.kext/ + Kext Version: 2 + Load Address: 18446741874807364000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleBCMWLAN: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleBCMWLAN + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleBCMWLAN.dext/ + Kext Version: 1 + Load Address: 243 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleBCMWLAN, TeamID: @apple + + ApplePMP: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMP.kext/ + Kext Version: 1 + Load Address: 18446741874809608000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + cd9660: + + Version: 1.4.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.cd9660 + Loaded: Yes + Get Info String: 1.4.4, Copyright © 1999-2012 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/cd9660.kext/ + Kext Version: 1.4.4 + Load Address: 18446741874815891000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUSBUpAdapter: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUSBUpAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUSBAdapters.kext/Contents/PlugIns/AppleThunderboltUSBUpAdapter.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874810943000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IODisplayPortFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IODisplayPortFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODisplayPortFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813196000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothHIDKeyboard: + + Version: 8010.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothHIDKeyboard + Loaded: Yes + Get Info String: 8 010,1 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoothHIDKeyboard.kext/ + Kext Version: 8010.1 + Load Address: 18446741874808353000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/Contents/PlugIns/AppleUSBHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808360000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB XHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBXHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814835000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAccessoryPortUSB: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAccessoryPortUSB + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAccessoryPortUSB.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813030000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMPlatform: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMPlatform + Loaded: Yes + Get Info String: Copyright © 2009 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMPlatform.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874805074000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFWOHCI: + + Version: 5.7.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFWOHCI + Loaded: Yes + Get Info String: AppleFWOHCI version 5.7.5, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/AppleFWOHCI.kext/ + Kext Version: 5.7.5 + Load Address: 18446741874813286000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransport: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransport + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808363000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + webcontentfilter: + + Version: 5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.webcontentfilter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/webcontentfilter.kext/ + Kext Version: 5 + Load Address: 18446741874816252000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleIPAppender: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleIPAppender + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleIPAppender.kext/ + Kext Version: 1.0 + Load Address: 18446741874808535000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMRPPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOMRPPlugin + Loaded: Yes + Get Info String: IOMRPPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOMRPPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812720000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCMWLANCore: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBCMWLANCore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBCMWLANCore.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874806860000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + MAC Framework Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.dsep + Loaded: Yes + Get Info String: MAC Framework Pseudoextension, SPARTA Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/MACFramework.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBTM: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBTM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBTM.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874807343000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHostBillboardDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostBillboardDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostBillboardDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874814750000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltEDMService: + + Version: 5.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltEDMService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltEDMService.kext/ + Kext Version: 5.0.3 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSystemPolicy: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleSystemPolicy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSystemPolicy.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874810149000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleGameControllerPersonality: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleGameControllerPersonality + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleGameControllerPersonality.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874807996000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePassthroughPPM: + + Version: 3.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePassthroughPPM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePassthroughPPM.kext/ + Kext Version: 3.0 + Load Address: 18446741874809618000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFirmwareUpdateKext: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFirmwareUpdateKext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFirmwareUpdateKext.kext/ + Kext Version: 1 + Load Address: 18446741874807986000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSerialBusProtocolSansPhysicalUnit Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/IOFireWireSerialBusProtocolSansPhysicalUnit.kext/ + Kext Version: 556 + Load Address: 18446741874810116000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUVDM: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUVDM + Loaded: Yes + Get Info String: Copyright © 2022-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUVDM.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811222000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOVideoDeviceUserClient: + + Version: 1.2.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOVideoDeviceUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOVideoFamily.kext/Contents/PlugIns/IOVideoDeviceUserClient.kext/ + Kext Version: 1.2.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableBlockDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableBlockDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableBlockDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874807783000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTopCaseHIDEventDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTopCaseHIDEventDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleTopCaseHIDEventDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810966000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransportFIFO: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransportFIFO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/Contents/PlugIns/AppleHIDTransportFIFO.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808412000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUSBDownAdapter: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUSBDownAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUSBAdapters.kext/Contents/PlugIns/AppleThunderboltUSBDownAdapter.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874810940000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBMassStorageInterfaceNub: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBMassStorageInterfaceNub + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2008-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBMassStorageInterfaceNub.kext/ + Kext Version: 556 + Load Address: 18446741874810106000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Regular Expression Matching Engine: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.AppleMatch + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMatch.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809280000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleConvergedPCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleConvergedPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleConvergedPCI.kext/ + Kext Version: 1 + Load Address: 18446741874807497000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLockdownMode: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLockdownMode + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLockdownMode.kext/ + Kext Version: 1 + Load Address: 18446741874808685000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBControlPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBControlPlugin + Loaded: Yes + Get Info String: IOAVBControlPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBControlPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812666000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit PCI Family: + + Version: 2.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOPCIFamily + Loaded: Yes + Get Info String: 2.9, Copyright © 2000-2011 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOPCIFamily.kext/ + Kext Version: 2.9 + Load Address: 18446741874813694000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleQSPIMC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleQSPIMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleQSPIMC.kext/ + Kext Version: 1 + Load Address: 18446741874809735000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothModule: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothModule + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothModule.kext/ + Kext Version: 1 + Load Address: 18446741874807423000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSlowAdaptiveClockingFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSlowAdaptiveClockingFamily + Loaded: Yes + Get Info String: Copyright © 2014 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSlowAdaptiveClockingFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813786000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + InvalidateHmac: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.InvalidateHmac + Loaded: Yes + Get Info String: Copyright © 2019-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/InvalidateHmac.kext/ + Kext Version: 1 + Load Address: 18446741874814933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPIMC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPIMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPIMC.kext/ + Kext Version: 1 + Load Address: 18446741874809954000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltPCIDownAdapter: + + Version: 4.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltPCIDownAdapter + Loaded: Yes + Get Info String: AppleThunderboltPCIAdapters version 4.1.1, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltPCIAdapters.kext/Contents/PlugIns/AppleThunderboltPCIDownAdapter.kext/ + Kext Version: 4.1.1 + Load Address: 18446741874810915000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB EHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBEHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814708000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileDevice: + + Version: 4.0 + Last Modified: 30.01.2025, 10:47 + Bundle ID: com.apple.driver.AppleMobileDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /Library/Apple/System/Library/Extensions/AppleMobileDevice.kext/ + Kext Version: 4.0 + Loadable: Yes + Dependencies: Satisfied + + AppleJPEGDriver: + + Version: 7.6.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleJPEGDriver + Loaded: Yes + Get Info String: Copyright © 2016-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleJPEGDriver.kext/ + Kext Version: 7.6.8 + Load Address: 18446741874808613000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleRSMChannel: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleRSMChannel + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleRSMChannel.kext/ + Kext Version: 1 + Load Address: 18446741874809750000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMesaSEPDriver: + + Version: 100.99 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMesaSEPDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMesaSEPDriver.kext/ + Kext Version: 100.99 + Load Address: 18446741874809283000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFileSystemDriver: + + Version: 3.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFileSystemDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFileSystemDriver.kext/ + Kext Version: 3.0.1 + Load Address: 18446741874807966000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + pthread: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.pthread + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/pthread.kext/ + Kext Version: 1 + Load Address: 18446741874816109000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AUC: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AUC + Loaded: Yes + Get Info String: AUC 1.0 Copyright 2017, Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AUC.kext/ + Kext Version: 1.0 + Load Address: 18446741874804924000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTypeCPhy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTypeCPhy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCPhy.kext/ + Kext Version: 1 + Load Address: 18446741874811011000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTCA7408GPIOIC: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTCA7408GPIOIC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTCA7408GPIOIC.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810298000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + PPP: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.ppp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/PPP.kext/ + Kext Version: 1.9 + Load Address: 18446741874814970000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + vecLib: + + Version: 1.2.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.vecLib.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/vecLib.kext/ + Kext Version: 1.2.0 + Load Address: 18446741874816250000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Image4: + + Version: 7.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.AppleImage4 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleImage4.kext/ + Kext Version: 7.0.0 + Load Address: 18446741874808537000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKit USB host family: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBHostFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/ + Kext Version: 1.2 + Load Address: 18446741874814527000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + autofs: + + Version: 3.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.autofs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/autofs.kext/ + Kext Version: 3.0 + Load Address: 18446741874815885000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothRemote: + + Version: 7000.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothRemote + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothRemote.kext/ + Kext Version: 7000.2 + Load Address: 18446741874807443000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit CD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813176000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Quarantine policy: + + Version: 4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.quarantine + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Quarantine.kext/ + Kext Version: 4 + Load Address: 18446741874814982000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDCPDPTXProxy: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDCPDPTXProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDCPDPTXProxy.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807636000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122CLPC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122CLPC + Loaded: Yes + Get Info String: Copyright © 2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122CLPC.kext/ + Kext Version: 1 + Load Address: 18446741874810214000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPTX: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPTX + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPTX.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807665000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetIXGBE: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetIXGBE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetIXGBE.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetIXGBE, TeamID: @apple + + AppleARMIISAudio: + + Version: 440.17 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleARMIISAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMIISAudio.kext/ + Kext Version: 440.17 + Load Address: 18446741874805037000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBUserHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBUserHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBUserHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814794000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImages2: + + Version: 385.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDiskImages2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDiskImages2.kext/ + Kext Version: 385.101.1 + Load Address: 18446741874807718000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAHCIFamily: + + Version: 308 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAHCIFamily + Loaded: Yes + Get Info String: Version 308, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAHCIFamily.kext/ + Kext Version: 308 + Load Address: 18446741874812570000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAVD: + + Version: 862 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAVD + Loaded: Yes + Get Info String: AppleAVD 862 Copyright © 2016-2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAVD.kext/ + Kext Version: 862 + Load Address: 18446741874805146000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleActuatorDriver: + + Version: 8440.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleActuatorDriver + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleActuatorDriver.kext/ + Kext Version: 8440.1 + Load Address: 18446741874806755000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAHCI: + + Version: 384 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAHCIPort + Loaded: Yes + Get Info String: Version 384, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAHCIPort.kext/ + Kext Version: 384 + Load Address: 18446741874804939000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + iPod Driver: + + Version: 1.7.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.iPodSBCDriver + Loaded: Yes + Get Info String: iPod Driver 1.7.0, Copyright 2001-2012 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/iPodDriver.kext/Contents/PlugIns/iPodSBCDriver.kext/ + Kext Version: 1.7.0 + Load Address: 18446741874816040000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMobileGraphicsFamily: + + Version: 343.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOMobileGraphicsFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOMobileGraphicsFamily.kext/ + Kext Version: 343.0.0 + Load Address: 18446741874813514000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMCA2_T8122: + + Version: 940.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMCA2-T8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMCA2_T8122.kext/ + Kext Version: 940.3 + Load Address: 18446741874809254000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBStreamingPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBStreamingPlugin + Loaded: Yes + Get Info String: IOAVBStreamingPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBStreamingPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812688000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCommon: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBCommon + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/ + Kext Version: 1.0 + Load Address: 18446741874811152000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLMBacklight: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLMBacklight + Loaded: Yes + Get Info String: Copyright © 2011 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLMBacklight.kext/ + Kext Version: 1 + Load Address: 18446741874808666000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPInAdapter: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPInAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPInAdapter.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810358000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + asp_tcp: + + Version: 9.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.asp_tcp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/asp_tcp.kext/ + Kext Version: 9.1 + Load Address: 18446741874815873000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedAudioLibs: + + Version: 420.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedAudioLibs + Loaded: Yes + Get Info String: Copyright © 2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudioLibs.kext/ + Kext Version: 420.3 + Load Address: 18446741874807853000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4387_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4387.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4387_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811265000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPGenericTransfer: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleSEPGenericTransfer + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPGenericTransfer.kext/ + Kext Version: 1 + Load Address: 18446741874809836000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + HFS: + + Version: 683.100.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.hfs.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/HFS.kext/ + Kext Version: 683.100.9 + Load Address: 18446741874811822000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMultitouchDriver: + + Version: 8440.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMultitouchDriver + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMultitouchDriver.kext/ + Kext Version: 8440.1 + Load Address: 18446741874809490000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + acfs: + + Version: 589 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.acfs + Loaded: Yes + Get Info String: 589 (6.0.5), Copyright © 2005-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/acfs.kext/ + Kext Version: 589 + Load Address: 18446741874815216000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCardReader: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBCardReader + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2009-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBCardReader.kext/ + Kext Version: 556 + Load Address: 18446741874810100000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXFirmwareKextG15GRTBuddy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXFirmwareKextG15GRTBuddy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXFirmwareKextG15GRTBuddy.kext/ + Kext Version: 1 + Load Address: 18446741874804834000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB VHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBVHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814810000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCSITaskUserClient: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.SCSITaskUserClient + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813760000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFSCompressionTypeZlib: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleFSCompression.AppleFSCompressionTypeZlib + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFSCompressionTypeZlib.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807950000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOCECFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCECFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCECFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813178000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8960XNCO: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8960XNCO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8960XNCO.kext/ + Kext Version: 1 + Load Address: 18446741874809760000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDisplayCrossbar: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDisplayCrossbar + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDisplayCrossbar.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807734000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + StorageLynx Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.StorageLynx + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/StorageLynx.kext/ + Kext Version: 556 + Load Address: 18446741874810124000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImageDriver: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813400000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTopCaseDriverV2: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTopCaseDriverV2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleTopCaseDriverV2.kext/ + Kext Version: 8420.1 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarter: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/ + Kext Version: 3 + Load Address: 18446741874807341000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMPMU: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMPMU + Loaded: Yes + Get Info String: Copyright © 2009 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMPMU.kext/ + Kext Version: 1.0 + Load Address: 18446741874805060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4378_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4378.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4378_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811249000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCM5701Ethernet: + + Version: 11.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleBCM5701Ethernet + Loaded: Yes + Get Info String: Apple Broadcom 57XX Ethernet 11.0.0, Copyright 2002-2013 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleBCM5701Ethernet.kext/ + Kext Version: 11.0.0 + Load Address: 18446741874813626000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEncryptedArchive: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.AppleEncryptedArchive + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEncryptedArchive.kext/ + Kext Version: 1 + Load Address: 18446741874807933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleProResHW: + + Version: 475.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleProResHW + Loaded: Yes + Get Info String: Copyright Apple Computer, Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleProResHW.kext/ + Kext Version: 475.2 + Load Address: 18446741874809686000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHPM: + + Version: 3.4.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHPM + Loaded: Yes + Get Info String: AppleHPM version 3.4.4, Copyright © 2014-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHPM.kext/ + Kext Version: 3.4.4 + Load Address: 18446741874808460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAOPVoiceTrigger: + + Version: 440.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAOPVoiceTrigger + Loaded: Yes + Get Info String: 440.4, Copyright Apple Computer, Inc. 2015 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAOPVoiceTrigger.kext/ + Kext Version: 440.4 + Load Address: 18446741874805020000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOReportFamily: + + Version: 47 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOReportFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOReportFamily.kext/ + Kext Version: 47 + Load Address: 18446741874813737000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB Composite Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostCompositeDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostCompositeDevice.kext/ + Kext Version: 1.2 + Load Address: 18446741874814753000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBNCM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.ncm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBNCM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811202000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + EndpointSecurity: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.EndpointSecurity + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/EndpointSecurity.kext/ + Kext Version: 1 + Load Address: 18446741874811484000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePMGR: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMGR + Loaded: Yes + Get Info String: Copyright © 2014 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMGR.kext/ + Kext Version: 1 + Load Address: 18446741874809547000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleStorageDrivers: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleStorageDrivers + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 1999-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + USBStorageDeviceSpecifics: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.USBStorageDeviceSpecifics + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 1999-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/USBStorageDeviceSpecifics.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit HID System: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDSystem + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDSystem.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PMGR: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PMGR + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PMGR.kext/ + Kext Version: 1 + Load Address: 18446741874810274000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + afpfs: + + Version: 11.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.afpfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/afpfs.kext/ + Kext Version: 11.5 + Load Address: 18446741874815460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IO80211Family: + + Version: 1200.13.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IO80211Family + Loaded: Yes + Get Info String: 12.0, Copyright © 2005-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IO80211Family.kext/ + Kext Version: 1200.13.1 + Load Address: 18446741874811880000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBEthernet: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.ethernet.asix + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBEthernet.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811183000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireFamily: + + Version: 4.8.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireFamily + Loaded: Yes + Get Info String: IOFireWireFamily version 4.8.3, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireFamily.kext/ + Kext Version: 4.8.3 + Load Address: 18446741874813272000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Seatbelt sandbox policy: + + Version: 300.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.sandbox + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Sandbox.kext/ + Kext Version: 300.0 + Load Address: 18446741874815040000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreTrust: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.CoreTrust + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreTrust.kext/ + Kext Version: 1 + Load Address: 18446741874811460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesReadWriteDiskImage: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.ReadWriteDiskImage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesReadWriteDiskImage.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813413000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXG15G Graphics Kernel Extension: + + Version: 325.34.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXG15G + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXG15G.kext/ + Kext Version: 325.34.1 + Load Address: 18446741874804855000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + UVCService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.UVCService + Loaded: Yes + Get Info String: Copyright © 2019-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/UVCService.kext/ + Kext Version: 1 + Load Address: 18446741874815214000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBTDM: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBTDM + Loaded: Yes + Get Info String: 556, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBTDM.kext/ + Kext Version: 556 + Load Address: 18446741874810110000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + corecrypto: + + Version: 14.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.corecrypto + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/corecrypto.kext/ + Kext Version: 14.0 + Load Address: 18446741874815930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetIXL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetIXL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetIXL.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetIXL, TeamID: @apple + + BSD Kernel Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.bsd + Loaded: Yes + Get Info String: BSD Kernel Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/BSDKernel.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit USB Family: + + Version: 900.4.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBFamily + Loaded: Yes + Get Info String: 900.4.2, Copyright © 2000-2015 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBFamily.kext/ + Kext Version: 900.4.2 + Load Address: 18446741874814511000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleXsanScheme: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleXsanScheme + Loaded: Yes + Get Info String: 17, Copyright © 2005-2009, 2014-2015 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleXsanScheme.kext/ + Kext Version: 3 + Load Address: 18446741874811230000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ExclavesAudioKext: + + Version: 240.34 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ExclavesAudioKext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ExclavesAudioKext.kext/ + Kext Version: 240.34 + Load Address: 18446741874811537000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCallbackPowerSource: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCallbackPowerSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCallbackPowerSource.kext/ + Kext Version: 1 + Load Address: 18446741874807456000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSmartIO2: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSmartIO2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSmartIO2.kext/ + Kext Version: 1 + Load Address: 18446741874810060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedUSBHost: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedUSBHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedUSBHost.kext/ + Kext Version: 1 + Load Address: 18446741874807930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808355000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Networking Family: + + Version: 3.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IONetworkingFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/ + Kext Version: 3.4 + Load Address: 18446741874813620000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + QPSQueFire Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.QPSQueFire + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/QPSQueFire.kext/ + Kext Version: 556 + Load Address: 18446741874810120000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtion: + + Version: 1.0.64 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEthernetAquantiaAqtion + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtion.kext/ + Kext Version: 1.0.64 + Load Address: 18446741874813645000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSBP2: + + Version: 4.4.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireSBP2 + Loaded: Yes + Get Info String: IOFireWireSBP2 version 4.4.3, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireSBP2.kext/ + Kext Version: 4.4.3 + Load Address: 18446741874813300000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTrustedAccessory: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTrustedAccessory + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTrustedAccessory.kext/ + Kext Version: 1 + Load Address: 18446741874810978000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + webdav_fs: + + Version: 3.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.webdav + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/webdav_fs.kext/ + Kext Version: 3.0.1 + Load Address: 18446741874816258000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAOPAudio: + + Version: 440.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAOPAudio + Loaded: Yes + Get Info String: 440.12, Copyright Apple Computer, Inc. 2015 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAOPAudio.kext/ + Kext Version: 440.12 + Load Address: 18446741874804967000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOCryptoAcceleratorFamily: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCryptoAcceleratorFamily + Loaded: Yes + Get Info String: Crypto Accelerator Family + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCryptoAcceleratorFamily.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874813180000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPHDCPManager: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPHDCPManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPHDCPManager.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809842000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserEthernet: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUserEthernet + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUserEthernet.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874814925000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSMC: + + Version: 3.1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSMC.kext/ + Kext Version: 3.1.9 + Load Address: 18446741874809917000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/Contents/PlugIns/AppleBluetoothHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808357000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesKernelBacked: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.KernelBacked + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesKernelBacked.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813410000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableNOR: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableNOR + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableNOR.kext/ + Kext Version: 1.0 + Load Address: 18446741874807785000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleGPIOICController: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleGPIOICController + Loaded: Yes + Get Info String: Copyright © 2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleGPIOICController.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874807990000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-UVCUserService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-UVCUserService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-UVCUserService.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-UVCUserService, TeamID: @apple + + I/O Kit HID Event Driver Safe Boot: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDEventDriverSafeBoot + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriverSafeBoot.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUSBDeviceFamily: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBDeviceFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874814420000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCS42L84Audio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCS42L84Audio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/Contents/PlugIns/AppleCS42L84Audio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807828000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + RTBuddy: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.RTBuddy + Loaded: Yes + Get Info String: Copyright © 2014-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/RTBuddy.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874814986000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Legacy Properties Applier for USB Services: + + Version: 900.4.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBMergeNub + Loaded: Yes + Get Info String: 900.4.2, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBMergeNub.kext/ + Kext Version: 900.4.2 + Load Address: 18446741874814786000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOPortFamily: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOPortFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOPortFamily.kext/ + Kext Version: 1.0 + Load Address: 18446741874813719000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysUSBXHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleSynopsysUSBXHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleSynopsysUSBXHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814670000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB Hubs: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHub + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHub.kext/ + Kext Version: 1.2 + Load Address: 18446741874814765000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransportSPI: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransportSPI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/Contents/PlugIns/AppleHIDTransportSPI.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808426000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleM68Buttons: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleM68Buttons + Loaded: Yes + Get Info String: Copyright © 2015 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleM68Buttons.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809231000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit HID Event Driver: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDEventDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriver.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT6020PCIePIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT6020PCIePIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT6020PCIePIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874810165000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetMLX5: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetMLX5 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetMLX5.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetMLX5, TeamID: @apple + + AppleUSBDeviceNCM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBDeviceNCM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBDeviceNCM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811175000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOStreamUserClient: + + Version: 1.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStreamUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStreamFamily.kext/Contents/PlugIns/IOStreamUserClient.kext/ + Kext Version: 1.1.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBiometricServices: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBiometricServices + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBiometricServices.kext/ + Kext Version: 1 + Load Address: 18446741874807410000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + apfs: + + Version: 2332.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.apfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/apfs.kext/ + Kext Version: 2332.101.1 + Load Address: 18446741874815513000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarterTMPFS: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarterTMPFS + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/Contents/PlugIns/AppleBSDKextStarterTMPFS.kext/ + Kext Version: 1 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDialogPMU: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDialogPMU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDialogPMU.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874807716000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPDisplayTCON: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPDisplayTCON + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPDisplayTCON.kext/ + Kext Version: 1 + Load Address: 18446741874807644000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB XHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBXHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCIPCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814884000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFSCompressionTypeDataless: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleFSCompression.AppleFSCompressionTypeDataless + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFSCompressionTypeDataless.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874807945000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBTopCaseDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBTopCaseDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleUSBTopCaseDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810976000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMWatchdogTimer: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMWatchdogTimer + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMWatchdogTimer.kext/ + Kext Version: 1 + Load Address: 18446741874805140000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBXDCIARM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBXDCIARM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/Contents/PlugIns/AppleUSBXDCIARM.kext/ + Kext Version: 1.0 + Load Address: 18446741874814474000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBACM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.acm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBACM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811134000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IONVMeFamily: + + Version: 2.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IONVMeFamily + Loaded: Yes + Get Info String: 2.1.0, Copyright © 2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONVMeFamily.kext/ + Kext Version: 2.1.0 + Load Address: 18446741874813550000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSurface: + + Version: 372.5.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSurface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSurface.kext/ + Kext Version: 372.5.2 + Load Address: 18446741874813798000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIBlockCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIBlockCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIBlockCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813747000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + DCPAVFamilyProxy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DCPAVFamilyProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/DCPAVFamilyProxy.kext/ + Kext Version: 1 + Load Address: 18446741874811466000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOThunderboltFamily: + + Version: 9.3.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOThunderboltFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOThunderboltFamily.kext/ + Kext Version: 9.3.3 + Load Address: 18446741874813825000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothDebug: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothDebug + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothDebug.kext/ + Kext Version: 1 + Load Address: 18446741874807413000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS8000DWI: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS8000DWI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS8000DWI.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809768000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IISAudioIsolatedStreamECProxy: + + Version: 440.17 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IISAudioIsolatedStreamECProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IISAudioIsolatedStreamECProxy.kext/ + Kext Version: 440.17 + Load Address: 18446741874811875000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDockChannel: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDockChannel + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDockChannel.kext/ + Kext Version: 1 + Load Address: 18446741874807777000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IORSMFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IORSMFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IORSMFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813735000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOTimeSyncFamily: + + Version: 1340.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOTimeSyncFamily + Loaded: Yes + Get Info String: IOTimeSyncFamily 1340.12, Copyright © 2010-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTimeSyncFamily.kext/ + Kext Version: 1340.12 + Load Address: 18446741874814233000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Storage Family: + + Version: 2.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStorageFamily.kext/ + Kext Version: 2.1 + Load Address: 18446741874813788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableTDM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableTDM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableTDM.kext/ + Kext Version: 1.0 + Load Address: 18446741874807796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUSBMassStorageDriver: + + Version: 259.100.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBMassStorageDriver + Loaded: Yes + Get Info String: 259.100.1, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBMassStorageDriver.kext/ + Kext Version: 259.100.1 + Load Address: 18446741874814910000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSmartBatteryManagerKEXT: + + Version: 161.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSmartBatteryManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSmartBatteryManager.kext/ + Kext Version: 161.0.0 + Load Address: 18446741874810034000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesRAMBackingStore: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.RAMBackingStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesRAMBackingStore.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813411000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBODD: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBODD + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2007-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBODD.kext/ + Kext Version: 556 + Load Address: 18446741874810108000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePMPFirmware: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMPFirmware + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMPFirmware.kext/ + Kext Version: 1 + Load Address: 18446741874809616000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSN012776Amp: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSN012776Amp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/Contents/PlugIns/AppleSN012776Amp.kext/ + Kext Version: 840.26 + Load Address: 18446741874807850000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Apple M2 Scaler and Color Space Converter Driver: + + Version: 265.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleM2ScalerCSCDriver + Loaded: Yes + Get Info String: 9.0.5, Copyright Apple Inc. 2007-2023 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleM2ScalerCSC.kext/ + Kext Version: 265.0.0 + Load Address: 18446741874808705000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDALSService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDALSService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDALSService.kext/ + Kext Version: 1 + Load Address: 18446741874808345000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBRealtek8153Patcher: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.realtek8153patcher + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBRealtek8153Patcher.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811210000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Oxford Semiconductor Bridge Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.Oxford_Semi + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/OxfordSemiconductor.kext/ + Kext Version: 556 + Load Address: 18446741874810118000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BootCache: + + Version: 40 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.BootCache + Loaded: Yes + Get Info String: Copyright © 2001-2008 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BootCache.kext/ + Kext Version: 40 + Load Address: 18446741874811374000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8920XPWM: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8920XPWM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8920XPWM.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809754000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedAudio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + XboxGamepad: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.gamecontroller.driver.XboxGamepad + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/XboxGamepad.dext/ + Kext Version: 12.4.12 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.gamecontroller.driver.XboxGamepad, TeamID: @apple + + HFSEncodings: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.hfs.encodings.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/HFSEncodings.kext/ + Kext Version: 1 + Load Address: 18446741874811873000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXFirmwareKextRTBuddy64: + + Version: 325.34.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXFirmwareKextRTBuddy64 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXFirmwareKextRTBuddy64.kext/ + Kext Version: 325.34.1 + Load Address: 18446741874804838000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CanonEOS1D Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CanonEOS1D + Loaded: Yes + Get Info String: 556 Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/CanonEOS1D.kext/ + Kext Version: 556 + Load Address: 18446741874810114000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBluetoothHIDDriver: + + Version: 9.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOBluetoothHIDDriver + Loaded: Yes + Get Info String: 9.0.0, Copyright © 2002-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBluetoothHIDDriver.kext/ + Kext Version: 9.0.0 + Load Address: 18446741874813139000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUTDM: + + Version: 3.0.7 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUTDM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUTDM.kext/ + Kext Version: 3.0.7 + Load Address: 18446741874810954000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBVHCICommonRSM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCICommonRSM + Loaded: Yes + Get Info String: 1.0, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/Contents/PlugIns/AppleUSBVHCICommonRSM.kext/ + Kext Version: 1.0 + Load Address: 18446741874811160000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + nfs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.nfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/nfs.kext/ + Kext Version: 1 + Load Address: 18446741874816070000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Mach Kernel Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.mach + Loaded: Yes + Get Info String: Mach Kernel Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Mach.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMobileGraphicsFamily-DCP: + + Version: 343.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOMobileGraphicsFamily-DCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOMobileGraphicsFamily-DCP.kext/ + Kext Version: 343.0.0 + Load Address: 18446741874813483000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSART: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSART + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSART.kext/ + Kext Version: 1 + Load Address: 18446741874809770000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUVDMDriver: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUVDMDriver + Loaded: Yes + Get Info String: Copyright © 2022-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUVDMDriver.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811224000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleH11ANEInterface: + + Version: 8.510.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleH11ANEInterface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleH11ANEInterface.kext/ + Kext Version: 8.510.0 + Load Address: 18446741874807998000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSerialBusProtocolTransport: + + Version: 2.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireSerialBusProtocolTransport + Loaded: Yes + Get Info String: 2.5.1, Copyright Apple Inc. 1999-2011 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireSerialBusProtocolTransport.kext/ + Kext Version: 2.5.1 + Load Address: 18446741874813303000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8110DART: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8110DART + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8110DART.kext/ + Kext Version: 1 + Load Address: 18446741874810173000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + LSI FW-500 Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.LSI_FW_500 + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/LSI-FW-500.kext/ + Kext Version: 556 + Load Address: 18446741874810116000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-Apple16X50PCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-Apple16X50PCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-Apple16X50PCI.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-Apple16X50PCI, TeamID: @apple + + smbfs: + + Version: 6.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.smbfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/smbfs.kext/ + Kext Version: 6.0 + Load Address: 18446741874816113000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB HID Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.IOUSBHostHIDDeviceSafeBoot + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/IOUSBHostHIDDeviceSafeBoot.kext/ + Kext Version: 1.2 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarterVPN: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarterVPN + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/Contents/PlugIns/AppleBSDKextStarterVPN.kext/ + Kext Version: 3 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPKeyStore: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPKeyStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPKeyStore.kext/ + Kext Version: 2 + Load Address: 18446741874809846000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + triggers: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.triggers + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/triggers.kext/ + Kext Version: 1.0 + Load Address: 18446741874816227000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBiometricFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBiometricFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBiometricFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813065000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBXDCI: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBXDCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/Contents/PlugIns/AppleUSBXDCI.kext/ + Kext Version: 1.0 + Load Address: 18446741874814440000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUIO.kext: + + Version: 1 + Last Modified: 09.05.2025, 22:25 + Bundle ID: com.apple.driver.AppleUIO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUIO.kext/ + Kext Version: 1 + Load Address: 18446741874811130000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCredentialManager: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCredentialManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCredentialManager.kext/ + Kext Version: 1.0 + Load Address: 18446741874807527000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCMWLANBusInterfacePCIe: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBCMWLANBusInterfacePCIe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBCMWLANBusInterfacePCIe.kext/ + Kext Version: 1 + Load Address: 18446741874806764000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Compression: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.Compression + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Compression.kext/ + Kext Version: 1.0 + Load Address: 18446741874811388000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCSIDeviceSpecifics: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SCSIDeviceSpecifics + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2002-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/SCSIDeviceSpecifics.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHIDFamily: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874813430000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedTempSensor: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedTempSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedTempSensor.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807917000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesFileBackingStore: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.FileBackingStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesFileBackingStore.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813407000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserBluetoothSerialDriver: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.IOUserBluetoothSerialDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/IOUserBluetoothSerialDriver.dext/ + Kext Version: 1 + Load Address: 247 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.IOUserBluetoothSerialDriver, TeamID: @apple + + IOBufferCopyEngineFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBufferCopyEngineFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBufferCopyEngineFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813172000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleH13CameraInterface: + + Version: 9.500.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleH13CameraInterface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleH13CameraInterface.kext/ + Kext Version: 9.500.0 + Load Address: 18446741874808257000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileApNonce: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileApNonce + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileApNonce.kext/ + Kext Version: 1 + Load Address: 18446741874809317000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSamsungSerial: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSamsungSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSamsungSerial.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874810030000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PCIeC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PCIeC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PCIeC.kext/ + Kext Version: 1 + Load Address: 18446741874810245000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleALSColorSensor: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleALSColorSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleALSColorSensor.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874804951000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + exfat: + + Version: 1.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.exfat + Loaded: Yes + Get Info String: 1.4, Copyright © 2009-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/exfat.kext/ + Kext Version: 1.4 + Load Address: 18446741874816033000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHSBluetoothDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHSBluetoothDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleHSBluetoothDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810960000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDAPF: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDAPF + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDAPF.kext/ + Kext Version: 1 + Load Address: 18446741874807626000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltIP: + + Version: 4.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltIP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltIP.kext/ + Kext Version: 4.0.3 + Load Address: 18446741874810493000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874809543000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableStorage: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableStorage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableStorage.kext/ + Kext Version: 1.0 + Load Address: 18446741874807788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKit Serial Port Family: + + Version: 11 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSerialFamily + Loaded: Yes + Get Info String: Copyright © 1997-2010 Apple Inc. All rights reserved. IOKit Serial Port Family + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSerialFamily.kext/ + Kext Version: 11 + Load Address: 18446741874813768000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + USB Packet Filter: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostPacketFilter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostPacketFilter.kext/ + Kext Version: 1.0 + Load Address: 18446741874814757000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAHCIBlockStorage: + + Version: 362.100.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAHCIBlockStorage + Loaded: Yes + Get Info String: Version 362.100.1, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/ + Kext Version: 362.100.1 + Load Address: 18446741874812590000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiagnosticDataAccessReadOnly: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDiagnosticDataAccessReadOnly + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDiagnosticDataAccessReadOnly.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807714000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFDEKeyStore: + + Version: 28.30 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFDEKeyStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFDEKeyStore.kext/ + Kext Version: 28.30 + Load Address: 18446741874807943000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysUSB40XHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleSynopsysUSB40XHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleSynopsysUSB40XHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814616000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + iPod Driver: + + Version: 1.7.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.iPodDriver + Loaded: Yes + Get Info String: iPod Driver 1.7.0, Copyright 2001-2012 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/iPodDriver.kext/ + Kext Version: 1.7.0 + Load Address: 18446741874816039000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtionPortMonitor: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEthernetAquantiaAqtionPortMonitor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtionPortMonitor.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813678000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122TypeCPhy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122TypeCPhy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCPhy.kext/Contents/PlugIns/AppleT8122TypeCPhy.kext/ + Kext Version: 1 + Load Address: 18446741874811023000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleA7IOP: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804935000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleI2CEthernetAquantia: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleI2CEthernetAquantia + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleI2CEthernetAquantia.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813680000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBDiscoveryPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBDiscoveryPlugin + Loaded: Yes + Get Info String: IOAVBDiscoveryPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBDiscoveryPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812678000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSerialShim: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSerialShim + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSerialShim.kext/ + Kext Version: 1 + Load Address: 18446741874810032000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SecureRemotePassword: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.SecureRemotePassword + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSRP.kext/ + Kext Version: 1.0 + Load Address: 18446741874810012000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedLightSensor: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedLightSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedLightSensor.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874807874000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBFamily: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAVBFamily + Loaded: Yes + Get Info String: IOAVBFamily 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812615000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileDispH15G-DCP: + + Version: 140.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileDispH15G-DCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileDispH15G-DCP.kext/ + Kext Version: 140.0 + Load Address: 18446741874809326000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSDXC: + + Version: 3.5.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSDXC + Loaded: Yes + Get Info String: 3.5.3, Copyright Apple Inc. 2009-2024 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSDXC.kext/ + Kext Version: 3.5.3 + Load Address: 18446741874809820000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothMultitouch: + + Version: 103 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothMultitouch + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothMultitouch.kext/ + Kext Version: 103 + Load Address: 18446741874807435000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOTextEncryptionFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.IOTextEncryptionFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTextEncryptionFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813823000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + initioFWBridge Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.initioFWBridge + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/initioFWBridge.kext/ + Kext Version: 556 + Load Address: 18446741874810126000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIArchitectureModelFamily: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIArchitectureModelFamily + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813741000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOStreamFamily: + + Version: 1.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStreamFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStreamFamily.kext/ + Kext Version: 1.1.0 + Load Address: 18446741874813796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBluetoothFamily: + + Version: 9.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBluetoothFamily + Loaded: Yes + Get Info String: 9.0.0, Copyright © 2002-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBluetoothFamily.kext/ + Kext Version: 9.0.0 + Load Address: 18446741874813078000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEverestErrorHandler: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEverestErrorHandler + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEverestErrorHandler.kext/ + Kext Version: 1 + Load Address: 18446741874807937000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltNHI: + + Version: 7.2.81 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltNHI + Loaded: Yes + Get Info String: AppleThunderboltNHI version 7.2.81, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltNHI.kext/ + Kext Version: 7.2.81 + Load Address: 18446741874810675000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBSerial: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBSerial.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBSerial, TeamID: @apple + + acfsctl: + + Version: 589 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.acfsctl + Loaded: Yes + Get Info String: 589 (6.0.5), Copyright © 2005-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/acfsctl.kext/ + Kext Version: 589 + Load Address: 18446741874815457000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileFileIntegrity: + + Version: 1.0.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileFileIntegrity + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileFileIntegrity.kext/ + Kext Version: 1.0.5 + Load Address: 18446741874809358000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSkywalkFamily: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSkywalkFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSkywalkFamily.kext/ + Kext Version: 1.0 + Load Address: 18446741874813772000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit BD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813063000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLSIFusionMPT: + + Version: 3.8.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLSIFusionMPT + Loaded: Yes + Get Info String: 3.8.0, Copyright Apple Inc. 1999-2014 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLSIFusionMPT.kext/ + Kext Version: 3.8.0 + Load Address: 18446741874808668000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + tmpfs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.tmpfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/tmpfs.kext/ + Kext Version: 1 + Load Address: 18446741874816223000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetE1000: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetE1000 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetE1000.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetE1000, TeamID: @apple + + AppleDCP: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDCP.kext/ + Kext Version: 1 + Load Address: 18446741874807628000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKitRegistryCompatibility: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOKitRegistryCompatibility + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOKitRegistryCompatibility.kext/ + Kext Version: 1 + Load Address: 18446741874813480000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleConvergedIPCOLYBTControl: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleConvergedIPCOLYBTControl + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleConvergedIPCOLYBTControl.kext/ + Kext Version: 1 + Load Address: 18446741874807462000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPRepeater: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPRepeater + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPRepeater.kext/ + Kext Version: 1 + Load Address: 18446741874807650000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBVHCICommon: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCICommon + Loaded: Yes + Get Info String: 1.0, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/Contents/PlugIns/AppleUSBVHCICommon.kext/ + Kext Version: 1.0 + Load Address: 18446741874811154000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleOnboardSerial: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleOnboardSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleOnboardSerial.kext/ + Kext Version: 1.0 + Load Address: 18446741874809532000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOGPUFamily: + + Version: 104.4.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGPUFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGPUFamily.kext/ + Kext Version: 104.4.1 + Load Address: 18446741874813307000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Private Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.private + Loaded: Yes + Get Info String: Private Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Private.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + mDNSOffloadUserClient: + + Version: 1.0.1b8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.mDNSOffloadUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/mDNSOffloadUserClient.kext/ + Kext Version: 1.0.1b8 + Load Address: 18446741874813688000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + mcxalrkext: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.mcx.alr + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/mcxalr.kext/ + Kext Version: 2 + Load Address: 18446741874816060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit DVD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IODVDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODVDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813194000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + UDF File System Extension: + + Version: 2.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.udf + Loaded: Yes + Get Info String: UDF File System Extension + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/udf.kext/ + Kext Version: 2.5 + Load Address: 18446741874816230000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothDebugService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothDebugService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothDebugService.kext/ + Kext Version: 1 + Load Address: 18446741874807420000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleNANDConfigAccess: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleNANDConfigAccess + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleNANDConfigAccess.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874809510000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS8000AES: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS8000AES + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS8000AES.kext/ + Kext Version: 1 + Load Address: 18446741874809762000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPManager: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPManager.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809866000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSyntheticGameController: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSyntheticGameController + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSyntheticGameController.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874810145000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSSE: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSSE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSSE.kext/ + Kext Version: 1.0 + Load Address: 18446741874810022000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedPCIE: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedPCIE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedPCIE.kext/ + Kext Version: 1 + Load Address: 18446741874807886000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleRAID: + + Version: 5.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleRAID + Loaded: Yes + Get Info String: AppleRAID 5.1, Copyright 2016 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleRAID.kext/ + Kext Version: 5.1.0 + Load Address: 18446741874809740000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOgPTPPlugin: + + Version: 1340.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOgPTPPlugin + Loaded: Yes + Get Info String: IOgPTPPlugin 1340.12, Copyright © 2010-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTimeSyncFamily.kext/Contents/PlugIns/IOgPTPPlugin.kext/ + Kext Version: 1340.12 + Load Address: 18446741874814282000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + FairPlayIOKit: + + Version: 72.13.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.FairPlayIOKit + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/FairPlayIOKit.kext/ + Kext Version: 72.13.0 + Load Address: 18446741874811554000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Libm.kext: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.Libm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Libm.kext/ + Kext Version: 1 + Load Address: 18446741874814941000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB HID Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.IOUSBHostHIDDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/IOUSBHostHIDDevice.kext/ + Kext Version: 1.2 + Load Address: 18446741874814904000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBCHCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBCHCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBCHCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBCHCOM, TeamID: @apple + + IOSCSIParallelFamily: + + Version: 3.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIParallelFamily + Loaded: Yes + Get Info String: 3.0.0, Copyright 1998-2013 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIParallelFamily.kext/ + Kext Version: 3.0.0 + Load Address: 18446741874813762000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBAudio: + + Version: 741.32 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBAudio + Loaded: Yes + Get Info String: AppleUSBAudio 741.32, Copyright © 2000-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBAudio.kext/ + Kext Version: 741.32 + Load Address: 18446741874811136000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPU: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPU.kext/ + Kext Version: 1 + Load Address: 18446741874809987000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAudioClockLibs: + + Version: 420.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAudioClockLibs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAudioClockLibs.kext/ + Kext Version: 420.3 + Load Address: 18446741874806761000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHDCPFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHDCPFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDCPFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813374000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesUDIFDiskImage: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.UDIFDiskImage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesUDIFDiskImage.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813415000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4388_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4388.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4388_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811290000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIReducedBlockCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIReducedBlockCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIReducedBlockCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813757000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPAdapterFamily: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPAdapterFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPAdapterFamily.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810300000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFirmwareKit: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFirmwareKit + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFirmwareKit.kext/ + Kext Version: 1 + Load Address: 18446741874807968000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserSerial: + + Version: 6.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.driverkit.serial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUserSerial.kext/ + Kext Version: 6.0.0 + Load Address: 18446741874814929000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + H264 Video Encoder: + + Version: 803.63.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAVE2 + Loaded: Yes + Get Info String: Copyright Apple Computer, Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAVE2.kext/ + Kext Version: 803.63.1 + Load Address: 18446741874806082000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAudio2Family: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAudio2Family + Loaded: Yes + Get Info String: IOAudio2Family 1.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAudio2Family.kext/ + Kext Version: 1.0 + Load Address: 18446741874813034000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + +Firewall: + + Firewall Settings: + + Mode: Allow all incoming connections + Applications: + com.apple.cupsd: Allow all connections + com.apple.dt.xcode_select.tool-shim: Allow all connections + com.apple.remoted: Allow all connections + com.apple.ruby: Allow all connections + com.apple.sharingd: Allow all connections + com.apple.smbd: Allow all connections + com.apple.sshd-keygen-wrapper: Allow all connections + Firewall Logging: No + Stealth Mode: No + +Fonts: + + Kokonor.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kokonor.ttf + Typefaces: + Kokonor: + Full Name: Kokonor Regular + Family: Kokonor + Style: Обычный + Version: 18.0d1e10 + Vendor: Shojiro Nomura and Steve Hartwell + Unique Name: Kokonor Regular; 18.0d1e10; 2022-04-19 + Designer: Shojiro Nomura + Copyright: Copyright (c) Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Helvetica.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Helvetica.ttc + Typefaces: + Helvetica-BoldOblique: + Full Name: Helvetica Bold Oblique + Family: Helvetica + Style: Жирный наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Bold Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Light: + Full Name: Helvetica Light + Family: Helvetica + Style: Легкий + Version: 17.0d1e1 + Unique Name: Helvetica Light; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-LightOblique: + Full Name: Helvetica Light Oblique + Family: Helvetica + Style: Легкий наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Light Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica: + Full Name: Helvetica + Family: Helvetica + Style: Обычный + Version: 17.0d1e1 + Unique Name: Helvetica; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Oblique: + Full Name: Helvetica Oblique + Family: Helvetica + Style: Наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Bold: + Full Name: Helvetica Bold + Family: Helvetica + Style: Жирный + Version: 17.0d1e1 + Unique Name: Helvetica Bold; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Microsoft Sans Serif.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Microsoft Sans Serif.ttf + Typefaces: + MicrosoftSansSerif: + Full Name: Microsoft Sans Serif + Family: Microsoft Sans Serif + Style: Обычный + Version: Version 5.00.1x + Unique Name: Microsoft Sans Serif Regular + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Microsoft Sans Serif is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-MediumItalic.otf + Typefaces: + SFCompactText-MediumItalic: + Full Name: SF Compact Text Medium Italic + Family: SF Compact Text + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Medium.otf + Typefaces: + SFProText-Medium: + Full Name: SF Pro Text Medium + Family: SF Pro Text + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Papyrus.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Papyrus.ttc + Typefaces: + Papyrus: + Full Name: Papyrus + Family: Papyrus + Style: Обычный + Version: 13.0d1e2 + Unique Name: Papyrus; 13.0d1e2; 2017-06-15 + Copyright: Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp. + Trademark: Papyrus™ is a trademark of Esselte Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Papyrus-Condensed: + Full Name: Papyrus Condensed + Family: Papyrus + Style: Узкий + Version: 13.0d1e2 + Unique Name: Papyrus Condensed; 13.0d1e2; 2017-06-15 + Copyright: Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp. + Trademark: Papyrus™ is a trademark of Esselte Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-MediumItalic.otf + Typefaces: + SFProDisplay-MediumItalic: + Full Name: SF Pro Display Medium Italic + Family: SF Pro Display + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Ultralight.otf + Typefaces: + SFProDisplay-Ultralight: + Full Name: SF Pro Display Ultralight + Family: SF Pro Display + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bradley Hand Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bradley Hand Bold.ttf + Typefaces: + BradleyHandITCTT-Bold: + Full Name: Bradley Hand Bold + Family: Bradley Hand + Style: Жирный + Version: 14.0d0e1 + Unique Name: Bradley Hand Bold; 14.0d0e1; 2017-11-14 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Bold Italic.ttf + Typefaces: + Georgia-BoldItalic: + Full Name: Georgia Полужирный Курсив + Family: Georgia + Style: Полужирный Курсив + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Bold Italic; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charter.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Charter.ttc + Typefaces: + Charter-Roman: + Full Name: Charter Roman + Family: Charter + Style: Латинский + Version: 14.0d2e1 + Unique Name: Charter Roman; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-BlackItalic: + Full Name: Charter Black Italic + Family: Charter + Style: Черный курсивный + Version: 14.0d2e1 + Unique Name: Charter Black Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Bold: + Full Name: Charter Bold + Family: Charter + Style: Жирный + Version: 14.0d2e1 + Unique Name: Charter Bold; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Italic: + Full Name: Charter Italic + Family: Charter + Style: Курсивный + Version: 14.0d2e1 + Unique Name: Charter Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-BoldItalic: + Full Name: Charter BT Bold Italic + Family: Charter + Style: Жирный курсивный + Version: 14.0d2e1 + Unique Name: Charter Bold Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Black: + Full Name: Charter Black + Family: Charter + Style: Черный + Version: 14.0d2e1 + Unique Name: Charter Black; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSerifMyanmar.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSerifMyanmar.ttc + Typefaces: + NotoSerifMyanmar-Black: + Full Name: Noto Serif Myanmar Black + Family: Noto Serif Myanmar + Style: Черный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Black; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-SemiBold: + Full Name: Noto Serif Myanmar SemiBold + Family: Noto Serif Myanmar + Style: Полужирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar SemiBold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Bold: + Full Name: Noto Serif Myanmar Bold + Family: Noto Serif Myanmar + Style: Жирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Bold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Regular: + Full Name: Noto Serif Myanmar Regular + Family: Noto Serif Myanmar + Style: Обычный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Regular; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-ExtraBold: + Full Name: Noto Serif Myanmar ExtraBold + Family: Noto Serif Myanmar + Style: Сверхжирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar ExtraBold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Medium: + Full Name: Noto Serif Myanmar Medium + Family: Noto Serif Myanmar + Style: Средний + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Medium; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-ExtraLight: + Full Name: Noto Serif Myanmar ExtraLight + Family: Noto Serif Myanmar + Style: Сверхлегкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar ExtraLight; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Light: + Full Name: Noto Serif Myanmar Light + Family: Noto Serif Myanmar + Style: Легкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Light; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Thin: + Full Name: Noto Serif Myanmar Thin + Family: Noto Serif Myanmar + Style: Тонкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Thin; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kai.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/28f00a24ba19995bab7249993e6e35d11011074a.asset/AssetData/Kai.ttf + Typefaces: + SIL-Kai-Reg-Jian: + Full Name: Kai Regular + Family: Kai + Style: Обычный + Version: 13.0d1e2 + Unique Name: Kai Regular; 13.0d1e2; 2017-06-16 + Copyright: ˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995 + Trademark: Shanghai Ikarus Ltd./URW Software & Type GmbH + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72 Smallcaps Book.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72 Smallcaps Book.ttf + Typefaces: + BodoniSvtyTwoSCITCTT-Book: + Full Name: Bodoni 72 Smallcaps Book + Family: Bodoni 72 Smallcaps + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Smallcaps Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tamil MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tamil MN.ttc + Typefaces: + TamilMN-Bold: + Full Name: Tamil MN Bold + Family: Tamil MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilMN: + Full Name: Tamil MN + Family: Tamil MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Italic.ttf + Typefaces: + CourierNewPS-ItalicMT: + Full Name: Courier New Курсив + Family: Courier New + Style: Курсив + Version: Version 5.00.1x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Italic:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + EuphemiaCAS.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/EuphemiaCAS.ttc + Typefaces: + EuphemiaUCAS: + Full Name: Euphemia UCAS + Family: Euphemia UCAS + Style: Обычный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks Ltd., 2004. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + EuphemiaUCAS-Bold: + Full Name: Euphemia UCAS Bold + Family: Euphemia UCAS + Style: Жирный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS Bold; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks Ltd., 2004. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + EuphemiaUCAS-Italic: + Full Name: Euphemia UCAS Italic + Family: Euphemia UCAS + Style: Курсивный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS Italic; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (C) 2004, Tiro Typeworks Ltd. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Black.otf + Typefaces: + SFProRounded-Black: + Full Name: SF Pro Rounded Black + Family: SF Pro Rounded + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mshtakan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mshtakan.ttc + Typefaces: + MshtakanBold: + Full Name: Mshtakan Bold + Family: Mshtakan + Style: Жирный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan Bold; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-Bold 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan Bold is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MshtakanOblique: + Full Name: Mshtakan Oblique + Family: Mshtakan + Style: Наклоненный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan Oblique; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-Oblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan Oblique is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MshtakanBoldOblique: + Full Name: Mshtakan BoldOblique + Family: Mshtakan + Style: Жирный наклоненный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan BoldOblique; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-BoldOblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan BoldOblique is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mshtakan: + Full Name: Mshtakan + Family: Mshtakan + Style: Обычный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hanzipen.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9fdda46cbe802833590494a09b2787378340c597.asset/AssetData/Hanzipen.ttc + Typefaces: + HanziPenTC-W5: + Full Name: HanziPen TC Bold + Family: HanziPen TC + Style: Жирный + Version: 14.0d1e1 + Unique Name: HanziPen TC Bold; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenTC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenSC-W3: + Full Name: HanziPen SC Regular + Family: HanziPen SC + Style: Обычный + Version: 14.0d1e1 + Unique Name: HanziPen SC Regular; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenSC W3 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenSC-W5: + Full Name: HanziPen SC Bold + Family: HanziPen SC + Style: Жирный + Version: 14.0d1e1 + Unique Name: HanziPen SC Bold; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenSC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenTC-W3: + Full Name: HanziPen TC Regular + Family: HanziPen TC + Style: Обычный + Version: 14.0d1e1 + Unique Name: HanziPen TC Regular; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenTC W3 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Black.otf + Typefaces: + SFCompactRounded-Black: + Full Name: SF Compact Rounded Black + Family: SF Compact Rounded + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-SemiboldItalic.otf + Typefaces: + SFCompactText-SemiboldItalic: + Full Name: SF Compact Text Semibold Italic + Family: SF Compact Text + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DecoTypeNastaleeqUrdu.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/DecoTypeNastaleeqUrdu.ttc + Typefaces: + DecoTypeNastaleeqUrdu-Bold: + Full Name: DecoType Nastaleeq Urdu Bold + Family: DecoType Nastaleeq Urdu + Style: Жирный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: DecoType Nastaleeq Urdu Bold; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: DecoType Nastaleeq Urdu is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DecoTypeNastaleeqUrdu-Regular: + Full Name: DecoType Nastaleeq Urdu + Family: DecoType Nastaleeq Urdu + Style: Обычный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: DecoType Nastaleeq Urdu; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: DecoType Nastaleeq Urdu is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNastaleeqUrduUI-Regular: + Full Name: .DecoType Nastaleeq Urdu UI + Family: .DecoType Nastaleeq Urdu UI + Style: Обычный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: .DecoType Nastaleeq Urdu UI; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: .DecoType Nastaleeq Urdu UI is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNastaleeqUrduUI-Bold: + Full Name: .DecoType Nastaleeq Urdu UI Bold + Family: .DecoType Nastaleeq Urdu UI + Style: Жирный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: .DecoType Nastaleeq Urdu UI Bold; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: .DecoType Nastaleeq Urdu UI is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorTelugu.ttc + Typefaces: + KohinoorTelugu-Regular: + Full Name: Kohinoor Telugu + Family: Kohinoor Telugu + Style: Обычный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Medium: + Full Name: Kohinoor Telugu Medium + Family: Kohinoor Telugu + Style: Средний + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Medium; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Light: + Full Name: Kohinoor Telugu Light + Family: Kohinoor Telugu + Style: Легкий + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Light; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Bold: + Full Name: Kohinoor Telugu Bold + Family: Kohinoor Telugu + Style: Жирный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Bold; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Semibold: + Full Name: Kohinoor Telugu Semibold + Family: Kohinoor Telugu + Style: Полужирный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Semibold; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DevanagariMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DevanagariMT.ttc + Typefaces: + DevanagariMT-Bold: + Full Name: Devanagari MT Bold + Family: Devanagari MT + Style: Жирный + Version: 20.0d1e2 + Unique Name: Devanagari MT Bold; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996. All rights reserved. + Trademark: Monotype Devanagari is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DevanagariMT: + Full Name: Devanagari MT + Family: Devanagari MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Devanagari MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996. All rights reserved. + Trademark: Monotype Devanagari is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W3.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W3.ttc + Typefaces: + HiraginoSans-W3: + Full Name: Hiragino Sans W3 + Family: Hiragino Sans + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W3; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W3: + Full Name: .Hiragino Kaku Gothic Interface W3 + Family: .Hiragino Kaku Gothic Interface + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W3; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.21, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Rounded Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Rounded Bold.ttf + Typefaces: + ArialRoundedMTBold: + Full Name: Arial Rounded MT Bold + Family: Arial Rounded MT Bold + Style: Обычный + Version: Version 1.51x + Unique Name: Arial Rounded MT Bold + Copyright: Copyright © 1993 , Monotype Typography ltd. + Trademark: Arial ® Trademark of Monotype Typography ltd registered in the US Pat & TM.and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Impact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Impact.ttf + Typefaces: + Impact: + Full Name: Impact + Family: Impact + Style: Обычный + Version: Version 5.00x + Vendor: The Monotype Corporation + Unique Name: Impact - 1992 + Designer: Geoffrey Lee + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Impact is a trademark of Stephenson Blake (Holdings) Ltd. + Description: 1965. Designed for the Stephenson Blake type foundry. A very heavy, narrow, sans serif face intended for use in newspapers, for headlines and in advertisements. Aptly named, this face has a very large "x" height with short ascenders and descenders. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Skia.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Skia.ttf + Typefaces: + Skia-Regular_Light: + Full Name: Skia + Family: Skia + Style: Light + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black-Condensed: + Full Name: Skia + Family: Skia + Style: Black Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Bold: + Full Name: Skia + Family: Skia + Style: Bold + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Light-Condensed: + Full Name: Skia + Family: Skia + Style: Light Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Condensed: + Full Name: Skia + Family: Skia + Style: Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Light-Extended: + Full Name: Skia + Family: Skia + Style: Light Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black-Extended: + Full Name: Skia + Family: Skia + Style: Black Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular: + Full Name: Skia + Family: Skia + Style: Обычный + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black: + Full Name: Skia + Family: Skia + Style: Black + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Extended: + Full Name: Skia + Family: Skia + Style: Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Muna.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Muna.ttc + Typefaces: + Muna: + Full Name: Muna Regular + Family: Muna + Style: Обычный + Version: 13.0d1e4 + Unique Name: Muna Regular; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MunaBold: + Full Name: Muna Bold + Family: Muna + Style: Жирный + Version: 13.0d1e4 + Unique Name: Muna Bold; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MunaBlack: + Full Name: Muna Black + Family: Muna + Style: Черный + Version: 13.0d1e4 + Unique Name: Muna Black; 13.0d1e4; 2017-06-28 + Copyright: © Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUA: + Full Name: .Muna PUA + Family: .Muna PUA + Style: Обычный + Version: 13.0d1e4 + Unique Name: .Muna PUA; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUABold: + Full Name: .Muna PUA Bold + Family: .Muna PUA + Style: Жирный + Version: 13.0d1e4 + Unique Name: .Muna PUA Bold; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUABlack: + Full Name: .Muna PUA Black + Family: .Muna PUA + Style: Черный + Version: 13.0d1e4 + Unique Name: .Muna PUA Black; 13.0d1e4; 2017-06-28 + Copyright: © Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hannotate.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/8dc7805506cc9f233dcc19aabf593196842a47ae.asset/AssetData/Hannotate.ttc + Typefaces: + HannotateSC-W5: + Full Name: Hannotate SC Regular + Family: Hannotate SC + Style: Обычный + Version: 13.0d2e1 + Unique Name: Hannotate SC Regular; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateSC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateSC-W7: + Full Name: Hannotate SC Bold + Family: Hannotate SC + Style: Жирный + Version: 13.0d2e1 + Unique Name: Hannotate SC Bold; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateSC W7 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateTC-W5: + Full Name: Hannotate TC Regular + Family: Hannotate TC + Style: Обычный + Version: 13.0d2e1 + Unique Name: Hannotate TC Regular; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateTC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateTC-W7: + Full Name: Hannotate TC Bold + Family: Hannotate TC + Style: Жирный + Version: 13.0d2e1 + Unique Name: Hannotate TC Bold; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateTC W7 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4dd79186659117902461cd5dc475661aad20e38a.asset/AssetData/TiroTamil.ttc + Typefaces: + TiroTamil-Italic: + Full Name: Tiro Tamil Italic + Family: Tiro Tamil + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Tamil Italic; 20.0d1e2; 2024-07-05 + Designer: Tamil: Fernando Mello & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Tamil is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroTamil: + Full Name: Tiro Tamil + Family: Tiro Tamil + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Tamil; 20.0d1e2; 2024-07-05 + Designer: Tamil: Fernando Mello & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Tamil is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArimaMadurai.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e26b688bc8b9a38c551ae27a82c2e5692b582096.asset/AssetData/ArimaMadurai.ttc + Typefaces: + ArimaMadurai-Light: + Full Name: ArimaMadurai-Light + Family: Arima Madurai + Style: Легкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Light; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Medium: + Full Name: ArimaMadurai-Medium + Family: Arima Madurai + Style: Средний + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Medium; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Bold: + Full Name: ArimaMadurai-Bold + Family: Arima Madurai + Style: Жирный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Bold; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-SemiBold: + Full Name: Arima Madurai Semi Bold + Family: Arima Madurai + Style: Полужирный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Semi Bold; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Regular: + Full Name: ArimaMadurai-Regular + Family: Arima Madurai + Style: Обычный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-ExtraLight: + Full Name: ArimaMadurai-ExtraLight + Family: Arima Madurai + Style: Сверхлегкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai ExtraLight; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Black: + Full Name: ArimaMadurai-Black + Family: Arima Madurai + Style: Черный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Black; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Thin: + Full Name: ArimaMadurai-Thin + Family: Arima Madurai + Style: Тонкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Thin; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BigCaslon.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/BigCaslon.ttf + Typefaces: + BigCaslon-Medium: + Full Name: Big Caslon Medium + Family: Big Caslon + Style: Средний + Version: 13.0d1e11 + Unique Name: Big Caslon Medium; 13.0d1e11; 2017-06-07 + Copyright: Copyright (c) 1994 Carter & Cone Type, Inc. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is the property of Carter & Cone Type, Inc. and their licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Carter & Cone Type, Inc. + Trademark: "Big Caslon" is a Trademark of Carter & Cone Type, Inc. which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hubballi-regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1d7ed4d4914d33579e5b9ced3963955803881147.asset/AssetData/Hubballi-regular.otf + Typefaces: + Hubballi-Regular: + Full Name: Hubballi-Regular + Family: Hubballi + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: Hubballi; 20.0d1e2 (1.000); 2024-07-08 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2016, Erin McLaughlin (hello@erinmclaughlin.com). Digitized data copyright 2016, Google Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ChalkboardSE.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/ChalkboardSE.ttc + Typefaces: + ChalkboardSE-Bold: + Full Name: Chalkboard SE Bold + Family: Chalkboard SE + Style: Жирный + Version: 13.0d1e2 + Unique Name: Chalkboard SE Bold; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChalkboardSE-Regular: + Full Name: Chalkboard SE Regular + Family: Chalkboard SE + Style: Обычный + Version: 13.0d1e2 + Unique Name: Chalkboard SE Regular; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChalkboardSE-Light: + Full Name: Chalkboard SE Light + Family: Chalkboard SE + Style: Легкий + Version: 13.0d1e2 + Unique Name: Chalkboard SE Light; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleGothic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AppleGothic.ttf + Typefaces: + AppleGothic: + Full Name: AppleGothic Regular + Family: AppleGothic + Style: Обычный + Version: 13.0d1e3 + Unique Name: AppleGothic Regular; 13.0d1e3; 2017-07-12 + Copyright: Copyright © 1994-2006 Apple Computer, Inc. All rights reserved. + Trademark: AppleGothic is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LucidaGrande.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/LucidaGrande.ttc + Typefaces: + LucidaGrande: + Full Name: Lucida Grande + Family: Lucida Grande + Style: Обычный + Version: 15.0d1e1 + Unique Name: Lucida Grande; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LucidaGrande-Bold: + Full Name: Lucida Grande Bold + Family: Lucida Grande + Style: Жирный + Version: 15.0d1e1 + Unique Name: Lucida Grande Bold; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .LucidaGrandeUI: + Full Name: .Lucida Grande UI Regular + Family: .Lucida Grande UI + Style: Обычный + Version: 15.0d1e1 + Unique Name: .Lucida Grande UI Regular; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .LucidaGrandeUI-Bold: + Full Name: .Lucida Grande UI Bold + Family: .Lucida Grande UI + Style: Жирный + Version: 15.0d1e1 + Unique Name: .Lucida Grande UI Bold; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Andale Mono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Andale Mono.ttf + Typefaces: + AndaleMono: + Full Name: Andale Mono + Family: Andale Mono + Style: Обычный + Version: Version 2.00x + Vendor: Monotype Typography + Unique Name: Andale Mono Regular + Designer: Steven R. Matteson + Copyright: Digitized data copyright (C) 1993-1997 The Monotype Corporation. All rights reserved. + Trademark: Andale™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Description: Andale Monospaced is a highly legible monospaced font. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-LightItalic.otf + Typefaces: + SFProDisplay-LightItalic: + Full Name: SF Pro Display Light Italic + Family: SF Pro Display + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooDaBangla.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5fe6371adc5e220330443953cbf14e0036863d7b.asset/AssetData/BalooDaBangla.ttc + Typefaces: + BalooDa2-SemiBold: + Full Name: Baloo Da 2 SemiBold + Family: Baloo Da 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-ExtraBold: + Full Name: Baloo Da 2 ExtraBold + Family: Baloo Da 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Bold: + Full Name: Baloo Da 2 Bold + Family: Baloo Da 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Regular: + Full Name: Baloo Da 2 Regular + Family: Baloo Da 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Medium: + Full Name: Baloo Da 2 Medium + Family: Baloo Da 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuGothic-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54ef167d6c8e99a69a0d41ce252cc5995ba47580.asset/AssetData/YuGothic-Medium.otf + Typefaces: + YuGo-Medium: + Full Name: YuGothic Medium + Family: YuGothic + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuGothic Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a Trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ明朝 ProN.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ明朝 ProN.ttc + Typefaces: + HiraMinProN-W3: + Full Name: HiraMinProN-W3 + Family: Hiragino Mincho ProN + Style: W3 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Mincho ProN W3; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraMinProN-W6: + Full Name: HiraMinProN-W6 + Family: Hiragino Mincho ProN + Style: W6 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Mincho ProN W6; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-UltralightItalic.otf + Typefaces: + SFProText-UltralightItalic: + Full Name: SF Pro Text Ultralight Italic + Family: SF Pro Text + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Ultralight.otf + Typefaces: + SFCompactDisplay-Ultralight: + Full Name: SF Compact Display Ultralight + Family: SF Compact Display + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ丸ゴ ProN W4.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ丸ゴ ProN W4.ttc + Typefaces: + HiraMaruProN-W4: + Full Name: HiraMaruProN-W4 + Family: Hiragino Maru Gothic ProN + Style: W4 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Maru Gothic ProN W4; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 2000-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/99628f777949e7ed19970f6cf5d71915ad84e902.asset/AssetData/LavaDevanagari.ttc + Typefaces: + LavaDevanagari-Regular: + Full Name: Lava Devanagari Regular + Family: Lava Devanagari + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Regular; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Bold: + Full Name: Lava Devanagari Bold + Family: Lava Devanagari + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Bold; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Medium: + Full Name: Lava Devanagari Medium + Family: Lava Devanagari + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Medium; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Heavy: + Full Name: Lava Devanagari Heavy + Family: Lava Devanagari + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Heavy; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Thonburi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Thonburi.ttc + Typefaces: + Thonburi-Bold: + Full Name: Thonburi Bold + Family: Thonburi + Style: Жирный + Version: 18.0d1e1 + Unique Name: Thonburi Bold; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Thonburi: + Full Name: Thonburi + Family: Thonburi + Style: Обычный + Version: 18.0d1e1 + Unique Name: Thonburi; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Thonburi-Light: + Full Name: Thonburi Light + Family: Thonburi + Style: Легкий + Version: 18.0d1e1 + Unique Name: Thonburi Light; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2013 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleMyungjo.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AppleMyungjo.ttf + Typefaces: + AppleMyungjo: + Full Name: AppleMyungjo Regular + Family: AppleMyungjo + Style: Обычный + Version: 13.0d1e6 + Unique Name: AppleMyungjo Regular; 13.0d1e6; 2017-06-14 + Copyright: Copyright (c) 1994-2007 Apple, Inc. All rights reserved. + Trademark: AppleMyungjo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Comic Sans MS Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Comic Sans MS Bold.ttf + Typefaces: + ComicSansMS-Bold: + Full Name: Comic Sans MS Полужирный + Family: Comic Sans MS + Style: Полужирный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Comic Sans Bold + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Description: Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TsukushiBMaruGothic.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/10b097deccb3c6126d986e24b1980031ff7399da.asset/AssetData/TsukushiBMaruGothic.ttc + Typefaces: + TsukuBRdGothic-Regular: + Full Name: Tsukushi B Round Gothic Regula + Family: Tsukushi B Round Gothic + Style: Обычный + Version: 15.0d1e2 + Unique Name: Tsukushi B Round Gothic Regular; 15.0d1e2; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi B Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TsukuBRdGothic-Bold: + Full Name: Tsukushi B Round Gothic Bold + Family: Tsukushi B Round Gothic + Style: Жирный + Version: 15.0d1e2 + Unique Name: Tsukushi B Round Gothic Bold; 15.0d1e2; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi B Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSItalic.ttf + Typefaces: + .SFNS-RegularItalic: + Full Name: Системный шрифт Обычный курсивный + Family: Системный шрифт + Style: Обычный курсивный + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumItalic: + Full Name: Системный шрифт Medium Italic + Family: Системный шрифт + Style: Medium Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightItalic: + Full Name: Системный шрифт Light Italic + Family: Системный шрифт + Style: Light Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinItalic: + Full Name: Системный шрифт Thin Italic + Family: Системный шрифт + Style: Thin Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightItalic: + Full Name: Системный шрифт Ultralight Italic + Family: Системный шрифт + Style: Ultralight Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldItalic: + Full Name: Системный шрифт Semibold Italic + Family: Системный шрифт + Style: Semibold Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldItalic: + Full Name: Системный шрифт Bold Italic + Family: Системный шрифт + Style: Bold Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyItalic: + Full Name: Системный шрифт Heavy Italic + Family: Системный шрифт + Style: Heavy Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BlackItalic: + Full Name: Системный шрифт Black Italic + Family: Системный шрифт + Style: Black Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kefa.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kefa.ttc + Typefaces: + Kefa-Regular: + Full Name: Kefa Regular + Family: Kefa + Style: Обычный + Version: 17.0d1e2 + Vendor: Jeremie Hornus + Unique Name: Kefa Regular; 17.0d1e2; 2021-06-27 + Designer: Jeremie Hornus + Copyright: Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved. + Trademark: Kefa is a trademark of Jeremie Hornus. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kefa-Bold: + Full Name: Kefa Bold + Family: Kefa + Style: Жирный + Version: 17.0d1e2 + Vendor: Jeremie Hornus + Unique Name: Kefa Bold; 17.0d1e2; 2021-06-27 + Designer: Jeremie Hornus + Copyright: Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved. + Trademark: Kefa is a trademark of Jeremie Hornus. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Zapfino.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Zapfino.ttf + Typefaces: + Zapfino: + Full Name: Zapfino + Family: Zapfino + Style: Обычный + Version: 18.0d1e2 + Unique Name: Zapfino; 18.0d1e2; 2021-11-18 + Designer: Hermann Zapf + Copyright: Copyright (c) 1999-2002, Linotype Library GmbH & affiliates. All rights reserved. + Trademark: Linotype Zapfino is a Trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Today's digital font technology has allowed renowned type designer Hermann Zapf to realise a dream he first had more than fifty years ago: to create a fully calligraphic typeface. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sarabun.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bff515501313f56409358f8994642696000d2dbc.asset/AssetData/Sarabun.ttc + Typefaces: + Sarabun-Bold: + Full Name: Sarabun Bold + Family: Sarabun + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Bold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraBold: + Full Name: Sarabun ExtraBold + Family: Sarabun + Style: Сверхжирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraLightItalic: + Full Name: Sarabun ExtraLight Italic + Family: Sarabun + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraLightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Regular: + Full Name: Sarabun Regular + Family: Sarabun + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Regular + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraLight: + Full Name: Sarabun ExtraLight + Family: Sarabun + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraLight + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Light: + Full Name: Sarabun Light + Family: Sarabun + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Light + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Thin: + Full Name: Sarabun Thin + Family: Sarabun + Style: Тонкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Thin + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-LightItalic: + Full Name: Sarabun Light Italic + Family: Sarabun + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-LightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-SemiBold: + Full Name: Sarabun SemiBold + Family: Sarabun + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-SemiBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Medium: + Full Name: Sarabun Medium + Family: Sarabun + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Medium + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ThinItalic: + Full Name: Sarabun Thin Italic + Family: Sarabun + Style: Тонкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ThinItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraBoldItalic: + Full Name: Sarabun ExtraBold Italic + Family: Sarabun + Style: Сверхжирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Italic: + Full Name: Sarabun Italic + Family: Sarabun + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Italic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-BoldItalic: + Full Name: Sarabun Bold Italic + Family: Sarabun + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-BoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-SemiBoldItalic: + Full Name: Sarabun SemiBold Italic + Family: Sarabun + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-SemiBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-MediumItalic: + Full Name: Sarabun Medium Italic + Family: Sarabun + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-MediumItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Phosphate.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Phosphate.ttc + Typefaces: + Phosphate-Inline: + Full Name: Phosphate Inline + Family: Phosphate + Style: Inline + Version: 13.0d1e2 + Vendor: International TypeFounders, Inc + Unique Name: Phosphate Inline; 13.0d1e2; 2017-06-15 + Designer: Steve Jackaman + Ashley Muir + Copyright: Copyright © 2010 by International TypeFounders, Inc. All rights reserved. + Trademark: Phosphate Inline is a trademark of International TypeFounders, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Phosphate-Solid: + Full Name: Phosphate Solid + Family: Phosphate + Style: Solid + Version: 13.0d1e2 + Vendor: International TypeFounders, Inc + Unique Name: Phosphate Solid; 13.0d1e2; 2017-06-15 + Designer: Steve Jackaman + Ashley Muir + Copyright: Copyright © 2010 by International TypeFounders, Inc. All rights reserved. + Trademark: Phosphate Solid is a trademark of International TypeFounders, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewYork.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NewYork.ttf + Typefaces: + .NewYork-Regular: + Full Name: .New York Обычный + Family: .New York + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG1: + Full Name: .New York Regular G1 + Family: .New York + Style: Regular G1 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG2: + Full Name: .New York Regular G2 + Family: .New York + Style: Regular G2 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG3: + Full Name: .New York Regular G3 + Family: .New York + Style: Regular G3 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG4: + Full Name: .New York Regular G4 + Family: .New York + Style: Regular G4 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Medium: + Full Name: .New York Средний + Family: .New York + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Semibold: + Full Name: .New York Полужирный + Family: .New York + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Bold: + Full Name: .New York Жирный + Family: .New York + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG1: + Full Name: .New York Bold G1 + Family: .New York + Style: Bold G1 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG2: + Full Name: .New York Bold G2 + Family: .New York + Style: Bold G2 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG3: + Full Name: .New York Bold G3 + Family: .New York + Style: Bold G3 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG4: + Full Name: .New York Bold G4 + Family: .New York + Style: Bold G4 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Heavy: + Full Name: .New York Тяжелый + Family: .New York + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Black: + Full Name: .New York Черный + Family: .New York + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mishafi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mishafi.ttf + Typefaces: + DiwanMishafi: + Full Name: Mishafi Regular + Family: Mishafi + Style: Обычный + Version: 13.0d2e1 + Unique Name: Mishafi Regular; 13.0d2e1; 2017-06-28 + Copyright: © 1998-2000 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gungseouche.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f879347736afb6e4e0880bcede9df92492c0f040.asset/AssetData/Gungseouche.ttf + Typefaces: + JCkg: + Full Name: GungSeo Regular + Family: GungSeo + Style: Обычный + Version: 13.0d1e3 + Unique Name: GungSeo Regular; 13.0d1e3; 2017-06-12 + Copyright: Copyright (c) 1994-2003 Apple Computer, Inc. All rights reserved. + Trademark: Gunseo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mukta-Devanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c4ac3ef148f52416717030ac825c197150f3cdaf.asset/AssetData/Mukta-Devanagari.ttc + Typefaces: + Mukta-Bold: + Full Name: Mukta Bold + Family: Mukta + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Regular: + Full Name: Mukta Regular + Family: Mukta + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-SemiBold: + Full Name: Mukta SemiBold + Family: Mukta + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-ExtraLight: + Full Name: Mukta ExtraLight + Family: Mukta + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-ExtraBold: + Full Name: Mukta ExtraBold + Family: Mukta + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Medium: + Full Name: Mukta Medium + Family: Mukta + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Light: + Full Name: Mukta Light + Family: Mukta + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Light.otf + Typefaces: + SFProText-Light: + Full Name: SF Pro Text Light + Family: SF Pro Text + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Heavy.otf + Typefaces: + SFCompactRounded-Heavy: + Full Name: SF Compact Rounded Heavy + Family: SF Compact Rounded + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir Next Condensed.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir Next Condensed.ttc + Typefaces: + AvenirNextCondensed-DemiBold: + Full Name: Avenir Next Condensed Demi Bold + Family: Avenir Next Condensed + Style: Полужирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Demi Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-DemiBoldItalic: + Full Name: Avenir Next Condensed Demi Bold Italic + Family: Avenir Next Condensed + Style: Полужирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Demi Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Italic: + Full Name: Avenir Next Condensed Italic + Family: Avenir Next Condensed + Style: Курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-BoldItalic: + Full Name: Avenir Next Condensed Bold Italic + Family: Avenir Next Condensed + Style: Жирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-HeavyItalic: + Full Name: Avenir Next Condensed Heavy Italic + Family: Avenir Next Condensed + Style: Тяжелый курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Heavy Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Medium: + Full Name: Avenir Next Condensed Medium + Family: Avenir Next Condensed + Style: Средний + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Medium; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Bold: + Full Name: Avenir Next Condensed Bold + Family: Avenir Next Condensed + Style: Жирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-UltraLightItalic: + Full Name: Avenir Next Condensed Ultra Light Italic + Family: Avenir Next Condensed + Style: Ультралегкий курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Ultra Light Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-UltraLight: + Full Name: Avenir Next Condensed Ultra Light + Family: Avenir Next Condensed + Style: Ультралегкий + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Ultra Light; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Regular: + Full Name: Avenir Next Condensed Regular + Family: Avenir Next Condensed + Style: Обычный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Regular; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Heavy: + Full Name: Avenir Next Condensed Heavy + Family: Avenir Next Condensed + Style: Тяжелый + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Heavy; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-MediumItalic: + Full Name: Avenir Next Medium Condensed Italic + Family: Avenir Next Condensed + Style: Средний курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Medium Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Khmer Sangam MN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Khmer Sangam MN.ttf + Typefaces: + KhmerSangamMN: + Full Name: Khmer Sangam MN + Family: Khmer Sangam MN + Style: Обычный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer Sangam MN; 14.0d1e9; 2018-03-01 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tahoma Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tahoma Bold.ttf + Typefaces: + Tahoma-Bold: + Full Name: Tahoma Полужирный + Family: Tahoma + Style: Полужирный + Version: Version 5.01.1x + Vendor: Microsoft Corporation + Unique Name: Microsoft Tahoma Bold + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Trademark: Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTMono.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTMono.ttc + Typefaces: + PTMono-Regular: + Full Name: PT Mono + Family: PT Mono + Style: Обычный + Version: 13.0d2e4 + Vendor: ParaType Ltd + Unique Name: PT Mono; 13.0d2e4; 2017-06-29 + Designer: A.Korolkova, I.Chaeva + Copyright: Copyright © 2010 ParaType Inc., ParaType Ltd. All rights reserved. + Trademark: PT Mono is a trademark of the ParaType Ltd. + Description: PT Mono -- is a monospaced font of the PT Project series. First families PT Sans and PT Serif were released in 2009 and 2010. PT Mono was developed for the special needs -- for use in forms, tables, work sheets etc. Equal widths of characters are very helpful in setting complex documents, with such font you may easily calculate size of entry fields, column widths in tables and so on. One of the most important area of use is Web sites of "electronic governments" where visitors have to fill different request forms. Designer Alexandra Korolkova with a participation of Bella Chaeva. Released by ParaType in 2011. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTMono-Bold: + Full Name: PT Mono Bold + Family: PT Mono + Style: Жирный + Version: 13.0d2e4 + Vendor: ParaType Ltd + Unique Name: PT Mono Bold; 13.0d2e4; 2017-06-29 + Designer: A.Korolkova, I.Chaeva + Copyright: Copyright © 2010 ParaType Inc., ParaType Ltd. All rights reserved. + Trademark: PT Mono is a trademark of the ParaType Ltd. + Description: PT Mono -- is a monospaced font of the PT Project series. First families PT Sans and PT Serif were released in 2009 and 2010. PT Mono was developed for the special needs -- for use in forms, tables, work sheets etc. Equal widths of characters are very helpful in setting complex documents, with such font you may easily calculate size of entry fields, column widths in tables and so on. One of the most important area of use is Web sites of "electronic governments" where visitors have to fill different request forms. Designer Alexandra Korolkova with a participation of Bella Chaeva. Released by ParaType in 2011. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact.ttf + Typefaces: + SFCompact-Light: + Full Name: SF Compact + Family: SF Compact + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Bold: + Full Name: SF Compact + Family: SF Compact + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Ultralight: + Full Name: SF Compact + Family: SF Compact + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Heavy: + Full Name: SF Compact + Family: SF Compact + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Semibold: + Full Name: SF Compact + Family: SF Compact + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Regular: + Full Name: SF Compact + Family: SF Compact + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Medium: + Full Name: SF Compact + Family: SF Compact + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Black: + Full Name: SF Compact + Family: SF Compact + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Thin: + Full Name: SF Compact + Family: SF Compact + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Thin.otf + Typefaces: + SFCompactRounded-Thin: + Full Name: SF Compact Rounded Thin + Family: SF Compact Rounded + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuGothicPr6N.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0ab217c39c45c7c6acaddfa199fd32c55a7b4a19.asset/AssetData/ToppanBunkyuGothicPr6N.ttc + Typefaces: + ToppanBunkyuGothicPr6N-Regular: + Full Name: Toppan Bunkyu Gothic Regular + Family: Toppan Bunkyu Gothic + Style: Обычный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Gothic Regular; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ToppanBunkyuGothicPr6N-DB: + Full Name: Toppan Bunkyu Gothic Demibold + Family: Toppan Bunkyu Gothic + Style: Полужирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Gothic Demibold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro.ttf + Typefaces: + SFPro-CondensedThin: + Full Name: SF Pro Сжатый тонкий + Family: SF Pro + Style: Сжатый тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedMedium: + Full Name: SF Pro Расширенный средний + Family: SF Pro + Style: Расширенный средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedLight: + Full Name: SF Pro Узкий легкий + Family: SF Pro + Style: Узкий легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedThin: + Full Name: SF Pro Расширенный тонкий + Family: SF Pro + Style: Расширенный тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedBlack: + Full Name: SF Pro Расширенный черный + Family: SF Pro + Style: Расширенный черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedMedium: + Full Name: SF Pro Сжатый средний + Family: SF Pro + Style: Сжатый средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedLight: + Full Name: SF Pro Сжатый легкий + Family: SF Pro + Style: Сжатый легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedSemibold: + Full Name: SF Pro Расширенный полужирный + Family: SF Pro + Style: Расширенный полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedUltralight: + Full Name: SF Pro Узкий ультралегкий + Family: SF Pro + Style: Узкий ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Bold: + Full Name: SF Pro Жирный + Family: SF Pro + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedBold: + Full Name: SF Pro Узкий жирный + Family: SF Pro + Style: Узкий жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedBold: + Full Name: SF Pro Расширенный жирный + Family: SF Pro + Style: Расширенный жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedMedium: + Full Name: SF Pro Узкий средний + Family: SF Pro + Style: Узкий средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedThin: + Full Name: SF Pro Узкий тонкий + Family: SF Pro + Style: Узкий тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedHeavy: + Full Name: SF Pro Узкий тяжелый + Family: SF Pro + Style: Узкий тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Semibold: + Full Name: SF Pro Полужирный + Family: SF Pro + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedBlack: + Full Name: SF Pro Сжатый черный + Family: SF Pro + Style: Сжатый черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedUltralight: + Full Name: SF Pro Сжатый ультралегкий + Family: SF Pro + Style: Сжатый ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Medium: + Full Name: SF Pro Средний + Family: SF Pro + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Ultralight: + Full Name: SF Pro Ультралегкий + Family: SF Pro + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedLight: + Full Name: SF Pro Расширенный легкий + Family: SF Pro + Style: Расширенный легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Regular: + Full Name: SF Pro Обычный + Family: SF Pro + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedRegular: + Full Name: SF Pro Узкий обычный + Family: SF Pro + Style: Узкий обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Thin: + Full Name: SF Pro Тонкий + Family: SF Pro + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedSemibold: + Full Name: SF Pro Сжатый полужирный + Family: SF Pro + Style: Сжатый полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedHeavy: + Full Name: SF Pro Сжатый тяжелый + Family: SF Pro + Style: Сжатый тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Light: + Full Name: SF Pro Легкий + Family: SF Pro + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedBlack: + Full Name: SF Pro Узкий черный + Family: SF Pro + Style: Узкий черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedRegular: + Full Name: SF Pro Сжатый обычный + Family: SF Pro + Style: Сжатый обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedUltralight: + Full Name: SF Pro Расширенный ультралегкий + Family: SF Pro + Style: Расширенный ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Heavy: + Full Name: SF Pro Тяжелый + Family: SF Pro + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedBold: + Full Name: SF Pro Сжатый жирный + Family: SF Pro + Style: Сжатый жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedHeavy: + Full Name: SF Pro Расширенный тяжелый + Family: SF Pro + Style: Расширенный тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Black: + Full Name: SF Pro Черный + Family: SF Pro + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedSemibold: + Full Name: SF Pro Узкий полужирный + Family: SF Pro + Style: Узкий полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedRegular: + Full Name: SF Pro Расширенный обычный + Family: SF Pro + Style: Расширенный обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Black.otf + Typefaces: + SFCompactDisplay-Black: + Full Name: SF Compact Display Black + Family: SF Compact Display + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LastResort.otf: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/LastResort.otf + Typefaces: + LastResort: + Full Name: .LastResort + Family: .LastResort + Style: Обычный + Version: 19.4d1e2 + Vendor: Apple Inc. + Unique Name: .LastResort; 19.4d1e2; 2024-01-17 + Copyright: © 1998-2020 Apple Inc. + Description: The Last Resort font is used by the system to display a glyph for arbitrary code points when no other font can be found. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Malayalam Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Malayalam Sangam MN.ttc + Typefaces: + MalayalamSangamMN-Bold: + Full Name: Malayalam Sangam MN Bold + Family: Malayalam Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Malayalam Sangam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Malayalam Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MalayalamSangamMN: + Full Name: Malayalam Sangam MN + Family: Malayalam Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Malayalam Sangam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Malayalam Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LingWaiTC-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/b8cf53b3591d6062cd536ba5129454cba899a078.asset/AssetData/LingWaiTC-Medium.otf + Typefaces: + MLingWaiMedium-TC: + Full Name: LingWai TC Medium + Family: LingWai TC + Style: Средний + Version: 13.0d1e2 + Unique Name: LingWai TC Medium; 13.0d1e2; 2017-06-29 + Copyright: (C) Copyright 1991-2012 Monotype Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFGeorgianRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFGeorgianRounded.ttf + Typefaces: + .SFGeorgianRounded-Regular: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Обычный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Medium: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Средний + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Light: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Легкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Thin: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Тонкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Ultralight: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Ультралегкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Semibold: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Полужирный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Bold: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Жирный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Heavy: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Тяжелый + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Black: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Черный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Chalkduster.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Chalkduster.ttf + Typefaces: + Chalkduster: + Full Name: Chalkduster + Family: Chalkduster + Style: Обычный + Version: 13.0d2e1 + Unique Name: Chalkduster; 13.0d2e1; 2017-07-06 + Copyright: Copyright 2008 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Black.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Black.ttf + Typefaces: + Arial-Black: + Full Name: Arial Black Обычный + Family: Arial Black + Style: Обычный + Version: Version 5.00.1x + Vendor: Monotype Typography, Inc. + Unique Name: Monotype - Arial Black Regular + Designer: Robin Nicholas, Patricia Saunders + Copyright: C 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Regular.otf + Typefaces: + SFCompactRounded-Regular: + Full Name: SF Compact Rounded Regular + Family: SF Compact Rounded + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-RegularItalic.otf + Typefaces: + SFProText-RegularItalic: + Full Name: SF Pro Text Regular Italic + Family: SF Pro Text + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Regular Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-ThinItalic.otf + Typefaces: + SFCompactText-ThinItalic: + Full Name: SF Compact Text Thin Italic + Family: SF Compact Text + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow.ttf + Typefaces: + ArialNarrow: + Full Name: Arial Narrow + Family: Arial Narrow + Style: Обычный + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Regular : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHannaPro-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5f2614e7b55639e709d8578e16b324b3eb6eb065.asset/AssetData/BMHannaPro-Regular.otf + Typefaces: + BMHANNAProOTF: + Full Name: BM HANNA Pro OTF + Family: BM Hanna Pro + Style: Обычный + Version: 18.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM HANNA Pro OTF; 18.0d1e6; 2022-09-27 + Designer: Woowa Brothers : Cheoljun Lim; Soyoung Lee; & Sandoll : Jooyeon Kang; + Copyright: Copyright © 2018 WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BM HANNA Pro is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Italic.ttf + Typefaces: + TrebuchetMS-Italic: + Full Name: Trebuchet MS Курсив + Family: Trebuchet MS + Style: Курсив + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Italic + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroKannada.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5c6a8022433e3c6f43cdd03f724107e103c0edaf.asset/AssetData/TiroKannada.ttc + Typefaces: + TiroKannada: + Full Name: Tiro Kannada + Family: Tiro Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Kannada; 20.0d1e2; 2024-07-05 + Designer: Kannada: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Kannada is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroKannada-Italic: + Full Name: Tiro Kannada Italic + Family: Tiro Kannada + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Kannada Italic; 20.0d1e2; 2024-07-05 + Designer: Kannada: John Hudson & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Kannada is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansBatak-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansBatak-Regular.ttf + Typefaces: + NotoSansBatak-Regular: + Full Name: Noto Sans Batak Regular + Family: Noto Sans Batak + Style: Обычный + Version: Version 2.002 + Vendor: Monotype Imaging Inc. + Unique Name: 2.002;GOOG;NotoSansBatak-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/batak) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Light.otf + Typefaces: + SFProDisplay-Light: + Full Name: SF Pro Display Light + Family: SF Pro Display + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Italic.ttf + Typefaces: + Arial-ItalicMT: + Full Name: Arial Курсив + Family: Arial + Style: Курсив + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Regular Italic:Version 3.14 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-RegularItalic.otf + Typefaces: + SFProDisplay-RegularItalic: + Full Name: SF Pro Display Regular Italic + Family: SF Pro Display + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Regular Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W4.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W4.ttc + Typefaces: + HiraginoSans-W4: + Full Name: Hiragino Sans W4 + Family: Hiragino Sans + Style: W4 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W4; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W4: + Full Name: .Hiragino Kaku Gothic Interface W4 + Family: .Hiragino Kaku Gothic Interface + Style: W4 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W4; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TimesLTMM: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/TimesLTMM + Typefaces: + TimesLTMM: + Full Name: .Times LT MM + Family: .Times LT MM + Style: Обычный + Version: 1,006 + Unique Name: .Times LT MM + Copyright: Copyright © 1985, 1987, 1989, 1990, 1993, 1997 - 1999 Adobe Systems Incorporated. All Rights Reserved. © 1981, 1999, 2002 - 2004 Heidelberger Druckmaschinen AG. All rights reserved. + Trademark: Times is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype Library GmbH, and oay be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooPaajiGurmukhi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e327d387cc15b19ad4054d8a483408047a607091.asset/AssetData/BalooPaajiGurmukhi.ttc + Typefaces: + BalooPaaji2-Regular: + Full Name: Baloo Paaji 2 Regular + Family: Baloo Paaji 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-ExtraBold: + Full Name: Baloo Paaji 2 ExtraBold + Family: Baloo Paaji 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-Bold: + Full Name: Baloo Paaji 2 Bold + Family: Baloo Paaji 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-SemiBold: + Full Name: Baloo Paaji 2 SemiBold + Family: Baloo Paaji 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-Medium: + Full Name: Baloo Paaji 2 Medium + Family: Baloo Paaji 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tahoma.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tahoma.ttf + Typefaces: + Tahoma: + Full Name: Tahoma + Family: Tahoma + Style: Обычный + Version: Version 5.01.2x + Vendor: Microsoft Corporation + Unique Name: Microsoft Tahoma Regular + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Trademark: Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-LightItalic.otf + Typefaces: + SFProText-LightItalic: + Full Name: SF Pro Text Light Italic + Family: SF Pro Text + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Pilgiche.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7ca27bc02dd7660f9dacd69df96d24639b96e080.asset/AssetData/Pilgiche.ttf + Typefaces: + JCfg: + Full Name: PilGi Regular + Family: PilGi + Style: Обычный + Version: 13.0d2e5 + Unique Name: PilGi Regular; 13.0d2e5; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: Pilgiche is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lao MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Lao MN.ttc + Typefaces: + LaoMN-Bold: + Full Name: Lao MN Bold + Family: Lao MN + Style: Жирный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao MN Bold; 14.0d1e9; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LaoMN: + Full Name: Lao MN + Family: Lao MN + Style: Обычный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao MN; 14.0d1e9; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kannada Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kannada Sangam MN.ttc + Typefaces: + KannadaSangamMN: + Full Name: Kannada Sangam MN + Family: Kannada Sangam MN + Style: Обычный + Version: 20.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Kannada Sangam MN; 20.0d1e1; 2024-06-10 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Kannada Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KannadaSangamMN-Bold: + Full Name: Kannada Sangam MN Bold + Family: Kannada Sangam MN + Style: Жирный + Version: 20.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Kannada Sangam MN Bold; 20.0d1e1; 2024-06-10 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Kannada Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuGothic-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/42062e40d643fdb5bb3fba917212352fb0690de0.asset/AssetData/YuGothic-Bold.otf + Typefaces: + YuGo-Bold: + Full Name: YuGothic Bold + Family: YuGothic + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuGothic Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a Trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Myanmar MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Myanmar MN.ttc + Typefaces: + MyanmarMN: + Full Name: Myanmar MN + Family: Myanmar MN + Style: Обычный + Version: 14.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar MN; 14.0d1e2; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MyanmarMN-Bold: + Full Name: Myanmar MN Bold + Family: Myanmar MN + Style: Жирный + Version: 14.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar MN Bold; 14.0d1e2; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings 3.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings 3.ttf + Typefaces: + Wingdings3: + Full Name: Wingdings 3 + Family: Wingdings 3 + Style: Обычный + Version: Version 1.55x + Unique Name: Wingdings 3 + Copyright: Wingdings 3 designed by Bigelow & Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved. + Trademark: Wingdings is a trademark of Microsoft Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trattatello.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trattatello.ttf + Typefaces: + Trattatello: + Full Name: Trattatello + Family: Trattatello + Style: Обычный + Version: 13.0d2e2 + Vendor: James Grieshaber + Unique Name: Trattatello; 13.0d2e2; 2017-06-20 + Designer: James Grieshaber + Copyright: Copyright (c) James Grieshaber, 2005. All rights reserved. + Description: Copyright (c) James Grieshaber, 2005. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AkayaTelivigala-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fe626522d20d087ba21e23b49d41f77136e07e29.asset/AssetData/AkayaTelivigala-regular.ttf + Typefaces: + AkayaTelivigala-Regular: + Full Name: AkayaTelivigala-Regular + Family: AkayaTelivigala + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: AkayaTelivigala; 20.0d1e2 (1.000); 2024-07-09 + Designer: Vaishnavi Murthy Yerkadithaya ( vaishnavimurthy@gmail.com ), Juan Luis Blanco Aristondo ( juan@blancoletters.com ) + Copyright: Copyright © Akaya Telivigala 2015 Vaishnavi Murthy, Juan Luis Blanco Aristondo + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHeiti Light.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/STHeiti Light.ttc + Typefaces: + STHeitiSC-Light: + Full Name: Heiti SC Light + Family: Heiti SC + Style: Светлый + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti SC Light; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STHeitiTC-Light: + Full Name: Heiti TC Light + Family: Heiti TC + Style: Светлый + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti TC Light; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroSanskrit.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ff251c85442877182be2bbab64747d3c2ce8446a.asset/AssetData/TiroSanskrit.ttc + Typefaces: + TiroDevaSanskrit: + Full Name: Tiro Devanagari Sanskrit + Family: Tiro Devanagari Sanskrit + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Sanskrit; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Sanskrit is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaSanskrit-Italic: + Full Name: Tiro Devanagari Sanskrit Italic + Family: Tiro Devanagari Sanskrit + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Sanskrit Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Sanskrit and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-BoldItalic.otf + Typefaces: + SFProDisplay-BoldItalic: + Full Name: SF Pro Display Bold Italic + Family: SF Pro Display + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCondensedTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/26fae641eb2d1f672737dffcde972f770e1fe764.asset/AssetData/OctoberCondensedTamil.ttc + Typefaces: + OctoberCondensedTLHairline: + Full Name: October Condensed Tamil Hairline + Family: October Condensed Tamil + Style: С соединительными штрихами + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Hairline; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLExtraLight: + Full Name: October Condensed Tamil ExtraLight + Family: October Condensed Tamil + Style: Сверхлегкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil ExtraLight; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLThin: + Full Name: October Condensed Tamil Thin + Family: October Condensed Tamil + Style: Тонкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Thin; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLMedium: + Full Name: October Condensed Tamil Medium + Family: October Condensed Tamil + Style: Средний + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Medium; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLHeavy: + Full Name: October Condensed Tamil Heavy + Family: October Condensed Tamil + Style: Тяжелый + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Heavy; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLBold: + Full Name: October Condensed Tamil Bold + Family: October Condensed Tamil + Style: Жирный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Bold; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLBlack: + Full Name: October Condensed Tamil Black + Family: October Condensed Tamil + Style: Черный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Black; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLRegular: + Full Name: October Condensed Tamil Regular + Family: October Condensed Tamil + Style: Обычный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Regular; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLLight: + Full Name: October Condensed Tamil Light + Family: October Condensed Tamil + Style: Легкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Light; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Semibold.otf + Typefaces: + SFCompactText-Semibold: + Full Name: SF Compact Text Semibold + Family: SF Compact Text + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Nadeem.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Nadeem.ttc + Typefaces: + Nadeem: + Full Name: Nadeem Regular + Family: Nadeem + Style: Обычный + Version: 18.0d1e1 + Unique Name: Nadeem Regular; 18.0d1e1; 2022-02-07 + Copyright: Nadeem designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and +its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NadeemPUA: + Full Name: .Nadeem PUA + Family: .Nadeem PUA + Style: Обычный + Version: 18.0d1e1 + Unique Name: .Nadeem PUA; 18.0d1e1; 2022-02-07 + Copyright: .Nadeem PUA designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and +its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSRounded.ttf + Typefaces: + .SFNSRounded-Regular: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Medium: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Light: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Thin: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Ultralight: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Ultrathin: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Semibold: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Bold: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Heavy: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Black: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Ultralight.otf + Typefaces: + SFCompactRounded-Ultralight: + Full Name: SF Compact Rounded Ultralight + Family: SF Compact Rounded + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorGujarati.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorGujarati.ttc + Typefaces: + KohinoorGujarati-Semibold: + Full Name: Kohinoor Gujarati Semibold + Family: Kohinoor Gujarati + Style: Полужирный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Semibold; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Light: + Full Name: Kohinoor Gujarati Light + Family: Kohinoor Gujarati + Style: Легкий + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Light; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Regular: + Full Name: Kohinoor Gujarati Regular + Family: Kohinoor Gujarati + Style: Обычный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Regular; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Medium: + Full Name: Kohinoor Gujarati Medium + Family: Kohinoor Gujarati + Style: Средний + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Medium; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Bold: + Full Name: Kohinoor Gujarati Bold + Family: Kohinoor Gujarati + Style: Жирный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Bold; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f79ae6354d4eadea4ad91c60d0bdfe6803b486b7.asset/AssetData/SamaKannada.ttc + Typefaces: + SamaKannada-Medium: + Full Name: Sama Kannada Medium + Family: Sama Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Medium; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-SemiBold: + Full Name: Sama Kannada SemiBold + Family: Sama Kannada + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada SemiBold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Regular: + Full Name: Sama Kannada Regular + Family: Sama Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Regular; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Bold: + Full Name: Sama Kannada Bold + Family: Sama Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Bold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-ExtraBold: + Full Name: Sama Kannada ExtraBold + Family: Sama Kannada + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Book: + Full Name: Sama Kannada Book + Family: Sama Kannada + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Book; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMidashiMinchoStdN-ExtraBold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/40e56e4eafd8b4db78ffe316f64ac4bedba37b53.asset/AssetData/ToppanBunkyuMidashiMinchoStdN-ExtraBold.otf + Typefaces: + ToppanBunkyuMidashiMinchoStdN-ExtraBold: + Full Name: Toppan Bunkyu Midashi Mincho Extrabold + Family: Toppan Bunkyu Midashi Mincho + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Midashi Mincho Extrabold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GotuDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c41fcba3ecd9a163d2fa789efb7f4639c395c553.asset/AssetData/GotuDevanagari-Regular.ttf + Typefaces: + Gotu: + Full Name: Gotu + Family: Gotu + Style: Обычный + Version: 20.0d1e2 (2.320) + Vendor: Ek Type + Unique Name: Gotu; 20.0d1e2 (2.320); 2024-07-08 + Designer: Sarang Kulkarni & Kailash Malviya + Copyright: Copyright 2019 The Gotu Project Authors (https://github.com/EkType/Gotu) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AquaKana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/AquaKana.ttc + Typefaces: + AquaKana: + Full Name: .Aqua Kana + Family: .Aqua Kana + Style: Обычный + Version: 13.0d1e4 + Vendor: DAINIPPON SCREEN MFG. CO., LTD. + Unique Name: .Aqua Kana; 13.0d1e4; 2017-06-02 + Designer: JIYU-KOBO Ltd. + Copyright: Copyright © 2001-2011 Apple Inc. All rights reserved. + Trademark: Aqua Kana is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AquaKana-Bold: + Full Name: .Aqua Kana Bold + Family: .Aqua Kana + Style: Жирный + Version: 13.0d1e4 + Vendor: DAINIPPON SCREEN MFG. CO., LTD. + Unique Name: .Aqua Kana Bold; 13.0d1e4; 2017-06-02 + Designer: JIYU-KOBO Ltd. + Copyright: Copyright © 2001-2011 Apple Inc. All rights reserved. + Trademark: Aqua Kana is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Bold Italic.ttf + Typefaces: + TimesNewRomanPS-BoldItalicMT: + Full Name: Times New Roman Полужирный Курсив + Family: Times New Roman + Style: Полужирный Курсив + Version: Version 5.00.3x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Bold Italic:Version 5.00 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Bold.ttf + Typefaces: + TrebuchetMS-Bold: + Full Name: Trebuchet MS Полужирный + Family: Trebuchet MS + Style: Полужирный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Bold + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kavivanar-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c3a843d226791256d897018e02e6c09b1ef283a9.asset/AssetData/Kavivanar-regular.ttf + Typefaces: + Kavivanar-Regular: + Full Name: Kavivanar + Family: Kavivanar + Style: Обычный + Version: 20.0d1e2 (1.89) + Vendor: Tharique Azeez + Unique Name: Kavivanar; 20.0d1e2 (1.89); 2024-07-05 + Designer: Tharique Azeez + Copyright: Copyright (c) 2015, Tharique Azeez (http://thariqueazeez.com|zeezat@gmail.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Katari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1904a9ad9c351e8ae2c6fe50480760c0f90333d5.asset/AssetData/Katari.ttc + Typefaces: + Katari-Bold: + Full Name: Katari Bold + Family: Katari + Style: Жирный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Bold; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Italic: + Full Name: Katari Italic + Family: Katari + Style: Курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-MediumItalic: + Full Name: Katari Medium Italic + Family: Katari + Style: Средний курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Medium Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Medium: + Full Name: Katari Medium + Family: Katari + Style: Средний + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Medium; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-BoldItalic: + Full Name: Katari Bold Italic + Family: Katari + Style: Жирный курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Bold Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-BlackItalic: + Full Name: Katari Black Italic + Family: Katari + Style: Черный курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Black Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Regular: + Full Name: Katari Regular + Family: Katari + Style: Обычный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Regular; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 Erin McLaughlin. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Black: + Full Name: Katari Black + Family: Katari + Style: Черный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Black; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Heavy.otf + Typefaces: + SFCompactDisplay-Heavy: + Full Name: SF Compact Display Heavy + Family: SF Compact Display + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GujaratiMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/GujaratiMT.ttc + Typefaces: + GujaratiMT: + Full Name: Gujarati MT + Family: Gujarati MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Gujarati MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996 . All rights reserved. + Trademark: Monotype Gujarati is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GujaratiMT-Bold: + Full Name: Gujarati MT Bold + Family: Gujarati MT + Style: Жирный + Version: 20.0d1e2 + Unique Name: Gujarati MT Bold; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1994 . All rights reserved. + Trademark: Monotype Gujarati is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings.ttf + Typefaces: + Wingdings-Regular: + Full Name: Wingdings + Family: Wingdings + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Typography + Unique Name: Wingdings Regular: MS: 2006 + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Wingdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Description: The Wingdings fonts were designed by Kris Holmes and Charles Bigelow in 1990 and 1991. + +The fonts were originally named Lucida Icons, Arrows, and Stars to complement the Lucida text font family by the same designers. Renamed, reorganized, and released in 1992 as Microsoft Wingdings, the three fonts provide a harmoniously designed set of icons representing the common components of personal computer systems and the elements of graphical user interfaces. + +There are icons for PC, monitor, keyboard, mouse, trackball, hard drive, diskette, tape cassette, printer, fax, etc., as well as icons for file folders, documents, mail, mailboxes, windows, clipboard, and wastebasket. In addition, Wingdings includes icons with both traditional and computer significance, such as writing tools and hands, reading glasses, clipping scissors, bell, bomb, check boxes, as well as more traditional images such as weather signs, religious symbols, astrological signs, encircled numerals, a selection of ampersands and interrobangs, plus elegant flowers and flourishes. + +Pointing and indicating are frequent functions in graphical interfaces, so in addition to a wide selection of pointing hands, the Wingdings fonts also offer arrows in careful gradations of weight and different directions and styles. For variety and impact as bullets, asterisks, and ornaments, Windings also offers a varied set of geometric circles, squares, polygons, targets, and stars. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Futura.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Futura.ttc + Typefaces: + Futura-Bold: + Full Name: Futura Bold + Family: Futura + Style: Жирный + Version: 16.0d2e1 + Unique Name: Futura Bold; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928), Marie-Thérèse Koreman (1997, 2016) + Copyright: © Copyright 1998, 2016 Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998, 2016. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. In 2016 the Visualogik Design Staff, headed by Marie-Thérèse Koreman, developed completely new character sets for greek and cyrillic, true to the Renner ideas and the early considerations of the Bauersche Giesserei, with a special eye for contemporary digital demands. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-MediumItalic: + Full Name: Futura Medium Italic + Family: Futura + Style: Средний курсивный + Version: 16.0d2e1 + Unique Name: Futura Medium Italic; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-CondensedExtraBold: + Full Name: Futura Condensed ExtraBold + Family: Futura + Style: Узкий сверхжирный + Version: 16.0d2e1 + Unique Name: Futura Condensed ExtraBold; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-Medium: + Full Name: Futura Medium + Family: Futura + Style: Средний + Version: 16.0d2e1 + Unique Name: Futura Medium; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-CondensedMedium: + Full Name: Futura Condensed Medium + Family: Futura + Style: Узкий средний + Version: 16.0d2e1 + Unique Name: Futura Condensed Medium; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansSyriac-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansSyriac-Regular.ttf + Typefaces: + NotoSansSyriac-Regular_Thin: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Тонкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_SemiBold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Полужирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_ExtraLight: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Сверхлегкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_ExtraBold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Сверхжирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Обычный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Light: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Легкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Medium: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Средний + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Black: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Черный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Bold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Жирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHanna11yrs-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/157acc4d862730d6d5beaa943546f80a71948c7b.asset/AssetData/BMHanna11yrs-Regular.otf + Typefaces: + BMHANNA11yrsoldOTF: + Full Name: BM HANNA 11yrs old OTF + Family: BM Hanna 11yrs Old + Style: Обычный + Version: 18.0d1e6 + Vendor: Woowa Brothers Corp. + Unique Name: BM HANNA 11yrs old OTF; 18.0d1e6; 2022-09-27 + Designer: Bongjin Kim; Jaehyun Keum; Juhee Tae; Minjung Kim; + Copyright: Copyright © WOOWA BROTHERS Corporation + Trademark: BMHANNA11yrsoldOTF is a registered trademark of Woowa Brothers Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LiSongPro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5a3fc034b64879656271c040cab38b65d4ea6548.asset/AssetData/LiSongPro.ttf + Typefaces: + LiSongPro: + Full Name: LiSong Pro + Family: LiSong Pro + Style: Светлый + Version: 17.0d1e2 + Unique Name: LiSong Pro; 17.0d1e2; 2021-06-23 + Copyright: (c) Copyright DynaComware Corp. 2003 + Trademark: Trademark by DynaComware Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Srisakdi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/988d97c87efe350cfa398b9ae4e822431f92d59b.asset/AssetData/Srisakdi.ttc + Typefaces: + Srisakdi-Regular: + Full Name: Srisakdi Regular + Family: Srisakdi + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Srisakdi-Regular + Designer: Cadson Demak Co.,Ltd. + Copyright: Copyright 2018 The Srisakdi Project Authors (https://github.com/cadsondemak/Srisakdi) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Srisakdi-Bold: + Full Name: Srisakdi Bold + Family: Srisakdi + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Srisakdi-Bold + Designer: Cadson Demak Co.,Ltd. + Copyright: Copyright 2018 The Srisakdi Project Authors (https://github.com/cadsondemak/Srisakdi) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Black.otf + Typefaces: + SFProText-Black: + Full Name: SF Pro Text Black + Family: SF Pro Text + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Thin.otf + Typefaces: + SFCompactDisplay-Thin: + Full Name: SF Compact Display Thin + Family: SF Compact Display + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PadyakkeExpandedOne-regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/107ec29d3748811d6b299a0537bce535b21a95b7.asset/AssetData/PadyakkeExpandedOne-regular.otf + Typefaces: + PadyakkeExpandedOne-Regular: + Full Name: PadyakkeExpandedOne-Regular + Family: Padyakke Expanded One + Style: Обычный + Version: 20.0d1e2 (1.402) + Vendor: Dunwich Type Founders + Unique Name: Padyakke Expanded One; 20.0d1e2 (1.402); 2024-07-05 + Designer: James Puckett + Copyright: Copyright (c) 2015 The Padyakke Project Authors (padyakkefonts@gmail.com). Padyakke is a trademark of Dunwich Type Founders. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Bold Italic.ttf + Typefaces: + Arial-BoldItalicMT: + Full Name: Arial Полужирный Курсив + Family: Arial + Style: Полужирный Курсив + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Bold Italic:version 3.14 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorBangla.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorBangla.ttc + Typefaces: + KohinoorBangla-Bold: + Full Name: Kohinoor Bangla Bold + Family: Kohinoor Bangla + Style: Жирный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Bold; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Light: + Full Name: Kohinoor Bangla Light + Family: Kohinoor Bangla + Style: Легкий + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Light; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Regular: + Full Name: Kohinoor Bangla + Family: Kohinoor Bangla + Style: Обычный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Medium: + Full Name: Kohinoor Bangla Medium + Family: Kohinoor Bangla + Style: Средний + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Medium; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Semibold: + Full Name: Kohinoor Bangla Semibold + Family: Kohinoor Bangla + Style: Полужирный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Semibold; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Bold.otf + Typefaces: + SFCompactRounded-Bold: + Full Name: SF Compact Rounded Bold + Family: SF Compact Rounded + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Ultralight.otf + Typefaces: + SFProText-Ultralight: + Full Name: SF Pro Text Ultralight + Family: SF Pro Text + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoText.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoText.ttf + Typefaces: + STIXTwoText_Bold: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Жирный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText_SemiBold: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Полужирный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Обычный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText_Medium: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Средний + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Copperplate.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Copperplate.ttc + Typefaces: + Copperplate: + Full Name: Copperplate + Family: Copperplate + Style: Обычный + Version: 13.0d1e2 + Unique Name: Copperplate; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Copperplate-Light: + Full Name: Copperplate Light + Family: Copperplate + Style: Светлый + Version: 13.0d1e2 + Unique Name: Copperplate Light; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Copperplate-Bold: + Full Name: Copperplate Bold + Family: Copperplate + Style: Жирный + Version: 13.0d1e2 + Unique Name: Copperplate Bold; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Thin.otf + Typefaces: + SFProText-Thin: + Full Name: SF Pro Text Thin + Family: SF Pro Text + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AnnaiMN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5d0add7d16e666bc8481ceaa16014eae1eeb2ef9.asset/AssetData/AnnaiMN.ttf + Typefaces: + AnnaiMN-Regular: + Full Name: Annai MN Regular + Family: Annai MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. + Unique Name: Annai MN Regular; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010, 2020 by Murasu Systems Sdn. Bhd. All rights reserved. + Trademark: Annai MN is a trademark of Murasu Systems Sdn. Bhd. + Description: Copyright (c) 2010, 2020 by Murasu Systems Sdn. Bhd. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baskerville.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Baskerville.ttc + Typefaces: + Baskerville: + Full Name: Baskerville + Family: Baskerville + Style: Обычный + Version: 13.0d1e10 + Unique Name: Baskerville; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-SemiBoldItalic: + Full Name: Baskerville SemiBold Italic + Family: Baskerville + Style: Полужирный курсивный + Version: 13.0d1e10 + Unique Name: Baskerville SemiBold Italic; 13.0d1e10; 2017-06-15 + Copyright: Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Trademark: Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-SemiBold: + Full Name: Baskerville SemiBold + Family: Baskerville + Style: Полужирный + Version: 13.0d1e10 + Unique Name: Baskerville SemiBold; 13.0d1e10; 2017-06-15 + Copyright: Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Trademark: Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-Bold: + Full Name: Baskerville Bold + Family: Baskerville + Style: Жирный + Version: 13.0d1e10 + Unique Name: Baskerville Bold; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-Italic: + Full Name: Baskerville Italic + Family: Baskerville + Style: Курсивный + Version: 13.0d1e10 + Unique Name: Baskerville Italic; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-BoldItalic: + Full Name: Baskerville Bold Italic + Family: Baskerville + Style: Жирный курсивный + Version: 13.0d1e10 + Unique Name: Baskerville Bold Italic; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bangla MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bangla MN.ttc + Typefaces: + BanglaMN-Bold: + Full Name: Bangla MN Bold + Family: Bangla MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla MN Bold is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BanglaMN: + Full Name: Bangla MN + Family: Bangla MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AkayaKannada-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5cd9eaf98e75b3a998edeef7a7c385a7a158ce51.asset/AssetData/AkayaKannada-regular.ttf + Typefaces: + AkayaKanadaka-Regular: + Full Name: AkayaKanadaka-Regular + Family: AkayaKanadaka + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: AkayaKanadaka; 20.0d1e2 (1.000); 2024-07-09 + Designer: Vaishnavi Murthy Yerkadithaya, Juan Luis Blanco Aristondo + Copyright: Copyright (c) 2015 Vaishnavi Murthy Yerkadithaya ( vaishnavimurthy@gmail.com ), Juan Luis Blanco Aristondo ( juan@blancoletters.com ) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ITFDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/ITFDevanagari.ttc + Typefaces: + ITFDevanagariMarathi-Bold: + Full Name: ITFDevanagari Marathi-Bold + Family: ITF Devanagari Marathi + Style: Жирный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Bold; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Bold is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Book: + Full Name: ITFDevanagari-Book + Family: ITF Devanagari + Style: Книжный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Book; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Book is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Book: + Full Name: ITFDevanagari Marathi-Book + Family: ITF Devanagari Marathi + Style: Книжный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Book; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Book is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Medium: + Full Name: ITF Devanagari Marathi Medium + Family: ITF Devanagari Marathi + Style: Средний + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Medium; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Medium is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Demi: + Full Name: ITFDevanagari Marathi-Demi + Family: ITF Devanagari Marathi + Style: Полу + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Demi; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Demi is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Light: + Full Name: ITFDevanagari Marathi Light + Family: ITF Devanagari Marathi + Style: Легкий + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Light; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Light is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Demi: + Full Name: ITFDevanagari-Demi + Family: ITF Devanagari + Style: Полу + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Demi; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Demi is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Light: + Full Name: ITFDevanagari-Light + Family: ITF Devanagari + Style: Легкий + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Light; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Light is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Bold: + Full Name: ITFDevanagari-Bold + Family: ITF Devanagari + Style: Жирный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Bold; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Bold is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Medium: + Full Name: ITFDevanagari-Medium + Family: ITF Devanagari + Style: Средний + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Medium; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Medium is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Chancery.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Apple Chancery.ttf + Typefaces: + Apple-Chancery: + Full Name: Apple Chancery + Family: Apple Chancery + Style: Chancery + Version: 13.0d1e5 + Unique Name: Apple Chancery; 13.0d1e5; 2022-08-23 + Copyright: © 1993-1999 Apple Computer, Inc. + Trademark: Apple Chancery is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMinchoPr6N-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/8739f5cf483d3b2f04cbb451d310b68f0cf880d0.asset/AssetData/ToppanBunkyuMinchoPr6N-Regular.otf + Typefaces: + ToppanBunkyuMinchoPr6N-Regular: + Full Name: Toppan Bunkyu Mincho Regular + Family: Toppan Bunkyu Mincho + Style: Обычный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Mincho Regular; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuMincho.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e9a9a2d18358033875835a6228cb70ce84b7e47c.asset/AssetData/YuMincho.ttc + Typefaces: + YuMin_36pKn-Medium: + Full Name: YuMincho +36p Kana Medium + Family: YuMincho +36p Kana + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Demibold: + Full Name: YuMincho Demibold + Family: YuMincho + Style: Полужирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Demibold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Medium: + Full Name: YuMincho Medium + Family: YuMincho + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Extrabold: + Full Name: YuMincho Extrabold + Family: YuMincho + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Extrabold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin_36pKn-Demibold: + Full Name: YuMincho +36p Kana Demibold + Family: YuMincho +36p Kana + Style: Полужирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Demibold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin_36pKn-Extrabold: + Full Name: YuMincho +36p Kana Extrabold + Family: YuMincho +36p Kana + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Extrabold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Bold.ttf + Typefaces: + Verdana-Bold: + Full Name: Verdana Полужирный + Family: Verdana + Style: Полужирный + Version: Version 5.01x + Unique Name: Microsoft:Verdana Bold:Version 5.01x (Microsoft) + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArmenianRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArmenianRounded.ttf + Typefaces: + .SFArmenianRounded-Regular: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Обычный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Medium: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Средний + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Light: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Легкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Thin: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Тонкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Ultralight: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Ультралегкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Semibold: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Полужирный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Bold: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Жирный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Heavy: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Тяжелый + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Black: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Черный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Bold.ttf + Typefaces: + Georgia-Bold: + Full Name: Georgia Полужирный + Family: Georgia + Style: Полужирный + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Bold; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sana.ttc + Typefaces: + Sana: + Full Name: Sana Regular + Family: Sana + Style: Обычный + Version: 13.0d1e4 + Unique Name: Sana Regular; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SanaPUA: + Full Name: .Sana PUA + Family: .Sana PUA + Style: Обычный + Version: 13.0d1e4 + Unique Name: .Sana PUA; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BiauKai.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/584ea2a48d14147049c2f9eaee147fe5a1f279ac.asset/AssetData/BiauKai.ttc + Typefaces: + BiauKaiHK-Regular: + Full Name: BiauKaiHK Regular + Family: BiauKaiHK + Style: Обычный + Version: 14.0d1 + Vendor: DynaComware Shanghai Limited; DynaComware Hong Kong Limited; DynaComware Taiwan Inc. + Unique Name: BiauKaiHK Regular; 14.0d1; 2023-01-10 + Copyright: Copyright © 2022 DynaComware. All rights reserved. + Trademark: BiauKaiHK is a trademark of Apple Inc. + Description: Designed by DynaComware & Apple. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BiauKaiTC-Regular: + Full Name: BiauKaiTC Regular + Family: BiauKaiTC + Style: Обычный + Version: 14.0d1 + Vendor: DynaComware Taiwan Inc. + Unique Name: BiauKaiTC Regular; 14.0d1; 2023-01-10 + Copyright: Copyright © 2022 DynaComware Taiwan Inc. All rights reserved. + Trademark: BiauKaiTC is a trademark of DynaComware Taiwan Inc. + Description: Designed by DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Academy Engraved LET Fonts.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Academy Engraved LET Fonts.ttf + Typefaces: + AcademyEngravedLetPlain: + Full Name: Academy Engraved LET Plain:1.0 + Family: Academy Engraved LET + Style: Простой + Version: 16.0d1e1 + Unique Name: Academy Engraved LET Plain:1.0; 16.0d1e1; 2020-08-17 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMDoHyeon-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e71ea5469e5f2039223f22203ee8b9186524afd3.asset/AssetData/BMDoHyeon-Regular.otf + Typefaces: + BMDoHyeon-OTF: + Full Name: BM DoHyeon OTF + Family: BM Dohyeon + Style: Обычный + Version: 14.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM DoHyeon OTF; 14.0d1e6; 2022-09-27 + Designer: Bongjin Kim; Jaehyun Keum; Juhee Tae; + Copyright: Copyright © 2015 Sandoll Communications Inc. All rights reserved. + Trademark: BMDoHyeon-OTF is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W5.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W5.ttc + Typefaces: + HiraginoSans-W5: + Full Name: Hiragino Sans W5 + Family: Hiragino Sans + Style: W5 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W5; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W5: + Full Name: .Hiragino Kaku Gothic Interface W5 + Family: .Hiragino Kaku Gothic Interface + Style: W5 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W5; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Italic.ttf + Typefaces: + SFCompact-MediumItalic: + Full Name: SF Compact + Family: SF Compact + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-HeavyItalic: + Full Name: SF Compact + Family: SF Compact + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-ThinItalic: + Full Name: SF Compact + Family: SF Compact + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-UltralightItalic: + Full Name: SF Compact + Family: SF Compact + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-BoldItalic: + Full Name: SF Compact + Family: SF Compact + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-BlackItalic: + Full Name: SF Compact + Family: SF Compact + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-RegularItalic: + Full Name: SF Compact + Family: SF Compact + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-SemiboldItalic: + Full Name: SF Compact + Family: SF Compact + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-LightItalic: + Full Name: SF Compact + Family: SF Compact + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-LightItalic.otf + Typefaces: + SFCompactText-LightItalic: + Full Name: SF Compact Text Light Italic + Family: SF Compact Text + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompactRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompactRounded.ttf + Typefaces: + ..SFCompactRounded-Regular: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Regular: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Medium: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Light: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Thin: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Ultralight: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Semibold: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Bold: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Heavy: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Black: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArabic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArabic.ttf + Typefaces: + .SFArabic-Regular: + Full Name: .SF Arabic Обычный + Family: .SF Arabic + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Medium: + Full Name: .SF Arabic Средний + Family: .SF Arabic + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Light: + Full Name: .SF Arabic Легкий + Family: .SF Arabic + Style: Легкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Thin: + Full Name: .SF Arabic Тонкий + Family: .SF Arabic + Style: Тонкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Ultralight: + Full Name: .SF Arabic Ультралегкий + Family: .SF Arabic + Style: Ультралегкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Semibold: + Full Name: .SF Arabic Полужирный + Family: .SF Arabic + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Bold: + Full Name: .SF Arabic Жирный + Family: .SF Arabic + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Heavy: + Full Name: .SF Arabic Тяжелый + Family: .SF Arabic + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Black: + Full Name: .SF Arabic Черный + Family: .SF Arabic + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewYorkItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NewYorkItalic.ttf + Typefaces: + .NewYork-RegularItalic: + Full Name: .New York Обычный курсивный + Family: .New York + Style: Обычный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG1: + Full Name: .New York Regular Italic G1 + Family: .New York + Style: Regular Italic G1 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG2: + Full Name: .New York Regular Italic G2 + Family: .New York + Style: Regular Italic G2 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG3: + Full Name: .New York Regular Italic G3 + Family: .New York + Style: Regular Italic G3 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG4: + Full Name: .New York Regular Italic G4 + Family: .New York + Style: Regular Italic G4 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-MediumItalic: + Full Name: .New York Средний курсивный + Family: .New York + Style: Средний курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-SemiboldItalic: + Full Name: .New York Полужирный курсивный + Family: .New York + Style: Полужирный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalic: + Full Name: .New York Жирный курсивный + Family: .New York + Style: Жирный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG1: + Full Name: .New York Bold Italic G1 + Family: .New York + Style: Bold Italic G1 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG2: + Full Name: .New York Bold Italic G2 + Family: .New York + Style: Bold Italic G2 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG3: + Full Name: .New York Bold Italic G3 + Family: .New York + Style: Bold Italic G3 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG4: + Full Name: .New York Bold Italic G4 + Family: .New York + Style: Bold Italic G4 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-HeavyItalic: + Full Name: .New York Тяжелый курсивный + Family: .New York + Style: Тяжелый курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BlackItalic: + Full Name: .New York Черный курсивный + Family: .New York + Style: Черный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHEITI.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/eb257c12d1a51c8c661b89f30eec56cacf9b8987.asset/AssetData/STHEITI.ttf + Typefaces: + STHeiti: + Full Name: STHeiti + Family: STHeiti + Style: Обычный + Version: 17.0d1e1 + Unique Name: STHeiti; 17.0d1e1; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-MediumItalic.otf + Typefaces: + SFProText-MediumItalic: + Full Name: SF Pro Text Medium Italic + Family: SF Pro Text + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AlBayan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AlBayan.ttc + Typefaces: + AlBayan: + Full Name: Al Bayan Plain + Family: Al Bayan + Style: Прямой + Version: 18.0d1e1 + Unique Name: Al Bayan Plain; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AlBayan-Bold: + Full Name: Al Bayan Bold + Family: Al Bayan + Style: Жирный + Version: 18.0d1e1 + Unique Name: Al Bayan Bold; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple +Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlBayanPUA: + Full Name: .Al Bayan PUA Plain + Family: .Al Bayan PUA + Style: Прямой + Version: 18.0d1e1 + Unique Name: .Al Bayan PUA Plain; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlBayanPUA-Bold: + Full Name: .Al Bayan PUA Bold + Family: .Al Bayan PUA + Style: Жирный + Version: 18.0d1e1 + Unique Name: .Al Bayan PUA Bold; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple +Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Ultralight.otf + Typefaces: + SFCompactText-Ultralight: + Full Name: SF Compact Text Ultralight + Family: SF Compact Text + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaMalayalam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ddece00a6ce2caaeca2af3af0fecb11f8b9addc3.asset/AssetData/SamaMalayalam.ttc + Typefaces: + SamaMalayalam-ExtraBold: + Full Name: Sama Malayalam ExtraBold + Family: Sama Malayalam + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-SemiBold: + Full Name: Sama Malayalam SemiBold + Family: Sama Malayalam + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam SemiBold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Bold: + Full Name: Sama Malayalam Bold + Family: Sama Malayalam + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Bold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Regular: + Full Name: Sama Malayalam Regular + Family: Sama Malayalam + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Regular; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Book: + Full Name: Sama Malayalam Book + Family: Sama Malayalam + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Book; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Medium: + Full Name: Sama Malayalam Medium + Family: Sama Malayalam + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Medium; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kodchasan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0e35a111b2580442c7bff35fcd5c54fc99ca1d91.asset/AssetData/Kodchasan.ttc + Typefaces: + Kodchasan-BoldItalic: + Full Name: Kodchasan Bold Italic + Family: Kodchasan + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-LightItalic: + Full Name: Kodchasan Light Italic + Family: Kodchasan + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-MediumItalic: + Full Name: Kodchasan Medium Italic + Family: Kodchasan + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-ExtraLight: + Full Name: Kodchasan ExtraLight + Family: Kodchasan + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Bold: + Full Name: Kodchasan Bold + Family: Kodchasan + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-SemiBoldItalic: + Full Name: Kodchasan SemiBold Italic + Family: Kodchasan + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-SemiBold: + Full Name: Kodchasan SemiBold + Family: Kodchasan + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Light: + Full Name: Kodchasan Light + Family: Kodchasan + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Italic: + Full Name: Kodchasan Italic + Family: Kodchasan + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-ExtraLightItalic: + Full Name: Kodchasan ExtraLight Italic + Family: Kodchasan + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Medium: + Full Name: Kodchasan Medium + Family: Kodchasan + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Regular: + Full Name: Kodchasan Regular + Family: Kodchasan + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Symbols.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Symbols.ttf + Typefaces: + AppleSymbols: + Full Name: Apple Symbols + Family: Apple Symbols + Style: Обычный + Version: 17.0d1e2 + Unique Name: Apple Symbols; 17.0d1e2; 2021-05-16 + Copyright: © Copyright 2003-2006 by Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSMonoItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSMonoItalic.ttf + Typefaces: + .SFNSMono-RegularItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Обычный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-MediumItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Средний курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-LightItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Легкий курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-SemiboldItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Полужирный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-BoldItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Жирный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-HeavyItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Тяжелый курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansTagalog-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansTagalog-Regular.ttf + Typefaces: + NotoSansTagalog-Regular: + Full Name: Noto Sans Tagalog Regular + Family: Noto Sans Tagalog + Style: Обычный + Version: Version 2.002 + Vendor: Monotype Imaging Inc. + Unique Name: 2.002;GOOG;NotoSansTagalog-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/tagalog) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansMyanmar.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansMyanmar.ttc + Typefaces: + NotoSansMyanmar-ExtraLight: + Full Name: Noto Sans Myanmar ExtraLight + Family: Noto Sans Myanmar + Style: Сверхлегкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar ExtraLight; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Thin: + Full Name: Noto Sans Myanmar Thin + Family: Noto Sans Myanmar + Style: Тонкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Thin; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-SemiBold: + Full Name: Noto Sans Myanmar SemiBold + Family: Noto Sans Myanmar + Style: Полужирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar SemiBold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Regular: + Full Name: Noto Sans Myanmar Regular + Family: Noto Sans Myanmar + Style: Обычный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Regular; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Bold: + Full Name: Noto Sans Myanmar Bold + Family: Noto Sans Myanmar + Style: Жирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Bold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Black: + Full Name: Noto Sans Myanmar Black + Family: Noto Sans Myanmar + Style: Черный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Black; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Light: + Full Name: Noto Sans Myanmar Light + Family: Noto Sans Myanmar + Style: Легкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Light; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Medium: + Full Name: Noto Sans Myanmar Medium + Family: Noto Sans Myanmar + Style: Средний + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Medium; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-ExtraBold: + Full Name: Noto Sans Myanmar ExtraBold + Family: Noto Sans Myanmar + Style: Сверхжирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar ExtraBold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Heavy.otf + Typefaces: + SFProDisplay-Heavy: + Full Name: SF Pro Display Heavy + Family: SF Pro Display + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Italic.ttf + Typefaces: + TimesNewRomanPS-ItalicMT: + Full Name: Times New Roman Курсив + Family: Times New Roman + Style: Курсив + Version: Version 5.00.3x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Italic:Version 5.00 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSerifKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3626548a6dc590e58f7258cd141d0ad9b2e6e59c.asset/AssetData/NotoSerifKannada.ttc + Typefaces: + NotoSerifKannada-Medium: + Full Name: Noto Serif Kannada Medium + Family: Noto Serif Kannada + Style: Средний + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Medium; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Bold: + Full Name: Noto Serif Kannada Bold + Family: Noto Serif Kannada + Style: Жирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Bold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-SemiBold: + Full Name: Noto Serif Kannada SemiBold + Family: Noto Serif Kannada + Style: Полужирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada SemiBold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Light: + Full Name: Noto Serif Kannada Light + Family: Noto Serif Kannada + Style: Легкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Light; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Thin: + Full Name: Noto Serif Kannada Thin + Family: Noto Serif Kannada + Style: Тонкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Thin; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-ExtraBold: + Full Name: Noto Serif Kannada ExtraBold + Family: Noto Serif Kannada + Style: Сверхжирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada ExtraBold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Regular: + Full Name: Noto Serif Kannada Regular + Family: Noto Serif Kannada + Style: Обычный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Regular; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-ExtraLight: + Full Name: Noto Serif Kannada ExtraLight + Family: Noto Serif Kannada + Style: Сверхлегкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada ExtraLight; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Black: + Full Name: Noto Serif Kannada Black + Family: Noto Serif Kannada + Style: Черный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Black; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZapfDingbats.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZapfDingbats.ttf + Typefaces: + ZapfDingbatsITC: + Full Name: Zapf Dingbats + Family: Zapf Dingbats + Style: Обычный + Version: 13.0d1e2 + Unique Name: Zapf Dingbats; 13.0d1e2; 2017-06-15 + Copyright: (c) Copyright 1999-2000 as an unpublished work by Galapagos Design Group, Inc. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-ThinItalic.otf + Typefaces: + SFProText-ThinItalic: + Full Name: SF Pro Text Thin Italic + Family: SF Pro Text + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompactItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompactItalic.ttf + Typefaces: + .SFCompact-RegularItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Обычный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Средний курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Легкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Тонкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Ультралегкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Полужирный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Жирный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Тяжелый курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BlackItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Черный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HelveticaNeue.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/HelveticaNeue.ttc + Typefaces: + HelveticaNeue-Thin: + Full Name: Helvetica Neue Thin + Family: Helvetica Neue + Style: Узкий тонкий + Version: 20.4d1e2 + Vendor: Linotype GmbH + Unique Name: Helvetica Neue Thin; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2008 - 2009 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype GmbH. The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 1988, 1990, 1993 Adobe Systems. All Rights Reserved. This software is the property of Adobe Systems Incorporated and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Adobe. Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. + Description: The Helvetica Font Family is part of the Linotype Originals. Helvetica is one of the most famous and popular typefaces in the world. It lends an air of lucid efficiency to any typographic message with its clean, no-nonsense shapes. The original typeface was called Neue Haas Grotesk, and was designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the Helvetica family was expanded to include many different weights, but these were not as well coordinated with each other as they might have been. In 1983, D. Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it into a cohesive font family. At the beginning of the 21st Century, Linotype again released an updated design of Helvetica, the Helvetica World typeface family. This family is much smaller in terms of its number of fonts, but each font makes up for this in terms of language support. Helvetica World supports a number of languages and writing systems from all over the globe + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Medium: + Full Name: Helvetica Neue Medium + Family: Helvetica Neue + Style: Средний + Version: 20.4d1e2 + Unique Name: Helvetica Neue Medium; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Bold: + Full Name: Helvetica Neue Bold + Family: Helvetica Neue + Style: Жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Bold; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-UltraLight: + Full Name: Helvetica Neue UltraLight + Family: Helvetica Neue + Style: Сверхсветлый + Version: 20.4d1e2 + Unique Name: Helvetica Neue UltraLight; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-LightItalic: + Full Name: Helvetica Neue Light Italic + Family: Helvetica Neue + Style: Облегченный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Light Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Light: + Full Name: Helvetica Neue Light + Family: Helvetica Neue + Style: Светлый + Version: 20.4d1e2 + Unique Name: Helvetica Neue Light; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-UltraLightItalic: + Full Name: Helvetica Neue UltraLight Italic + Family: Helvetica Neue + Style: Сверхоблегченный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue UltraLight Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-CondensedBlack: + Full Name: Helvetica Neue Condensed Black + Family: Helvetica Neue + Style: Узкий насыщенный жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Condensed Black; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Italic: + Full Name: Helvetica Neue Italic + Family: Helvetica Neue + Style: Курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-CondensedBold: + Full Name: Helvetica Neue Condensed Bold + Family: Helvetica Neue + Style: Узкий жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Condensed Bold; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-BoldItalic: + Full Name: Helvetica Neue Bold Italic + Family: Helvetica Neue + Style: Жирный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Bold Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue: + Full Name: Helvetica Neue + Family: Helvetica Neue + Style: Обычный + Version: 20.4d1e2 + Unique Name: Helvetica Neue; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-MediumItalic: + Full Name: Helvetica Neue Medium Italic + Family: Helvetica Neue + Style: Средний курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Medium Italic; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-ThinItalic: + Full Name: Helvetica Neue Thin Italic + Family: Helvetica Neue + Style: Узкий тонкий курсивный + Version: 20.4d1e2 + Vendor: Linotype GmbH + Unique Name: Helvetica Neue Thin Italic; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2008 - 2009 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype GmbH. The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 1988, 1990, 1993 Adobe Systems. All Rights Reserved. This software is the property of Adobe Systems Incorporated and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Adobe. Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. + Description: The Helvetica Font Family is part of the Linotype Originals. Helvetica is one of the most famous and popular typefaces in the world. It lends an air of lucid efficiency to any typographic message with its clean, no-nonsense shapes. The original typeface was called Neue Haas Grotesk, and was designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the Helvetica family was expanded to include many different weights, but these were not as well coordinated with each other as they might have been. In 1983, D. Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it into a cohesive font family. At the beginning of the 21st Century, Linotype again released an updated design of Helvetica, the Helvetica World typeface family. This family is much smaller in terms of its number of fonts, but each font makes up for this in terms of language support. Helvetica World supports a number of languages and writing systems from all over the globe + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Luminari.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Luminari.ttf + Typefaces: + Luminari-Regular: + Full Name: Luminari + Family: Luminari + Style: Обычный + Version: 13.0d1e2 + Vendor: Canada Type + Unique Name: Luminari; 13.0d1e2; 2017-06-16 + Designer: Philip Bouwsma + Copyright: Copyright © 2008 Philip Bouwsma. Published by Canada Type. All rights reserved. + Trademark: Luminari is a trade mark of Canada Type. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kohinoor.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Kohinoor.ttc + Typefaces: + KohinoorDevanagari-Bold: + Full Name: Kohinoor Devanagari Bold + Family: Kohinoor Devanagari + Style: Жирный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Bold; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Light: + Full Name: Kohinoor Devanagari Light + Family: Kohinoor Devanagari + Style: Легкий + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Light; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Regular: + Full Name: Kohinoor Devanagari Regular + Family: Kohinoor Devanagari + Style: Обычный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Regular; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Medium: + Full Name: Kohinoor Devanagari Medium + Family: Kohinoor Devanagari + Style: Средний + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Medium; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Semibold: + Full Name: Kohinoor Devanagari Semibold + Family: Kohinoor Devanagari + Style: Полужирный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Semibold; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Black.otf + Typefaces: + SFProDisplay-Black: + Full Name: SF Pro Display Black + Family: SF Pro Display + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansKannada.ttc + Typefaces: + NotoSansKannada-Medium: + Full Name: Noto Sans Kannada Medium + Family: Noto Sans Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Medium; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-ExtraLight: + Full Name: Noto Sans Kannada ExtraLight + Family: Noto Sans Kannada + Style: Сверхлегкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada ExtraLight; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Thin: + Full Name: Noto Sans Kannada Thin + Family: Noto Sans Kannada + Style: Тонкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Thin; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Regular: + Full Name: Noto Sans Kannada Regular + Family: Noto Sans Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Regular; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Bold: + Full Name: Noto Sans Kannada Bold + Family: Noto Sans Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Bold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-ExtraBold: + Full Name: Noto Sans Kannada ExtraBold + Family: Noto Sans Kannada + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada ExtraBold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Black: + Full Name: Noto Sans Kannada Black + Family: Noto Sans Kannada + Style: Черный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Black; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-SemiBold: + Full Name: Noto Sans Kannada SemiBold + Family: Noto Sans Kannada + Style: Полужирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada SemiBold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Light: + Full Name: Noto Sans Kannada Light + Family: Noto Sans Kannada + Style: Легкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Light; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCamera.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCamera.ttf + Typefaces: + ..SFCamera-Regular: + Full Name: .SF Camera + Family: .SF Camera + Style: Обычный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Regular: + Full Name: .SF Camera + Family: .SF Camera + Style: Обычный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Medium: + Full Name: .SF Camera + Family: .SF Camera + Style: Средний + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Light: + Full Name: .SF Camera + Family: .SF Camera + Style: Легкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Thin: + Full Name: .SF Camera + Family: .SF Camera + Style: Тонкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Ultralight: + Full Name: .SF Camera + Family: .SF Camera + Style: Ультралегкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Semibold: + Full Name: .SF Camera + Family: .SF Camera + Style: Полужирный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Bold: + Full Name: .SF Camera + Family: .SF Camera + Style: Жирный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Heavy: + Full Name: .SF Camera + Family: .SF Camera + Style: Тяжелый + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSans.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSans.ttc + Typefaces: + PTSans-Regular: + Full Name: PT Sans + Family: PT Sans + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Caption: + Full Name: PT Sans Caption + Family: PT Sans Caption + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Caption; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Bold: + Full Name: PT Sans Bold + Family: PT Sans + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Italic: + Full Name: PT Sans Italic + Family: PT Sans + Style: Курсивный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Italic; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-BoldItalic: + Full Name: PT Sans Bold Italic + Family: PT Sans + Style: Жирный курсивный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Bold Italic; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Narrow: + Full Name: PT Sans Narrow + Family: PT Sans Narrow + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Narrow; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-NarrowBold: + Full Name: PT Sans Narrow Bold + Family: PT Sans Narrow + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Narrow Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-CaptionBold: + Full Name: PT Sans Caption Bold + Family: PT Sans Caption + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Caption Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + FahKwang.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/75aa8a3555ac606e1e0fe930fef4a1803105ae51.asset/AssetData/FahKwang.ttc + Typefaces: + Fahkwang-Bold: + Full Name: Fahkwang Bold + Family: Fahkwang + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Bold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-SemiBoldItalic: + Full Name: Fahkwang SemiBold Italic + Family: Fahkwang + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-SemiBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-LightItalic: + Full Name: Fahkwang Light Italic + Family: Fahkwang + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-LightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Regular: + Full Name: Fahkwang Regular + Family: Fahkwang + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Regular + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Light: + Full Name: Fahkwang Light + Family: Fahkwang + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Light + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Italic: + Full Name: Fahkwang Italic + Family: Fahkwang + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Italic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Medium: + Full Name: Fahkwang Medium + Family: Fahkwang + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Medium + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-ExtraLight: + Full Name: Fahkwang ExtraLight + Family: Fahkwang + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-ExtraLight + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-SemiBold: + Full Name: Fahkwang SemiBold + Family: Fahkwang + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-SemiBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-MediumItalic: + Full Name: Fahkwang Medium Italic + Family: Fahkwang + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-MediumItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-BoldItalic: + Full Name: Fahkwang Bold Italic + Family: Fahkwang + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-BoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-ExtraLightItalic: + Full Name: Fahkwang ExtraLight Italic + Family: Fahkwang + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-ExtraLightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e13e9d74dd730ca10b36e625bd3b964013949a20.asset/AssetData/OctoberDevanagari.ttc + Typefaces: + OctoberDL-Bold: + Full Name: October Devanagari Bold + Family: October Devanagari + Style: Жирный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Bold; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Medium: + Full Name: October Devanagari Medium + Family: October Devanagari + Style: Средний + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Medium; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-ExtraLight: + Full Name: October Devanagari ExtraLight + Family: October Devanagari + Style: Сверхлегкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari ExtraLight; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Regular: + Full Name: October Devanagari Regular + Family: October Devanagari + Style: Обычный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Regular; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Heavy: + Full Name: October Devanagari Heavy + Family: October Devanagari + Style: Тяжелый + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Heavy; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Thin: + Full Name: October Devanagari Thin + Family: October Devanagari + Style: Тонкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Thin; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Black: + Full Name: October Devanagari Black + Family: October Devanagari + Style: Черный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Black; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Light: + Full Name: October Devanagari Light + Family: October Devanagari + Style: Легкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Light; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Hairline: + Full Name: October Devanagari Hairline + Family: October Devanagari + Style: С соединительными штрихами + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Hairline; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir Next.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir Next.ttc + Typefaces: + AvenirNext-UltraLightItalic: + Full Name: Avenir Next Ultra Light Italic + Family: Avenir Next + Style: Ультралегкий курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Ultra Light Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-HeavyItalic: + Full Name: Avenir Next Heavy Italic + Family: Avenir Next + Style: Тяжелый курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Heavy Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Bold: + Full Name: Avenir Next Bold + Family: Avenir Next + Style: Жирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Medium: + Full Name: Avenir Next Medium + Family: Avenir Next + Style: Средний + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Medium; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-MediumItalic: + Full Name: Avenir Next Medium Italic + Family: Avenir Next + Style: Средний курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Medium Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Italic: + Full Name: Avenir Next Italic + Family: Avenir Next + Style: Курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-DemiBold: + Full Name: Avenir Next Demi Bold + Family: Avenir Next + Style: Полужирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Demi Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-DemiBoldItalic: + Full Name: Avenir Next Demi Bold Italic + Family: Avenir Next + Style: Полужирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Demi Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-BoldItalic: + Full Name: Avenir Next Bold Italic + Family: Avenir Next + Style: Жирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Regular: + Full Name: Avenir Next Regular + Family: Avenir Next + Style: Обычный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Regular; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-UltraLight: + Full Name: AvenirNext-UltraLight + Family: Avenir Next + Style: Ультралегкий + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Ultra Light; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Heavy: + Full Name: Avenir Next Heavy + Family: Avenir Next + Style: Тяжелый + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Heavy; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansNKo-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansNKo-Regular.ttf + Typefaces: + NotoSansNKo-Regular: + Full Name: Noto Sans NKo Regular + Family: Noto Sans NKo + Style: Обычный + Version: Version 2.004 + Vendor: Monotype Imaging Inc. + Unique Name: 2.004;GOOG;NotoSansNKo-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/nko) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi MN.ttc + Typefaces: + GurmukhiMN: + Full Name: Gurmukhi MN + Family: Gurmukhi MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi MN; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GurmukhiMN-Bold: + Full Name: Gurmukhi MN Bold + Family: Gurmukhi MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi MN Bold; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GeezaPro.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/GeezaPro.ttc + Typefaces: + GeezaPro-Bold: + Full Name: Geeza Pro Bold + Family: Geeza Pro + Style: Жирный + Version: 20.2d1e1 + Unique Name: Geeza Pro Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GeezaPro: + Full Name: Geeza Pro Regular + Family: Geeza Pro + Style: Обычный + Version: 20.2d1e1 + Unique Name: Geeza Pro Regular; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface: + Full Name: .Geeza Pro Interface Regular + Family: .Geeza Pro Interface + Style: Обычный + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Regular; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface-Light: + Full Name: .Geeza Pro Interface Light + Family: .Geeza Pro Interface + Style: Легкий + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Light; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface-Bold: + Full Name: .Geeza Pro Interface Bold + Family: .Geeza Pro Interface + Style: Жирный + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProPUA: + Full Name: .Geeza Pro PUA + Family: .Geeza Pro PUA + Style: Обычный + Version: 20.2d1e1 + Unique Name: .Geeza Pro PUA; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProPUA-Bold: + Full Name: .Geeza Pro PUA Bold + Family: .Geeza Pro PUA + Style: Жирный + Version: 20.2d1e1 + Unique Name: .Geeza Pro PUA Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi.ttf + Typefaces: + MonotypeGurmukhi: + Full Name: Gurmukhi MT + Family: Gurmukhi MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Gurmukhi MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd. 1996. All Rights reserved. + Trademark: Monotype Gurmukhi is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hei.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/62032b9b64a0e3a9121c50aeb2ed794e3e2c201f.asset/AssetData/Hei.ttf + Typefaces: + SIL-Hei-Med-Jian: + Full Name: Hei Regular + Family: Hei + Style: Обычный + Version: 13.0d1e4 + Unique Name: Hei Regular; 13.0d1e4; 2017-06-14 + Copyright: ˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995 + Trademark: Shanghai Ikarus Ltd./URW Software & Type GmbH + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Bold.otf + Typefaces: + SFCompactDisplay-Bold: + Full Name: SF Compact Display Bold + Family: SF Compact Display + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mishafi Gold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mishafi Gold.ttf + Typefaces: + DiwanMishafiGold: + Full Name: Mishafi Gold Regular + Family: Mishafi Gold + Style: Обычный + Version: 13.0d2e1 + Unique Name: Mishafi Gold Regular; 13.0d2e1; 2017-06-28 + Copyright: © 1998-2000 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-HeavyItalic.otf + Typefaces: + SFProText-HeavyItalic: + Full Name: SF Pro Text Heavy Italic + Family: SF Pro Text + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Shree714.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Shree714.ttc + Typefaces: + ShreeDev0714-Bold: + Full Name: Shree Devanagari 714 Bold + Family: Shree Devanagari 714 + Style: Жирный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Bold; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714-BoldItalic: + Full Name: Shree Devanagari 714 Bold Italic + Family: Shree Devanagari 714 + Style: Жирный курсивный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Bold Italic; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714: + Full Name: Shree Devanagari 714 + Family: Shree Devanagari 714 + Style: Обычный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714-Italic: + Full Name: Shree Devanagari 714 Italic + Family: Shree Devanagari 714 + Style: Курсивный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Italic; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hiragino Sans GB.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Hiragino Sans GB.ttc + Typefaces: + HiraginoSansGB-W3: + Full Name: Hiragino Sans GB W3 + Family: Hiragino Sans GB + Style: W3 + Version: 13.0d2e3 + Vendor: Dainippon Screen Mfg. Co., Ltd. + Unique Name: Hiragino Sans GB W3; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraginoSansGB-W6: + Full Name: Hiragino Sans GB W6 + Family: Hiragino Sans GB + Style: W6 + Version: 13.0d2e3 + Vendor: Dainippon Screen Mfg. Co., Ltd. + Unique Name: Hiragino Sans GB W6; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraginoSansGBInterface-W3: + Full Name: .Hiragino Sans GB Interface W3 + Family: .Hiragino Sans GB Interface + Style: W3 + Version: 13.0d2e3 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Sans GB Interface W3; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraginoSansGBInterface-W6: + Full Name: .Hiragino Sans GB Interface W6 + Family: .Hiragino Sans GB Interface + Style: W6 + Version: 13.0d2e3 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Sans GB Interface W6; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AdelleSans.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7dbafe7918d68a94eef18bc79c7617198f768e86.asset/AssetData/AdelleSans.ttc + Typefaces: + AdelleSansDevanagari-Bold: + Full Name: Adelle Sans Devanagari Bold + Family: Adelle Sans Devanagari + Style: Жирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Bold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Thin: + Full Name: Adelle Sans Devanagari Thin + Family: Adelle Sans Devanagari + Style: Тонкий + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Thin; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Extrabold: + Full Name: Adelle Sans Devanagari Extrabold + Family: Adelle Sans Devanagari + Style: Сверхжирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Extrabold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Light: + Full Name: Adelle Sans Devanagari Light + Family: Adelle Sans Devanagari + Style: Легкий + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Light; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Heavy: + Full Name: Adelle Sans Devanagari Heavy + Family: Adelle Sans Devanagari + Style: Тяжелый + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Heavy; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Regular: + Full Name: Adelle Sans Devanagari Regular + Family: Adelle Sans Devanagari + Style: Обычный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Regular; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Semibold: + Full Name: Adelle Sans Devanagari Semibold + Family: Adelle Sans Devanagari + Style: Полужирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Semibold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Thin.otf + Typefaces: + SFProRounded-Thin: + Full Name: SF Pro Rounded Thin + Family: SF Pro Rounded + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-ThinItalic.otf + Typefaces: + SFProDisplay-ThinItalic: + Full Name: SF Pro Display Thin Italic + Family: SF Pro Display + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + K2D.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7722fac06d2ccff23ed22b9ab921460b835e3e8c.asset/AssetData/K2D.ttc + Typefaces: + K2D-Bold: + Full Name: K2D Bold + Family: K2D + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Light: + Full Name: K2D Light + Family: K2D + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-SemiBoldItalic: + Full Name: K2D SemiBold Italic + Family: K2D + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-SemiBold: + Full Name: K2D SemiBold + Family: K2D + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraLight: + Full Name: K2D ExtraLight + Family: K2D + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Regular: + Full Name: K2D Regular + Family: K2D + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraBold: + Full Name: K2D ExtraBold + Family: K2D + Style: Сверхжирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-LightItalic: + Full Name: K2D Light Italic + Family: K2D + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Medium: + Full Name: K2D Medium + Family: K2D + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-MediumItalic: + Full Name: K2D Medium Italic + Family: K2D + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ThinItalic: + Full Name: K2D Thin Italic + Family: K2D + Style: Тонкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ThinItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Thin: + Full Name: K2D Thin + Family: K2D + Style: Тонкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Thin + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraBoldItalic: + Full Name: K2D ExtraBold Italic + Family: K2D + Style: Сверхжирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Italic: + Full Name: K2D Italic + Family: K2D + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-BoldItalic: + Full Name: K2D Bold Italic + Family: K2D + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraLightItalic: + Full Name: K2D ExtraLight Italic + Family: K2D + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman.ttf + Typefaces: + TimesNewRomanPSMT: + Full Name: Times New Roman + Family: Times New Roman + Style: Обычный + Version: Version 5.01.4x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Regular:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaTamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d9994beb5bda5918100f3fc1623d687c7f7814ec.asset/AssetData/SamaTamil.ttc + Typefaces: + SamaTamil-Medium: + Full Name: Sama Tamil Medium + Family: Sama Tamil + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Medium; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-SemiBold: + Full Name: Sama Tamil SemiBold + Family: Sama Tamil + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil SemiBold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Regular: + Full Name: Sama Tamil Regular + Family: Sama Tamil + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Regular; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-ExtraBold: + Full Name: Sama Tamil ExtraBold + Family: Sama Tamil + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Book: + Full Name: Sama Tamil Book + Family: Sama Tamil + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Book; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Bold: + Full Name: Sama Tamil Bold + Family: Sama Tamil + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Bold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Medium.otf + Typefaces: + SFProRounded-Medium: + Full Name: SF Pro Rounded Medium + Family: SF Pro Rounded + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleSDGothicNeo.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/AppleSDGothicNeo.ttc + Typefaces: + AppleSDGothicNeo-SemiBold: + Full Name: Apple SD Gothic Neo SemiBold + Family: Apple SD Gothic Neo + Style: Полужирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo SemiBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Regular: + Full Name: Apple SD Gothic Neo Regular + Family: Apple SD Gothic Neo + Style: Обычный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Regular; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Thin: + Full Name: Apple SD Gothic Neo Thin + Family: Apple SD Gothic Neo + Style: Тонкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Thin; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-UltraLight: + Full Name: Apple SD Gothic Neo UltraLight + Family: Apple SD Gothic Neo + Style: Ультралегкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo UltraLight; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-ExtraBold: + Full Name: Apple SD Gothic Neo ExtraBold + Family: Apple SD Gothic Neo + Style: Сверхжирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo ExtraBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Heavy: + Full Name: Apple SD Gothic Neo Heavy + Family: Apple SD Gothic Neo + Style: Тяжелый + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Heavy; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Light: + Full Name: Apple SD Gothic Neo Light + Family: Apple SD Gothic Neo + Style: Легкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Light; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Medium: + Full Name: Apple SD Gothic Neo Medium + Family: Apple SD Gothic Neo + Style: Средний + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Medium; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Bold: + Full Name: Apple SD Gothic Neo Bold + Family: Apple SD Gothic Neo + Style: Жирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Bold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Regular: + Full Name: .Apple SD Gothic NeoI Regular + Family: .Apple SD Gothic NeoI + Style: Обычный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Regular; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Medium: + Full Name: .Apple SD Gothic NeoI Medium + Family: .Apple SD Gothic NeoI + Style: Средний + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Medium; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Light: + Full Name: .Apple SD Gothic NeoI Light + Family: .Apple SD Gothic NeoI + Style: Легкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Light; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-UltraLight: + Full Name: .Apple SD Gothic NeoI UltraLight + Family: .Apple SD Gothic NeoI + Style: Ультралегкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI UltraLight; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Thin: + Full Name: .Apple SD Gothic NeoI Thin + Family: .Apple SD Gothic NeoI + Style: Тонкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Thin; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-SemiBold: + Full Name: .Apple SD Gothic NeoI SemiBold + Family: .Apple SD Gothic NeoI + Style: Полужирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI SemiBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Bold: + Full Name: .Apple SD Gothic NeoI Bold + Family: .Apple SD Gothic NeoI + Style: Жирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Bold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-ExtraBold: + Full Name: .Apple SD Gothic NeoI ExtraBold + Family: .Apple SD Gothic NeoI + Style: Сверхжирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI ExtraBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Heavy: + Full Name: .Apple SD Gothic NeoI Heavy + Family: .Apple SD Gothic NeoI + Style: Тяжелый + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Heavy; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lantinghei.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f7f6b250e97c182e68ac53a2b359ec44548878b9.asset/AssetData/Lantinghei.ttc + Typefaces: + FZLTXHB--B51-0: + Full Name: Lantinghei TC Extralight + Family: Lantinghei TC + Style: Сверхлегкий + Version: 13.0d2e1 + Unique Name: Lantinghei TC Extralight; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTTHK--GBK1-0: + Full Name: Lantinghei SC Heavy + Family: Lantinghei SC + Style: Тяжелый + Version: 13.0d2e1 + Unique Name: Lantinghei SC Heavy; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTZHK--GBK1-0: + Full Name: Lantinghei SC Demibold + Family: Lantinghei SC + Style: Полужирный + Version: 13.0d2e1 + Unique Name: Lantinghei SC Demibold; 13.0d2e1; 2017-06-30 + Copyright: © 2009, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTTHB--B51-0: + Full Name: Lantinghei TC Heavy + Family: Lantinghei TC + Style: Тяжелый + Version: 13.0d2e1 + Unique Name: Lantinghei TC Heavy; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTZHB--B51-0: + Full Name: Lantinghei TC Demibold + Family: Lantinghei TC + Style: Полужирный + Version: 13.0d2e1 + Unique Name: Lantinghei TC Demibold; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTXHK--GBK1-0: + Full Name: Lantinghei SC Extralight + Family: Lantinghei SC + Style: Сверхлегкий + Version: 13.0d2e1 + Unique Name: Lantinghei SC Extralight; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + WawaTC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3d7c99b85a518ffb479044c11185e47744b6448d.asset/AssetData/WawaTC-Regular.otf + Typefaces: + DFWaWaTC-W5: + Full Name: Wawati TC Regular + Family: Wawati TC + Style: Обычный + Version: 15.0d1e3 + Unique Name: Wawati TC Regular; 15.0d1e3; 2019-06-24 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. DynaComware Taiwan Inc. All rights reserved. + Trademark: DFWaWaTC Std W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhaiGujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e7c3a658f55aa2afc1a5d1f7b715cc6bcf997d2b.asset/AssetData/BalooBhaiGujarati.ttc + Typefaces: + BalooBhai2-Bold: + Full Name: Baloo Bhai 2 Bold + Family: Baloo Bhai 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-Regular: + Full Name: Baloo Bhai 2 Regular + Family: Baloo Bhai 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-Medium: + Full Name: Baloo Bhai 2 Medium + Family: Baloo Bhai 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-SemiBold: + Full Name: Baloo Bhai 2 SemiBold + Family: Baloo Bhai 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-ExtraBold: + Full Name: Baloo Bhai 2 ExtraBold + Family: Baloo Bhai 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Chalkboard.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Chalkboard.ttc + Typefaces: + Chalkboard-Bold: + Full Name: Chalkboard Bold + Family: Chalkboard + Style: Жирный + Version: 13.0d1e2 + Unique Name: Chalkboard Bold; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-04 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Chalkboard: + Full Name: Chalkboard + Family: Chalkboard + Style: Обычный + Version: 13.0d1e2 + Unique Name: Chalkboard; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-04 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W6.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W6.ttc + Typefaces: + HiraginoSans-W6: + Full Name: Hiragino Sans W6 + Family: Hiragino Sans + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W6; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W6: + Full Name: .Hiragino Kaku Gothic Interface W6 + Family: .Hiragino Kaku Gothic Interface + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W6; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFHebrew.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFHebrew.ttf + Typefaces: + .SFHebrew-Regular: + Full Name: .SF Hebrew Обычный + Family: .SF Hebrew + Style: Обычный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Medium: + Full Name: .SF Hebrew Средний + Family: .SF Hebrew + Style: Средний + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Light: + Full Name: .SF Hebrew Легкий + Family: .SF Hebrew + Style: Легкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Thin: + Full Name: .SF Hebrew Тонкий + Family: .SF Hebrew + Style: Тонкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Ultralight: + Full Name: .SF Hebrew Ультралегкий + Family: .SF Hebrew + Style: Ультралегкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Semibold: + Full Name: .SF Hebrew Полужирный + Family: .SF Hebrew + Style: Полужирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Bold: + Full Name: .SF Hebrew Жирный + Family: .SF Hebrew + Style: Жирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Heavy: + Full Name: .SF Hebrew Тяжелый + Family: .SF Hebrew + Style: Тяжелый + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Black: + Full Name: .SF Hebrew Черный + Family: .SF Hebrew + Style: Черный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Keyboard.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Keyboard.ttf + Typefaces: + .Keyboard: + Full Name: .Keyboard + Family: .Keyboard + Style: Обычный + Version: 13.0d2e4 + Unique Name: .Keyboard; 13.0d2e4; 2017-07-26 + Copyright: Copyright © 1995-2007 by Apple Inc. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Waseem.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Waseem.ttc + Typefaces: + Waseem: + Full Name: Waseem Regular + Family: Waseem + Style: Обычный + Version: 13.0d1e2 + Unique Name: Waseem Regular; 13.0d1e2; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + WaseemLight: + Full Name: Waseem Light + Family: Waseem + Style: Легкий + Version: 13.0d1e2 + Unique Name: Waseem Light; 13.0d1e2; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Thin.otf + Typefaces: + SFProDisplay-Thin: + Full Name: SF Pro Display Thin + Family: SF Pro Display + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Khmer MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Khmer MN.ttc + Typefaces: + KhmerMN: + Full Name: Khmer MN + Family: Khmer MN + Style: Обычный + Version: 14.0d1e1 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer MN; 14.0d1e1; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KhmerMN-Bold: + Full Name: Khmer MN Bold + Family: Khmer MN + Style: Жирный + Version: 14.0d1e1 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer MN Bold; 14.0d1e1; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaKannada.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/810ba821bae9ea3677944089ed67a726a382c132.asset/AssetData/LavaKannada.ttc + Typefaces: + LavaKannada-Regular: + Full Name: Lava Kannada Regular + Family: Lava Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Regular; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Bold: + Full Name: Lava Kannada Bold + Family: Lava Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Bold; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Heavy: + Full Name: Lava Kannada Heavy + Family: Lava Kannada + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Heavy; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Medium: + Full Name: Lava Kannada Medium + Family: Lava Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Medium; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Niramit.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/34fead973f6b219177a77839ad8f341551fc495f.asset/AssetData/Niramit.ttc + Typefaces: + Niramit-Light: + Full Name: Niramit Light + Family: Niramit + Style: Легкий + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Italic: + Full Name: Niramit Italic + Family: Niramit + Style: Курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-SemiBold: + Full Name: Niramit SemiBold + Family: Niramit + Style: Полужирный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Bold: + Full Name: Niramit Bold + Family: Niramit + Style: Жирный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-BoldItalic: + Full Name: Niramit Bold Italic + Family: Niramit + Style: Жирный курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-ExtraLight: + Full Name: Niramit ExtraLight + Family: Niramit + Style: Сверхлегкий + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-LightItalic: + Full Name: Niramit Light Italic + Family: Niramit + Style: Легкий курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-SemiBoldItalic: + Full Name: Niramit SemiBold Italic + Family: Niramit + Style: Полужирный курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-MediumItalic: + Full Name: Niramit Medium Italic + Family: Niramit + Style: Средний курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-ExtraLightItalic: + Full Name: Niramit ExtraLight Italic + Family: Niramit + Style: Сверхлегкий курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Regular: + Full Name: Niramit Regular + Family: Niramit + Style: Обычный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Medium: + Full Name: Niramit Medium + Family: Niramit + Style: Средний + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Symbol.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Symbol.ttf + Typefaces: + Symbol: + Full Name: Symbol + Family: Symbol + Style: Обычный + Version: 13.0d2e2 + Unique Name: Symbol; 13.0d2e2; 2017-06-09 + Copyright: © 1990-99 Apple Computer Inc. © 1990-91 Bitstream Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + WawaSC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/18189590ed3a5f46cef20ed4d1cec2611dca13ff.asset/AssetData/WawaSC-Regular.otf + Typefaces: + DFWaWaSC-W5: + Full Name: Wawati SC Regular + Family: Wawati SC + Style: Обычный + Version: 13.0d1e2 + Unique Name: Wawati SC Regular; 13.0d1e2; 2017-06-09 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: DFWaWaGB Std W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/86e04ad2883186f533bf63f31040f8239ca3e0aa.asset/AssetData/TiroTelugu.ttc + Typefaces: + TiroTelugu: + Full Name: Tiro Telugu + Family: Tiro Telugu + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Telugu; 20.0d1e2; 2024-07-05 + Designer: Telugu: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Telugu is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroTelugu-Italic: + Full Name: Tiro Telugu Italic + Family: Tiro Telugu + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Telugu Italic; 20.0d1e2; 2024-07-05 + Designer: Telugu: John Hudson & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Telugu is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Thin.otf + Typefaces: + SFCompactText-Thin: + Full Name: SF Compact Text Thin + Family: SF Compact Text + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TsukushiAMaruGothic.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d9a8a6ae726910080d90232eaf0edb06da712758.asset/AssetData/TsukushiAMaruGothic.ttc + Typefaces: + TsukuARdGothic-Bold: + Full Name: Tsukushi A Round Gothic Bold + Family: Tsukushi A Round Gothic + Style: Жирный + Version: 15.0d1e1 + Unique Name: Tsukushi A Round Gothic Bold; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi A Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TsukuARdGothic-Regular: + Full Name: Tsukushi A Round Gothic Regular + Family: Tsukushi A Round Gothic + Style: Обычный + Version: 15.0d1e1 + Unique Name: Tsukushi A Round Gothic Regular; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi A Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Al Nile.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Al Nile.ttc + Typefaces: + AlNile-Bold: + Full Name: Al Nile Bold + Family: Al Nile + Style: Жирный + Version: 13.0d2e2 + Unique Name: Al Nile Bold; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AlNile: + Full Name: Al Nile + Family: Al Nile + Style: Обычный + Version: 13.0d2e2 + Unique Name: Al Nile; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlNilePUA: + Full Name: .Al Nile PUA + Family: .Al Nile PUA + Style: Обычный + Version: 13.0d2e2 + Unique Name: .Al Nile PUA; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlNilePUA-Bold: + Full Name: .Al Nile PUA Bold + Family: .Al Nile PUA + Style: Жирный + Version: 13.0d2e2 + Unique Name: .Al Nile PUA Bold; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Regular.otf + Typefaces: + SFProDisplay-Regular: + Full Name: SF Pro Display Regular + Family: SF Pro Display + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Modak-Devanagari.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/929f76f5b8520c52c0f1ff7911b88d29860f8c49.asset/AssetData/Modak-Devanagari.ttf + Typefaces: + Modak: + Full Name: Modak + Family: Modak + Style: Обычный + Version: 20.0d1e2 (1.155) + Vendor: Ek Type + Unique Name: Modak; 20.0d1e2 (1.155); 2024-07-05 + Designer: Sarang Kulkarni, Maithili Shingre, Noopur Datye + Copyright: Copyright (c) 2014, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Ultralight.otf + Typefaces: + SFProRounded-Ultralight: + Full Name: SF Pro Rounded Ultralight + Family: SF Pro Rounded + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Beirut.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Beirut.ttc + Typefaces: + Beirut: + Full Name: Beirut Regular + Family: Beirut + Style: Обычный + Version: 13.0d1e6 + Unique Name: Beirut Regular; 13.0d1e6; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .BeirutPUA: + Full Name: .Beirut PUA + Family: .Beirut PUA + Style: Обычный + Version: 13.0d1e6 + Unique Name: .Beirut PUA; 13.0d1e6; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Italic.ttf + Typefaces: + ArialNarrow-Italic: + Full Name: Arial Narrow Курсив + Family: Arial Narrow + Style: Курсив + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Italic : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DecoTypeNaskh.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DecoTypeNaskh.ttc + Typefaces: + DecoTypeNaskh: + Full Name: DecoType Naskh Regular + Family: DecoType Naskh + Style: Обычный + Version: 14.0d0e1 + Unique Name: DecoType Naskh Regular; 14.0d0e1; 2017-11-14 + Copyright: DecoType Professional Naskh Family of Fonts. Copyright 1992-2007 DecoType. All Rights Reserved. Created by Thomas Milo. + Trademark: DecoType Naskh is a trademark of DecoType. + Description: Copyright (c) 2007 by Thomas Milo. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNaskhPUA: + Full Name: .DecoType Naskh PUA + Family: .DecoType Naskh PUA + Style: Обычный + Version: 14.0d0e1 + Unique Name: .DecoType Naskh PUA; 14.0d0e1; 2017-11-14 + Copyright: DecoType Professional Naskh Family of Fonts. Copyright 1992-2007 DecoType. All Rights Reserved. Created by Thomas Milo. + Trademark: .DecoType Naskh PUA is a trademark of DecoType. + Description: Copyright (c) 2007 by Thomas Milo. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PingFangUI.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/PrivateFrameworks/FontServices.framework/Resources/Reserved/PingFangUI.ttc + Typefaces: + PingFangHK-Light: + Full Name: PingFang HK + Family: PingFang HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Thin: + Full Name: PingFang SC + Family: PingFang SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Light: + Full Name: PingFang SC + Family: PingFang SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Thin: + Full Name: PingFang TC + Family: PingFang TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Medium: + Full Name: PingFang SC + Family: PingFang SC + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Semibold: + Full Name: PingFang TC + Family: PingFang TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Semibold: + Full Name: PingFang SC + Family: PingFang SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Thin: + Full Name: PingFang HK + Family: PingFang HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Semibold: + Full Name: PingFang MO + Family: PingFang MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Ultralight: + Full Name: PingFang HK + Family: PingFang HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Medium: + Full Name: PingFang MO + Family: PingFang MO + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Ultralight: + Full Name: PingFang SC + Family: PingFang SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Regular: + Full Name: PingFang MO + Family: PingFang MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Thin: + Full Name: PingFang MO + Family: PingFang MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Medium: + Full Name: PingFang TC + Family: PingFang TC + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Light: + Full Name: PingFang MO + Family: PingFang MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Regular: + Full Name: PingFang SC + Family: PingFang SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Semibold: + Full Name: PingFang HK + Family: PingFang HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Ultralight: + Full Name: PingFang TC + Family: PingFang TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Medium: + Full Name: PingFang HK + Family: PingFang HK + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Regular: + Full Name: PingFang TC + Family: PingFang TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Light: + Full Name: PingFang TC + Family: PingFang TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Regular: + Full Name: PingFang HK + Family: PingFang HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Ultralight: + Full Name: PingFang MO + Family: PingFang MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Regular: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Medium: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Light: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Thin: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Ultralight: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Semibold: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Bold: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Heavy: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Regular: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Medium: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Light: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Thin: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Ultralight: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Semibold: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Bold: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Heavy: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Regular: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Medium: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Light: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Thin: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Ultralight: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Semibold: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Bold: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Heavy: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Regular: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Medium: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Light: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Thin: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Ultralight: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Semibold: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Bold: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Heavy: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Regular: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Default: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Medium: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Light: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Thin: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Ultralight: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Semibold: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Bold: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Heavy: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Regular: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Default: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Medium: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Light: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Thin: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Ultralight: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Semibold: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Bold: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Heavy: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Regular: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Default: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Medium: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Light: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Thin: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Ultralight: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Semibold: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Bold: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Heavy: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Regular: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Default: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Medium: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Light: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Thin: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Ultralight: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Semibold: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Bold: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Heavy: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Regular: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Default: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Medium: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Light: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Thin: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Ultralight: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Semibold: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Bold: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Heavy: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Regular: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Default: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Medium: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Light: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Thin: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Ultralight: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Semibold: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Bold: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Heavy: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Regular: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Default: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Medium: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Light: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Thin: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Ultralight: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Semibold: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Bold: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Heavy: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Regular: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Default: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Medium: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Light: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Thin: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Ultralight: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Semibold: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Bold: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Heavy: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Regular: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Default: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Medium: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Light: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Thin: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Ultralight: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Semibold: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Bold: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Heavy: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Regular: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Default: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Medium: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Light: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Thin: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Ultralight: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Semibold: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Bold: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Heavy: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Regular: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Default: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Medium: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Light: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Thin: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Ultralight: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Semibold: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Bold: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Heavy: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Regular: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Default: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Medium: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Light: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Thin: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Ultralight: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Semibold: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Bold: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Heavy: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Regular: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Default: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Medium: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Light: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Thin: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Ultralight: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Semibold: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Bold: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Heavy: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Regular: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Default: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Medium: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Light: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Thin: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Ultralight: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Semibold: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Bold: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Heavy: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Regular: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Default: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Medium: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Light: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Thin: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Ultralight: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Semibold: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Bold: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Heavy: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Regular: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Default: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Medium: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Light: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Thin: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Ultralight: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Semibold: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Bold: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Heavy: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Regular: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Medium: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Light: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Thin: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Ultralight: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Semibold: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Bold: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Heavy: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Regular: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Medium: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Light: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Thin: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Ultralight: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Semibold: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Bold: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Heavy: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Regular: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Medium: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Light: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Thin: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Ultralight: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Semibold: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Bold: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Heavy: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Regular: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Medium: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Light: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Thin: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Ultralight: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Semibold: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Bold: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Heavy: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia.ttf + Typefaces: + Georgia: + Full Name: Georgia + Family: Georgia + Style: Обычный + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charmonman.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e5b038333b21d35a7cab9653e3551c464452f70b.asset/AssetData/Charmonman.ttc + Typefaces: + Charmonman-Regular: + Full Name: Charmonman Regular + Family: Charmonman + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Charmonman-Regular + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Charmonman Project Authors (https://github.com/cadsondemak/Charmonman) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charmonman-Bold: + Full Name: Charmonman Bold + Family: Charmonman + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Charmonman-Bold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Charmonman Project Authors (https://github.com/cadsondemak/Charmonman) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Shobhika-Devanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/33d2d6330fcf6ef69138365cdbff55cda9338d25.asset/AssetData/Shobhika-Devanagari.ttc + Typefaces: + Shobhika-Bold: + Full Name: Shobhika Bold + Family: Shobhika + Style: Жирный + Version: 20.0d1e2 (1.040) + Vendor: IIT Bombay + Unique Name: Shobhika Bold; 20.0d1e2 (1.040); 2024-07-05 + Designer: IIT Bombay + Copyright: Copyright (c) 2016, Indian Institute of Technology Bombay. All rights reserved. + Trademark: Shobhika is copyrighted by IIT Bombay + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Shobhika-Regular: + Full Name: Shobhika Regular + Family: Shobhika + Style: Обычный + Version: 20.0d1e2 (1.040) + Vendor: IIT Bombay + Unique Name: Shobhika Regular; 20.0d1e2 (1.040); 2024-07-05 + Designer: IIT Bombay + Copyright: Copyright (c) 2016, Indian Institute of Technology Bombay. All rights reserved. + Trademark: Shobhika is copyrighted by IIT Bombay + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STFANGSO.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1821952872c81043711aab6910052b65da8edf2c.asset/AssetData/STFANGSO.ttf + Typefaces: + STFangsong: + Full Name: STFangsong + Family: STFangsong + Style: Обычный + Version: 17.0d1e4 + Unique Name: STFangsong; 17.0d1e4; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STFangsong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Italic.ttf + Typefaces: + SFPro-MediumItalic: + Full Name: SF Pro Средний курсивный + Family: SF Pro + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-BlackItalic: + Full Name: SF Pro Черный курсивный + Family: SF Pro + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ThinItalic: + Full Name: SF Pro Тонкий курсивный + Family: SF Pro + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-RegularItalic: + Full Name: SF Pro Обычный курсивный + Family: SF Pro + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-LightItalic: + Full Name: SF Pro Легкий курсивный + Family: SF Pro + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-SemiboldItalic: + Full Name: SF Pro Полужирный курсивный + Family: SF Pro + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-BoldItalic: + Full Name: SF Pro Жирный курсивный + Family: SF Pro + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-HeavyItalic: + Full Name: SF Pro Тяжелый курсивный + Family: SF Pro + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-UltralightItalic: + Full Name: SF Pro Ультралегкий курсивный + Family: SF Pro + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooTammuduTelugu.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d205d9bccc1eea9c4867b7349d079f2f0b8f7e51.asset/AssetData/BalooTammuduTelugu.ttc + Typefaces: + BalooTammudu2-Bold: + Full Name: Baloo Tammudu 2 Bold + Family: Baloo Tammudu 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-SemiBold: + Full Name: Baloo Tammudu 2 SemiBold + Family: Baloo Tammudu 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-Medium: + Full Name: Baloo Tammudu 2 Medium + Family: Baloo Tammudu 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-ExtraBold: + Full Name: Baloo Tammudu 2 ExtraBold + Family: Baloo Tammudu 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-Regular: + Full Name: Baloo Tammudu 2 Regular + Family: Baloo Tammudu 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroMarathi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3b8143460bd19d854cbc733699697b0e2182e28e.asset/AssetData/TiroMarathi.ttc + Typefaces: + TiroDevaMarathi-Italic: + Full Name: Tiro Devanagari Marathi Italic + Family: Tiro Devanagari Marathi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Marathi Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Marathi and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaMarathi: + Full Name: Tiro Devanagari Marathi + Family: Tiro Devanagari Marathi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Marathi; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Marathi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + JainiDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4301d243b614c4710741b1fcb274605ee1c5f801.asset/AssetData/JainiDevanagari-Regular.ttf + Typefaces: + Jaini: + Full Name: Jaini + Family: Jaini + Style: Обычный + Version: 20.0d1e2 (1.001) + Vendor: Ek Type + Unique Name: Jaini; 20.0d1e2 (1.001); 2024-07-08 + Designer: Girish Dalvi, Maithili Shingre + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArmenian.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArmenian.ttf + Typefaces: + .SFArmenian-Regular: + Full Name: .SF Armenian Обычный + Family: .SF Armenian + Style: Обычный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Medium: + Full Name: .SF Armenian Средний + Family: .SF Armenian + Style: Средний + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Light: + Full Name: .SF Armenian Легкий + Family: .SF Armenian + Style: Легкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Thin: + Full Name: .SF Armenian Тонкий + Family: .SF Armenian + Style: Тонкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Ultralight: + Full Name: .SF Armenian Ультралегкий + Family: .SF Armenian + Style: Ультралегкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Semibold: + Full Name: .SF Armenian Полужирный + Family: .SF Armenian + Style: Полужирный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Bold: + Full Name: .SF Armenian Жирный + Family: .SF Armenian + Style: Жирный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Heavy: + Full Name: .SF Armenian Тяжелый + Family: .SF Armenian + Style: Тяжелый + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Black: + Full Name: .SF Armenian Черный + Family: .SF Armenian + Style: Черный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-BoldItalic.otf + Typefaces: + SFCompactText-BoldItalic: + Full Name: SF Compact Text Bold Italic + Family: SF Compact Text + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArialHB.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ArialHB.ttc + Typefaces: + ArialHebrewScholar-Light: + Full Name: Arial Hebrew Scholar Light + Family: Arial Hebrew Scholar + Style: Светлый + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrewScholar-Bold: + Full Name: Arial Hebrew Scholar Bold + Family: Arial Hebrew Scholar + Style: Жирный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrewScholar: + Full Name: Arial Hebrew Scholar + Family: Arial Hebrew Scholar + Style: Обычный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar; 13.0d1e1; 2017-06-17 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Arial ® Trademark of The Monotype Corporation registered in the US Pat & TM off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew-Light: + Full Name: Arial Hebrew Light + Family: Arial Hebrew + Style: Светлый + Version: 13.0d1e1 + Unique Name: Arial Hebrew Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew-Bold: + Full Name: Arial Hebrew Bold + Family: Arial Hebrew + Style: Жирный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew: + Full Name: Arial Hebrew + Family: Arial Hebrew + Style: Обычный + Version: 13.0d1e1 + Unique Name: Arial Hebrew; 13.0d1e1; 2017-06-17 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Arial ® Trademark of The Monotype Corporation registered in the US Pat & TM off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface: + Full Name: .Arial Hebrew Desk Interface + Family: .Arial Hebrew Desk Interface + Style: Обычный + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface; 13.0d1e1; 2017-06-17 + Copyright: Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved. + Trademark: Arial‭ ‬‮)‬‭ ‬Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface-Light: + Full Name: ‭.‬Arial Hebrew Desk Interface Light + Family: ‭.‬Arial Hebrew Desk Interface + Style: Легкий + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial‭ ‬‮)‬‭ ‬is a Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM Off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface-Bold: + Full Name: .Arial Hebrew Desk Interface Bold + Family: .Arial Hebrew Desk Interface + Style: Жирный + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright © Data 1993 Monotype Typography ltd. / Type Solutions Inc. 1993 All rights reserved. + Trademark: Arial‭ ‬‮)‬‭ ‬is a Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM Off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-UltralightItalic.otf + Typefaces: + SFCompactText-UltralightItalic: + Full Name: SF Compact Text Ultralight Italic + Family: SF Compact Text + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kaiti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54a2ad3dac6cac875ad675d7d273dc425010a877.asset/AssetData/Kaiti.ttc + Typefaces: + STKaitiSC-Regular: + Full Name: Kaiti SC Regular + Family: Kaiti SC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Kaiti SC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Regular: + Full Name: Kaiti TC Regular + Family: Kaiti TC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Kaiti TC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Black: + Full Name: Kaiti TC Black + Family: Kaiti TC + Style: Черный + Version: 17.0d1e2 + Unique Name: Kaiti TC Black; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Bold: + Full Name: Kaiti TC Bold + Family: Kaiti TC + Style: Жирный + Version: 17.0d1e2 + Unique Name: Kaiti TC Bold; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiSC-Bold: + Full Name: Kaiti SC Bold + Family: Kaiti SC + Style: Жирный + Version: 17.0d1e2 + Unique Name: Kaiti SC Bold; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiSC-Black: + Full Name: Kaiti SC Black + Family: Kaiti SC + Style: Черный + Version: 17.0d1e2 + Unique Name: Kaiti SC Black; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaiti: + Full Name: STKaiti + Family: STKaiti + Style: Обычный + Version: 17.0d1e2 + Unique Name: STKaiti; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STKaiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Klee.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f110a45f1759f86c645cfd2f47baba57aa50056e.asset/AssetData/Klee.ttc + Typefaces: + Klee-Demibold: + Full Name: Klee Demibold + Family: Klee + Style: Полужирный + Version: 15.0d1e1 + Unique Name: Klee Demibold; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: KleePro is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Klee-Medium: + Full Name: Klee Medium + Family: Klee + Style: Средний + Version: 15.0d1e1 + Unique Name: Klee Medium; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: KleePro is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaMalar-Tamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/84dc35c2215942fdbb9d6f3154ba0131f833809f.asset/AssetData/MuktaMalar-Tamil.ttc + Typefaces: + MuktaMalar-Light: + Full Name: Mukta Malar Light + Family: Mukta Malar + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-SemiBold: + Full Name: Mukta Malar SemiBold + Family: Mukta Malar + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-ExtraLight: + Full Name: Mukta Malar ExtraLight + Family: Mukta Malar + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-ExtraBold: + Full Name: Mukta Malar ExtraBold + Family: Mukta Malar + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Regular: + Full Name: Mukta Malar Regular + Family: Mukta Malar + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Bold: + Full Name: Mukta Malar Bold + Family: Mukta Malar + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Medium: + Full Name: Mukta Malar Medium + Family: Mukta Malar + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNS.ttf + Typefaces: + .SFNS-Regular: + Full Name: Системный шрифт Обычный + Family: Системный шрифт + Style: Обычный + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG1: + Full Name: Системный шрифт Regular G1 + Family: Системный шрифт + Style: Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG2: + Full Name: Системный шрифт Regular G2 + Family: Системный шрифт + Style: Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG3: + Full Name: Системный шрифт Regular G3 + Family: Системный шрифт + Style: Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG4: + Full Name: Системный шрифт Regular G4 + Family: Системный шрифт + Style: Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegular: + Full Name: Системный шрифт Semi Expanded Regular + Family: Системный шрифт + Style: Semi Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG1: + Full Name: Системный шрифт Semi Expanded Regular G1 + Family: Системный шрифт + Style: Semi Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG2: + Full Name: Системный шрифт Semi Expanded Regular G2 + Family: Системный шрифт + Style: Semi Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG3: + Full Name: Системный шрифт Semi Expanded Regular G3 + Family: Системный шрифт + Style: Semi Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG4: + Full Name: Системный шрифт Semi Expanded Regular G4 + Family: Системный шрифт + Style: Semi Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegular: + Full Name: Системный шрифт Semi Condensed Regular + Family: Системный шрифт + Style: Semi Condensed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG1: + Full Name: Системный шрифт Semi Condensed Regular G1 + Family: Системный шрифт + Style: Semi Condensed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG2: + Full Name: Системный шрифт Semi Condensed Regular G2 + Family: Системный шрифт + Style: Semi Condensed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG3: + Full Name: Системный шрифт Semi Condensed Regular G3 + Family: Системный шрифт + Style: Semi Condensed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG4: + Full Name: Системный шрифт Semi Condensed Regular G4 + Family: Системный шрифт + Style: Semi Condensed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Medium: + Full Name: Системный шрифт Medium + Family: Системный шрифт + Style: Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG1: + Full Name: Системный шрифт Medium G1 + Family: Системный шрифт + Style: Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG2: + Full Name: Системный шрифт Medium G2 + Family: Системный шрифт + Style: Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG3: + Full Name: Системный шрифт Medium G3 + Family: Системный шрифт + Style: Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG4: + Full Name: Системный шрифт Medium G4 + Family: Системный шрифт + Style: Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMedium: + Full Name: Системный шрифт Semi Expanded Medium + Family: Системный шрифт + Style: Semi Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG1: + Full Name: Системный шрифт Semi Expanded Medium G1 + Family: Системный шрифт + Style: Semi Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG2: + Full Name: Системный шрифт Semi Expanded Medium G2 + Family: Системный шрифт + Style: Semi Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG3: + Full Name: Системный шрифт Semi Expanded Medium G3 + Family: Системный шрифт + Style: Semi Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG4: + Full Name: Системный шрифт Semi Expanded Medium G4 + Family: Системный шрифт + Style: Semi Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMedium: + Full Name: Системный шрифт Semi Condensed Medium + Family: Системный шрифт + Style: Semi Condensed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG1: + Full Name: Системный шрифт Semi Condensed Medium G1 + Family: Системный шрифт + Style: Semi Condensed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG2: + Full Name: Системный шрифт Semi Condensed Medium G2 + Family: Системный шрифт + Style: Semi Condensed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG3: + Full Name: Системный шрифт Semi Condensed Medium G3 + Family: Системный шрифт + Style: Semi Condensed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG4: + Full Name: Системный шрифт Semi Condensed Medium G4 + Family: Системный шрифт + Style: Semi Condensed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Light: + Full Name: Системный шрифт Light + Family: Системный шрифт + Style: Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG1: + Full Name: Системный шрифт Light G1 + Family: Системный шрифт + Style: Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG2: + Full Name: Системный шрифт Light G2 + Family: Системный шрифт + Style: Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG3: + Full Name: Системный шрифт Light G3 + Family: Системный шрифт + Style: Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG4: + Full Name: Системный шрифт Light G4 + Family: Системный шрифт + Style: Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLight: + Full Name: Системный шрифт Semi Expanded Light + Family: Системный шрифт + Style: Semi Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG1: + Full Name: Системный шрифт Semi Expanded Light G1 + Family: Системный шрифт + Style: Semi Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG2: + Full Name: Системный шрифт Semi Expanded Light G2 + Family: Системный шрифт + Style: Semi Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG3: + Full Name: Системный шрифт Semi Expanded Light G3 + Family: Системный шрифт + Style: Semi Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG4: + Full Name: Системный шрифт Semi Expanded Light G4 + Family: Системный шрифт + Style: Semi Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLight: + Full Name: Системный шрифт Semi Condensed Light + Family: Системный шрифт + Style: Semi Condensed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG1: + Full Name: Системный шрифт Semi Condensed Light G1 + Family: Системный шрифт + Style: Semi Condensed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG2: + Full Name: Системный шрифт Semi Condensed Light G2 + Family: Системный шрифт + Style: Semi Condensed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG3: + Full Name: Системный шрифт Semi Condensed Light G3 + Family: Системный шрифт + Style: Semi Condensed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG4: + Full Name: Системный шрифт Semi Condensed Light G4 + Family: Системный шрифт + Style: Semi Condensed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Thin: + Full Name: Системный шрифт Thin + Family: Системный шрифт + Style: Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG1: + Full Name: Системный шрифт Thin G1 + Family: Системный шрифт + Style: Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG2: + Full Name: Системный шрифт Thin G2 + Family: Системный шрифт + Style: Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG3: + Full Name: Системный шрифт Thin G3 + Family: Системный шрифт + Style: Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG4: + Full Name: Системный шрифт Thin G4 + Family: Системный шрифт + Style: Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThin: + Full Name: Системный шрифт Semi Expanded Thin + Family: Системный шрифт + Style: Semi Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG1: + Full Name: Системный шрифт Semi Expanded Thin G1 + Family: Системный шрифт + Style: Semi Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG2: + Full Name: Системный шрифт Semi Expanded Thin G2 + Family: Системный шрифт + Style: Semi Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG3: + Full Name: Системный шрифт Semi Expanded Thin G3 + Family: Системный шрифт + Style: Semi Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG4: + Full Name: Системный шрифт Semi Expanded Thin G4 + Family: Системный шрифт + Style: Semi Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThin: + Full Name: Системный шрифт Semi Condensed Thin + Family: Системный шрифт + Style: Semi Condensed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG1: + Full Name: Системный шрифт Semi Condensed Thin G1 + Family: Системный шрифт + Style: Semi Condensed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG2: + Full Name: Системный шрифт Semi Condensed Thin G2 + Family: Системный шрифт + Style: Semi Condensed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG3: + Full Name: Системный шрифт Semi Condensed Thin G3 + Family: Системный шрифт + Style: Semi Condensed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG4: + Full Name: Системный шрифт Semi Condensed Thin G4 + Family: Системный шрифт + Style: Semi Condensed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Ultralight: + Full Name: Системный шрифт Ultralight + Family: Системный шрифт + Style: Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG1: + Full Name: Системный шрифт Ultralight G1 + Family: Системный шрифт + Style: Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG2: + Full Name: Системный шрифт Ultralight G2 + Family: Системный шрифт + Style: Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG3: + Full Name: Системный шрифт Ultralight G3 + Family: Системный шрифт + Style: Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG4: + Full Name: Системный шрифт Ultralight G4 + Family: Системный шрифт + Style: Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralight: + Full Name: Системный шрифт Semi Expanded Ultralight + Family: Системный шрифт + Style: Semi Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG1: + Full Name: Системный шрифт Semi Expanded Ultralight G1 + Family: Системный шрифт + Style: Semi Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG2: + Full Name: Системный шрифт Semi Expanded Ultralight G2 + Family: Системный шрифт + Style: Semi Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG3: + Full Name: Системный шрифт Semi Expanded Ultralight G3 + Family: Системный шрифт + Style: Semi Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG4: + Full Name: Системный шрифт Semi Expanded Ultralight G4 + Family: Системный шрифт + Style: Semi Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralight: + Full Name: Системный шрифт Semi Condensed Ultralight + Family: Системный шрифт + Style: Semi Condensed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG1: + Full Name: Системный шрифт Semi Condensed Ultralight G1 + Family: Системный шрифт + Style: Semi Condensed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG2: + Full Name: Системный шрифт Semi Condensed Ultralight G2 + Family: Системный шрифт + Style: Semi Condensed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG3: + Full Name: Системный шрифт Semi Condensed Ultralight G3 + Family: Системный шрифт + Style: Semi Condensed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG4: + Full Name: Системный шрифт Semi Condensed Ultralight G4 + Family: Системный шрифт + Style: Semi Condensed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Semibold: + Full Name: Системный шрифт Semibold + Family: Системный шрифт + Style: Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG1: + Full Name: Системный шрифт Semibold G1 + Family: Системный шрифт + Style: Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG2: + Full Name: Системный шрифт Semibold G2 + Family: Системный шрифт + Style: Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG3: + Full Name: Системный шрифт Semibold G3 + Family: Системный шрифт + Style: Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG4: + Full Name: Системный шрифт Semibold G4 + Family: Системный шрифт + Style: Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemibold: + Full Name: Системный шрифт Semi Expanded Semibold + Family: Системный шрифт + Style: Semi Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG1: + Full Name: Системный шрифт Semi Expanded Semibold G1 + Family: Системный шрифт + Style: Semi Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG2: + Full Name: Системный шрифт Semi Expanded Semibold G2 + Family: Системный шрифт + Style: Semi Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG3: + Full Name: Системный шрифт Semi Expanded Semibold G3 + Family: Системный шрифт + Style: Semi Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG4: + Full Name: Системный шрифт Semi Expanded Semibold G4 + Family: Системный шрифт + Style: Semi Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemibold: + Full Name: Системный шрифт Semi Condensed Semibold + Family: Системный шрифт + Style: Semi Condensed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG1: + Full Name: Системный шрифт Semi Condensed Semibold G1 + Family: Системный шрифт + Style: Semi Condensed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG2: + Full Name: Системный шрифт Semi Condensed Semibold G2 + Family: Системный шрифт + Style: Semi Condensed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG3: + Full Name: Системный шрифт Semi Condensed Semibold G3 + Family: Системный шрифт + Style: Semi Condensed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG4: + Full Name: Системный шрифт Semi Condensed Semibold G4 + Family: Системный шрифт + Style: Semi Condensed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Bold: + Full Name: Системный шрифт Bold + Family: Системный шрифт + Style: Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG1: + Full Name: Системный шрифт Bold G1 + Family: Системный шрифт + Style: Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG2: + Full Name: Системный шрифт Bold G2 + Family: Системный шрифт + Style: Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG3: + Full Name: Системный шрифт Bold G3 + Family: Системный шрифт + Style: Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG4: + Full Name: Системный шрифт Bold G4 + Family: Системный шрифт + Style: Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBold: + Full Name: Системный шрифт Semi Expanded Bold + Family: Системный шрифт + Style: Semi Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG1: + Full Name: Системный шрифт Semi Expanded Bold G1 + Family: Системный шрифт + Style: Semi Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG2: + Full Name: Системный шрифт Semi Expanded Bold G2 + Family: Системный шрифт + Style: Semi Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG3: + Full Name: Системный шрифт Semi Expanded Bold G3 + Family: Системный шрифт + Style: Semi Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG4: + Full Name: Системный шрифт Semi Expanded Bold G4 + Family: Системный шрифт + Style: Semi Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBold: + Full Name: Системный шрифт Semi Condensed Bold + Family: Системный шрифт + Style: Semi Condensed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG1: + Full Name: Системный шрифт Semi Condensed Bold G1 + Family: Системный шрифт + Style: Semi Condensed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG2: + Full Name: Системный шрифт Semi Condensed Bold G2 + Family: Системный шрифт + Style: Semi Condensed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG3: + Full Name: Системный шрифт Semi Condensed Bold G3 + Family: Системный шрифт + Style: Semi Condensed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG4: + Full Name: Системный шрифт Semi Condensed Bold G4 + Family: Системный шрифт + Style: Semi Condensed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Heavy: + Full Name: Системный шрифт Heavy + Family: Системный шрифт + Style: Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG1: + Full Name: Системный шрифт Heavy G1 + Family: Системный шрифт + Style: Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG2: + Full Name: Системный шрифт Heavy G2 + Family: Системный шрифт + Style: Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG3: + Full Name: Системный шрифт Heavy G3 + Family: Системный шрифт + Style: Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG4: + Full Name: Системный шрифт Heavy G4 + Family: Системный шрифт + Style: Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavy: + Full Name: Системный шрифт Semi Expanded Heavy + Family: Системный шрифт + Style: Semi Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG1: + Full Name: Системный шрифт Semi Expanded Heavy G1 + Family: Системный шрифт + Style: Semi Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG2: + Full Name: Системный шрифт Semi Expanded Heavy G2 + Family: Системный шрифт + Style: Semi Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG3: + Full Name: Системный шрифт Semi Expanded Heavy G3 + Family: Системный шрифт + Style: Semi Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG4: + Full Name: Системный шрифт Semi Expanded Heavy G4 + Family: Системный шрифт + Style: Semi Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavy: + Full Name: Системный шрифт Semi Condensed Heavy + Family: Системный шрифт + Style: Semi Condensed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG1: + Full Name: Системный шрифт Semi Condensed Heavy G1 + Family: Системный шрифт + Style: Semi Condensed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG2: + Full Name: Системный шрифт Semi Condensed Heavy G2 + Family: Системный шрифт + Style: Semi Condensed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG3: + Full Name: Системный шрифт Semi Condensed Heavy G3 + Family: Системный шрифт + Style: Semi Condensed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG4: + Full Name: Системный шрифт Semi Condensed Heavy G4 + Family: Системный шрифт + Style: Semi Condensed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Black: + Full Name: Системный шрифт Black + Family: Системный шрифт + Style: Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBlack: + Full Name: Системный шрифт Semi Expanded Black + Family: Системный шрифт + Style: Semi Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBlack: + Full Name: Системный шрифт Semi Condensed Black + Family: Системный шрифт + Style: Semi Condensed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegular: + Full Name: Системный шрифт Expanded Regular + Family: Системный шрифт + Style: Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG1: + Full Name: Системный шрифт Expanded Regular G1 + Family: Системный шрифт + Style: Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG2: + Full Name: Системный шрифт Expanded Regular G2 + Family: Системный шрифт + Style: Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG3: + Full Name: Системный шрифт Expanded Regular G3 + Family: Системный шрифт + Style: Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG4: + Full Name: Системный шрифт Expanded Regular G4 + Family: Системный шрифт + Style: Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegular: + Full Name: Системный шрифт Extra Expanded Regular + Family: Системный шрифт + Style: Extra Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG1: + Full Name: Системный шрифт Extra Expanded Regular G1 + Family: Системный шрифт + Style: Extra Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG2: + Full Name: Системный шрифт Extra Expanded Regular G2 + Family: Системный шрифт + Style: Extra Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG3: + Full Name: Системный шрифт Extra Expanded Regular G3 + Family: Системный шрифт + Style: Extra Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG4: + Full Name: Системный шрифт Extra Expanded Regular G4 + Family: Системный шрифт + Style: Extra Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMedium: + Full Name: Системный шрифт Expanded Medium + Family: Системный шрифт + Style: Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG1: + Full Name: Системный шрифт Expanded Medium G1 + Family: Системный шрифт + Style: Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG2: + Full Name: Системный шрифт Expanded Medium G2 + Family: Системный шрифт + Style: Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG3: + Full Name: Системный шрифт Expanded Medium G3 + Family: Системный шрифт + Style: Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG4: + Full Name: Системный шрифт Expanded Medium G4 + Family: Системный шрифт + Style: Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMedium: + Full Name: Системный шрифт Extra Expanded Medium + Family: Системный шрифт + Style: Extra Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG1: + Full Name: Системный шрифт Extra Expanded Medium G1 + Family: Системный шрифт + Style: Extra Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG2: + Full Name: Системный шрифт Extra Expanded Medium G2 + Family: Системный шрифт + Style: Extra Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG3: + Full Name: Системный шрифт Extra Expanded Medium G3 + Family: Системный шрифт + Style: Extra Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG4: + Full Name: Системный шрифт Extra Expanded Medium G4 + Family: Системный шрифт + Style: Extra Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLight: + Full Name: Системный шрифт Expanded Light + Family: Системный шрифт + Style: Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG1: + Full Name: Системный шрифт Expanded Light G1 + Family: Системный шрифт + Style: Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG2: + Full Name: Системный шрифт Expanded Light G2 + Family: Системный шрифт + Style: Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG3: + Full Name: Системный шрифт Expanded Light G3 + Family: Системный шрифт + Style: Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG4: + Full Name: Системный шрифт Expanded Light G4 + Family: Системный шрифт + Style: Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLight: + Full Name: Системный шрифт Extra Expanded Light + Family: Системный шрифт + Style: Extra Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG1: + Full Name: Системный шрифт Extra Expanded Light G1 + Family: Системный шрифт + Style: Extra Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG2: + Full Name: Системный шрифт Extra Expanded Light G2 + Family: Системный шрифт + Style: Extra Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG3: + Full Name: Системный шрифт Extra Expanded Light G3 + Family: Системный шрифт + Style: Extra Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG4: + Full Name: Системный шрифт Extra Expanded Light G4 + Family: Системный шрифт + Style: Extra Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThin: + Full Name: Системный шрифт Expanded Thin + Family: Системный шрифт + Style: Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG1: + Full Name: Системный шрифт Expanded Thin G1 + Family: Системный шрифт + Style: Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG2: + Full Name: Системный шрифт Expanded Thin G2 + Family: Системный шрифт + Style: Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG3: + Full Name: Системный шрифт Expanded Thin G3 + Family: Системный шрифт + Style: Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG4: + Full Name: Системный шрифт Expanded Thin G4 + Family: Системный шрифт + Style: Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThin: + Full Name: Системный шрифт Extra Expanded Thin + Family: Системный шрифт + Style: Extra Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG1: + Full Name: Системный шрифт Extra Expanded Thin G1 + Family: Системный шрифт + Style: Extra Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG2: + Full Name: Системный шрифт Extra Expanded Thin G2 + Family: Системный шрифт + Style: Extra Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG3: + Full Name: Системный шрифт Extra Expanded Thin G3 + Family: Системный шрифт + Style: Extra Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG4: + Full Name: Системный шрифт Extra Expanded Thin G4 + Family: Системный шрифт + Style: Extra Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralight: + Full Name: Системный шрифт Expanded Ultralight + Family: Системный шрифт + Style: Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG1: + Full Name: Системный шрифт Expanded Ultralight G1 + Family: Системный шрифт + Style: Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG2: + Full Name: Системный шрифт Expanded Ultralight G2 + Family: Системный шрифт + Style: Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG3: + Full Name: Системный шрифт Expanded Ultralight G3 + Family: Системный шрифт + Style: Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG4: + Full Name: Системный шрифт Expanded Ultralight G4 + Family: Системный шрифт + Style: Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralight: + Full Name: Системный шрифт Extra Expanded Ultralight + Family: Системный шрифт + Style: Extra Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG1: + Full Name: Системный шрифт Extra Expanded Ultralight G1 + Family: Системный шрифт + Style: Extra Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG2: + Full Name: Системный шрифт Extra Expanded Ultralight G2 + Family: Системный шрифт + Style: Extra Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG3: + Full Name: Системный шрифт Extra Expanded Ultralight G3 + Family: Системный шрифт + Style: Extra Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG4: + Full Name: Системный шрифт Extra Expanded Ultralight G4 + Family: Системный шрифт + Style: Extra Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemibold: + Full Name: Системный шрифт Expanded Semibold + Family: Системный шрифт + Style: Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG1: + Full Name: Системный шрифт Expanded Semibold G1 + Family: Системный шрифт + Style: Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG2: + Full Name: Системный шрифт Expanded Semibold G2 + Family: Системный шрифт + Style: Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG3: + Full Name: Системный шрифт Expanded Semibold G3 + Family: Системный шрифт + Style: Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG4: + Full Name: Системный шрифт Expanded Semibold G4 + Family: Системный шрифт + Style: Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemibold: + Full Name: Системный шрифт Extra Expanded Semibold + Family: Системный шрифт + Style: Extra Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG1: + Full Name: Системный шрифт Extra Expanded Semibold G1 + Family: Системный шрифт + Style: Extra Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG2: + Full Name: Системный шрифт Extra Expanded Semibold G2 + Family: Системный шрифт + Style: Extra Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG3: + Full Name: Системный шрифт Extra Expanded Semibold G3 + Family: Системный шрифт + Style: Extra Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG4: + Full Name: Системный шрифт Extra Expanded Semibold G4 + Family: Системный шрифт + Style: Extra Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBold: + Full Name: Системный шрифт Expanded Bold + Family: Системный шрифт + Style: Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG1: + Full Name: Системный шрифт Expanded Bold G1 + Family: Системный шрифт + Style: Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG2: + Full Name: Системный шрифт Expanded Bold G2 + Family: Системный шрифт + Style: Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG3: + Full Name: Системный шрифт Expanded Bold G3 + Family: Системный шрифт + Style: Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG4: + Full Name: Системный шрифт Expanded Bold G4 + Family: Системный шрифт + Style: Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBold: + Full Name: Системный шрифт Extra Expanded Bold + Family: Системный шрифт + Style: Extra Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG1: + Full Name: Системный шрифт Extra Expanded Bold G1 + Family: Системный шрифт + Style: Extra Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG2: + Full Name: Системный шрифт Extra Expanded Bold G2 + Family: Системный шрифт + Style: Extra Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG3: + Full Name: Системный шрифт Extra Expanded Bold G3 + Family: Системный шрифт + Style: Extra Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG4: + Full Name: Системный шрифт Extra Expanded Bold G4 + Family: Системный шрифт + Style: Extra Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavy: + Full Name: Системный шрифт Expanded Heavy + Family: Системный шрифт + Style: Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG1: + Full Name: Системный шрифт Expanded Heavy G1 + Family: Системный шрифт + Style: Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG2: + Full Name: Системный шрифт Expanded Heavy G2 + Family: Системный шрифт + Style: Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG3: + Full Name: Системный шрифт Expanded Heavy G3 + Family: Системный шрифт + Style: Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG4: + Full Name: Системный шрифт Expanded Heavy G4 + Family: Системный шрифт + Style: Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavy: + Full Name: Системный шрифт Extra Expanded Heavy + Family: Системный шрифт + Style: Extra Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG1: + Full Name: Системный шрифт Extra Expanded Heavy G1 + Family: Системный шрифт + Style: Extra Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG2: + Full Name: Системный шрифт Extra Expanded Heavy G2 + Family: Системный шрифт + Style: Extra Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG3: + Full Name: Системный шрифт Extra Expanded Heavy G3 + Family: Системный шрифт + Style: Extra Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG4: + Full Name: Системный шрифт Extra Expanded Heavy G4 + Family: Системный шрифт + Style: Extra Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBlack: + Full Name: Системный шрифт Expanded Black + Family: Системный шрифт + Style: Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBlack: + Full Name: Системный шрифт Extra Expanded Black + Family: Системный шрифт + Style: Extra Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegular: + Full Name: Системный шрифт Condensed Regular + Family: Системный шрифт + Style: Condensed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG1: + Full Name: Системный шрифт Condensed Regular G1 + Family: Системный шрифт + Style: Condensed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG2: + Full Name: Системный шрифт Condensed Regular G2 + Family: Системный шрифт + Style: Condensed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG3: + Full Name: Системный шрифт Condensed Regular G3 + Family: Системный шрифт + Style: Condensed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG4: + Full Name: Системный шрифт Condensed Regular G4 + Family: Системный шрифт + Style: Condensed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegular: + Full Name: Системный шрифт Compressed Regular + Family: Системный шрифт + Style: Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG1: + Full Name: Системный шрифт Compressed Regular G1 + Family: Системный шрифт + Style: Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG2: + Full Name: Системный шрифт Compressed Regular G2 + Family: Системный шрифт + Style: Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG3: + Full Name: Системный шрифт Compressed Regular G3 + Family: Системный шрифт + Style: Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG4: + Full Name: Системный шрифт Compressed Regular G4 + Family: Системный шрифт + Style: Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegular: + Full Name: Системный шрифт Extra Compressed Regular + Family: Системный шрифт + Style: Extra Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG1: + Full Name: Системный шрифт Extra Compressed Regular G1 + Family: Системный шрифт + Style: Extra Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG2: + Full Name: Системный шрифт Extra Compressed Regular G2 + Family: Системный шрифт + Style: Extra Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG3: + Full Name: Системный шрифт Extra Compressed Regular G3 + Family: Системный шрифт + Style: Extra Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG4: + Full Name: Системный шрифт Extra Compressed Regular G4 + Family: Системный шрифт + Style: Extra Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegular: + Full Name: Системный шрифт Ultra Compressed Regular + Family: Системный шрифт + Style: Ultra Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG1: + Full Name: Системный шрифт Ultra Compressed Regular G1 + Family: Системный шрифт + Style: Ultra Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG2: + Full Name: Системный шрифт Ultra Compressed Regular G2 + Family: Системный шрифт + Style: Ultra Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG3: + Full Name: Системный шрифт Ultra Compressed Regular G3 + Family: Системный шрифт + Style: Ultra Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG4: + Full Name: Системный шрифт Ultra Compressed Regular G4 + Family: Системный шрифт + Style: Ultra Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMedium: + Full Name: Системный шрифт Condensed Medium + Family: Системный шрифт + Style: Condensed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG1: + Full Name: Системный шрифт Condensed Medium G1 + Family: Системный шрифт + Style: Condensed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG2: + Full Name: Системный шрифт Condensed Medium G2 + Family: Системный шрифт + Style: Condensed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG3: + Full Name: Системный шрифт Condensed Medium G3 + Family: Системный шрифт + Style: Condensed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG4: + Full Name: Системный шрифт Condensed Medium G4 + Family: Системный шрифт + Style: Condensed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMedium: + Full Name: Системный шрифт Compressed Medium + Family: Системный шрифт + Style: Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG1: + Full Name: Системный шрифт Compressed Medium G1 + Family: Системный шрифт + Style: Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG2: + Full Name: Системный шрифт Compressed Medium G2 + Family: Системный шрифт + Style: Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG3: + Full Name: Системный шрифт Compressed Medium G3 + Family: Системный шрифт + Style: Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG4: + Full Name: Системный шрифт Compressed Medium G4 + Family: Системный шрифт + Style: Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMedium: + Full Name: Системный шрифт Extra Compressed Medium + Family: Системный шрифт + Style: Extra Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG1: + Full Name: Системный шрифт Extra Compressed Medium G1 + Family: Системный шрифт + Style: Extra Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG2: + Full Name: Системный шрифт Extra Compressed Medium G2 + Family: Системный шрифт + Style: Extra Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG3: + Full Name: Системный шрифт Extra Compressed Medium G3 + Family: Системный шрифт + Style: Extra Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG4: + Full Name: Системный шрифт Extra Compressed Medium G4 + Family: Системный шрифт + Style: Extra Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMedium: + Full Name: Системный шрифт Ultra Compressed Medium + Family: Системный шрифт + Style: Ultra Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG1: + Full Name: Системный шрифт Ultra Compressed Medium G1 + Family: Системный шрифт + Style: Ultra Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG2: + Full Name: Системный шрифт Ultra Compressed Medium G2 + Family: Системный шрифт + Style: Ultra Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG3: + Full Name: Системный шрифт Ultra Compressed Medium G3 + Family: Системный шрифт + Style: Ultra Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG4: + Full Name: Системный шрифт Ultra Compressed Medium G4 + Family: Системный шрифт + Style: Ultra Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLight: + Full Name: Системный шрифт Condensed Light + Family: Системный шрифт + Style: Condensed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG1: + Full Name: Системный шрифт Condensed Light G1 + Family: Системный шрифт + Style: Condensed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG2: + Full Name: Системный шрифт Condensed Light G2 + Family: Системный шрифт + Style: Condensed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG3: + Full Name: Системный шрифт Condensed Light G3 + Family: Системный шрифт + Style: Condensed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG4: + Full Name: Системный шрифт Condensed Light G4 + Family: Системный шрифт + Style: Condensed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLight: + Full Name: Системный шрифт Compressed Light + Family: Системный шрифт + Style: Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG1: + Full Name: Системный шрифт Compressed Light G1 + Family: Системный шрифт + Style: Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG2: + Full Name: Системный шрифт Compressed Light G2 + Family: Системный шрифт + Style: Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG3: + Full Name: Системный шрифт Compressed Light G3 + Family: Системный шрифт + Style: Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG4: + Full Name: Системный шрифт Compressed Light G4 + Family: Системный шрифт + Style: Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLight: + Full Name: Системный шрифт Extra Compressed Light + Family: Системный шрифт + Style: Extra Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG1: + Full Name: Системный шрифт Extra Compressed Light G1 + Family: Системный шрифт + Style: Extra Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG2: + Full Name: Системный шрифт Extra Compressed Light G2 + Family: Системный шрифт + Style: Extra Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG3: + Full Name: Системный шрифт Extra Compressed Light G3 + Family: Системный шрифт + Style: Extra Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG4: + Full Name: Системный шрифт Extra Compressed Light G4 + Family: Системный шрифт + Style: Extra Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLight: + Full Name: Системный шрифт Ultra Compressed Light + Family: Системный шрифт + Style: Ultra Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG1: + Full Name: Системный шрифт Ultra Compressed Light G1 + Family: Системный шрифт + Style: Ultra Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG2: + Full Name: Системный шрифт Ultra Compressed Light G2 + Family: Системный шрифт + Style: Ultra Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG3: + Full Name: Системный шрифт Ultra Compressed Light G3 + Family: Системный шрифт + Style: Ultra Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG4: + Full Name: Системный шрифт Ultra Compressed Light G4 + Family: Системный шрифт + Style: Ultra Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThin: + Full Name: Системный шрифт Condensed Thin + Family: Системный шрифт + Style: Condensed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG1: + Full Name: Системный шрифт Condensed Thin G1 + Family: Системный шрифт + Style: Condensed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG2: + Full Name: Системный шрифт Condensed Thin G2 + Family: Системный шрифт + Style: Condensed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG3: + Full Name: Системный шрифт Condensed Thin G3 + Family: Системный шрифт + Style: Condensed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG4: + Full Name: Системный шрифт Condensed Thin G4 + Family: Системный шрифт + Style: Condensed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThin: + Full Name: Системный шрифт Compressed Thin + Family: Системный шрифт + Style: Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG1: + Full Name: Системный шрифт Compressed Thin G1 + Family: Системный шрифт + Style: Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG2: + Full Name: Системный шрифт Compressed Thin G2 + Family: Системный шрифт + Style: Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG3: + Full Name: Системный шрифт Compressed Thin G3 + Family: Системный шрифт + Style: Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG4: + Full Name: Системный шрифт Compressed Thin G4 + Family: Системный шрифт + Style: Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThin: + Full Name: Системный шрифт Extra Compressed Thin + Family: Системный шрифт + Style: Extra Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG1: + Full Name: Системный шрифт Extra Compressed Thin G1 + Family: Системный шрифт + Style: Extra Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG2: + Full Name: Системный шрифт Extra Compressed Thin G2 + Family: Системный шрифт + Style: Extra Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG3: + Full Name: Системный шрифт Extra Compressed Thin G3 + Family: Системный шрифт + Style: Extra Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG4: + Full Name: Системный шрифт Extra Compressed Thin G4 + Family: Системный шрифт + Style: Extra Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThin: + Full Name: Системный шрифт Ultra Compressed Thin + Family: Системный шрифт + Style: Ultra Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG1: + Full Name: Системный шрифт Ultra Compressed Thin G1 + Family: Системный шрифт + Style: Ultra Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG2: + Full Name: Системный шрифт Ultra Compressed Thin G2 + Family: Системный шрифт + Style: Ultra Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG3: + Full Name: Системный шрифт Ultra Compressed Thin G3 + Family: Системный шрифт + Style: Ultra Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG4: + Full Name: Системный шрифт Ultra Compressed Thin G4 + Family: Системный шрифт + Style: Ultra Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralight: + Full Name: Системный шрифт Condensed Ultralight + Family: Системный шрифт + Style: Condensed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG1: + Full Name: Системный шрифт Condensed Ultralight G1 + Family: Системный шрифт + Style: Condensed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG2: + Full Name: Системный шрифт Condensed Ultralight G2 + Family: Системный шрифт + Style: Condensed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG3: + Full Name: Системный шрифт Condensed Ultralight G3 + Family: Системный шрифт + Style: Condensed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG4: + Full Name: Системный шрифт Condensed Ultralight G4 + Family: Системный шрифт + Style: Condensed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralight: + Full Name: Системный шрифт Compressed Ultralight + Family: Системный шрифт + Style: Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG1: + Full Name: Системный шрифт Compressed Ultralight G1 + Family: Системный шрифт + Style: Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG2: + Full Name: Системный шрифт Compressed Ultralight G2 + Family: Системный шрифт + Style: Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG3: + Full Name: Системный шрифт Compressed Ultralight G3 + Family: Системный шрифт + Style: Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG4: + Full Name: Системный шрифт Compressed Ultralight G4 + Family: Системный шрифт + Style: Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralight: + Full Name: Системный шрифт Extra Compressed Ultralight + Family: Системный шрифт + Style: Extra Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG1: + Full Name: Системный шрифт Extra Compressed Ultralight G1 + Family: Системный шрифт + Style: Extra Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG2: + Full Name: Системный шрифт Extra Compressed Ultralight G2 + Family: Системный шрифт + Style: Extra Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG3: + Full Name: Системный шрифт Extra Compressed Ultralight G3 + Family: Системный шрифт + Style: Extra Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG4: + Full Name: Системный шрифт Extra Compressed Ultralight G4 + Family: Системный шрифт + Style: Extra Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralight: + Full Name: Системный шрифт Ultra Compressed Ultralight + Family: Системный шрифт + Style: Ultra Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG1: + Full Name: Системный шрифт Ultra Compressed Ultralight G1 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG2: + Full Name: Системный шрифт Ultra Compressed Ultralight G2 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG3: + Full Name: Системный шрифт Ultra Compressed Ultralight G3 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG4: + Full Name: Системный шрифт Ultra Compressed Ultralight G4 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemibold: + Full Name: Системный шрифт Condensed Semibold + Family: Системный шрифт + Style: Condensed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG1: + Full Name: Системный шрифт Condensed Semibold G1 + Family: Системный шрифт + Style: Condensed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG2: + Full Name: Системный шрифт Condensed Semibold G2 + Family: Системный шрифт + Style: Condensed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG3: + Full Name: Системный шрифт Condensed Semibold G3 + Family: Системный шрифт + Style: Condensed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG4: + Full Name: Системный шрифт Condensed Semibold G4 + Family: Системный шрифт + Style: Condensed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemibold: + Full Name: Системный шрифт Compressed Semibold + Family: Системный шрифт + Style: Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG1: + Full Name: Системный шрифт Compressed Semibold G1 + Family: Системный шрифт + Style: Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG2: + Full Name: Системный шрифт Compressed Semibold G2 + Family: Системный шрифт + Style: Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG3: + Full Name: Системный шрифт Compressed Semibold G3 + Family: Системный шрифт + Style: Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG4: + Full Name: Системный шрифт Compressed Semibold G4 + Family: Системный шрифт + Style: Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemibold: + Full Name: Системный шрифт Extra Compressed Semibold + Family: Системный шрифт + Style: Extra Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG1: + Full Name: Системный шрифт Extra Compressed Semibold G1 + Family: Системный шрифт + Style: Extra Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG2: + Full Name: Системный шрифт Extra Compressed Semibold G2 + Family: Системный шрифт + Style: Extra Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG3: + Full Name: Системный шрифт Extra Compressed Semibold G3 + Family: Системный шрифт + Style: Extra Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG4: + Full Name: Системный шрифт Extra Compressed Semibold G4 + Family: Системный шрифт + Style: Extra Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemibold: + Full Name: Системный шрифт Ultra Compressed Semibold + Family: Системный шрифт + Style: Ultra Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG1: + Full Name: Системный шрифт Ultra Compressed Semibold G1 + Family: Системный шрифт + Style: Ultra Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG2: + Full Name: Системный шрифт Ultra Compressed Semibold G2 + Family: Системный шрифт + Style: Ultra Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG3: + Full Name: Системный шрифт Ultra Compressed Semibold G3 + Family: Системный шрифт + Style: Ultra Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG4: + Full Name: Системный шрифт Ultra Compressed Semibold G4 + Family: Системный шрифт + Style: Ultra Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBold: + Full Name: Системный шрифт Condensed Bold + Family: Системный шрифт + Style: Condensed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG1: + Full Name: Системный шрифт Condensed Bold G1 + Family: Системный шрифт + Style: Condensed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG2: + Full Name: Системный шрифт Condensed Bold G2 + Family: Системный шрифт + Style: Condensed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG3: + Full Name: Системный шрифт Condensed Bold G3 + Family: Системный шрифт + Style: Condensed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG4: + Full Name: Системный шрифт Condensed Bold G4 + Family: Системный шрифт + Style: Condensed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBold: + Full Name: Системный шрифт Compressed Bold + Family: Системный шрифт + Style: Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG1: + Full Name: Системный шрифт Compressed Bold G1 + Family: Системный шрифт + Style: Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG2: + Full Name: Системный шрифт Compressed Bold G2 + Family: Системный шрифт + Style: Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG3: + Full Name: Системный шрифт Compressed Bold G3 + Family: Системный шрифт + Style: Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG4: + Full Name: Системный шрифт Compressed Bold G4 + Family: Системный шрифт + Style: Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBold: + Full Name: Системный шрифт Extra Compressed Bold + Family: Системный шрифт + Style: Extra Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG1: + Full Name: Системный шрифт Extra Compressed Bold G1 + Family: Системный шрифт + Style: Extra Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG2: + Full Name: Системный шрифт Extra Compressed Bold G2 + Family: Системный шрифт + Style: Extra Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG3: + Full Name: Системный шрифт Extra Compressed Bold G3 + Family: Системный шрифт + Style: Extra Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG4: + Full Name: Системный шрифт Extra Compressed Bold G4 + Family: Системный шрифт + Style: Extra Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBold: + Full Name: Системный шрифт Ultra Compressed Bold + Family: Системный шрифт + Style: Ultra Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG1: + Full Name: Системный шрифт Ultra Compressed Bold G1 + Family: Системный шрифт + Style: Ultra Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG2: + Full Name: Системный шрифт Ultra Compressed Bold G2 + Family: Системный шрифт + Style: Ultra Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG3: + Full Name: Системный шрифт Ultra Compressed Bold G3 + Family: Системный шрифт + Style: Ultra Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG4: + Full Name: Системный шрифт Ultra Compressed Bold G4 + Family: Системный шрифт + Style: Ultra Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavy: + Full Name: Системный шрифт Condensed Heavy + Family: Системный шрифт + Style: Condensed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG1: + Full Name: Системный шрифт Condensed Heavy G1 + Family: Системный шрифт + Style: Condensed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG2: + Full Name: Системный шрифт Condensed Heavy G2 + Family: Системный шрифт + Style: Condensed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG3: + Full Name: Системный шрифт Condensed Heavy G3 + Family: Системный шрифт + Style: Condensed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG4: + Full Name: Системный шрифт Condensed Heavy G4 + Family: Системный шрифт + Style: Condensed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavy: + Full Name: Системный шрифт Compressed Heavy + Family: Системный шрифт + Style: Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG1: + Full Name: Системный шрифт Compressed Heavy G1 + Family: Системный шрифт + Style: Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG2: + Full Name: Системный шрифт Compressed Heavy G2 + Family: Системный шрифт + Style: Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG3: + Full Name: Системный шрифт Compressed Heavy G3 + Family: Системный шрифт + Style: Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG4: + Full Name: Системный шрифт Compressed Heavy G4 + Family: Системный шрифт + Style: Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavy: + Full Name: Системный шрифт Extra Compressed Heavy + Family: Системный шрифт + Style: Extra Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG1: + Full Name: Системный шрифт Extra Compressed Heavy G1 + Family: Системный шрифт + Style: Extra Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG2: + Full Name: Системный шрифт Extra Compressed Heavy G2 + Family: Системный шрифт + Style: Extra Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG3: + Full Name: Системный шрифт Extra Compressed Heavy G3 + Family: Системный шрифт + Style: Extra Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG4: + Full Name: Системный шрифт Extra Compressed Heavy G4 + Family: Системный шрифт + Style: Extra Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavy: + Full Name: Системный шрифт Ultra Compressed Heavy + Family: Системный шрифт + Style: Ultra Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG1: + Full Name: Системный шрифт Ultra Compressed Heavy G1 + Family: Системный шрифт + Style: Ultra Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG2: + Full Name: Системный шрифт Ultra Compressed Heavy G2 + Family: Системный шрифт + Style: Ultra Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG3: + Full Name: Системный шрифт Ultra Compressed Heavy G3 + Family: Системный шрифт + Style: Ultra Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG4: + Full Name: Системный шрифт Ultra Compressed Heavy G4 + Family: Системный шрифт + Style: Ultra Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBlack: + Full Name: Системный шрифт Condensed Black + Family: Системный шрифт + Style: Condensed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBlack: + Full Name: Системный шрифт Compressed Black + Family: Системный шрифт + Style: Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBlack: + Full Name: Системный шрифт Extra Compressed Black + Family: Системный шрифт + Style: Extra Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBlack: + Full Name: Системный шрифт Ultra Compressed Black + Family: Системный шрифт + Style: Ultra Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baoli.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9d5450ee93f17da1eacfa01b5e7b598f9e2dda2b.asset/AssetData/Baoli.ttc + Typefaces: + STBaoliSC-Regular: + Full Name: Baoli SC Regular + Family: Baoli SC + Style: Обычный + Version: 17.0d1e1 + Unique Name: Baoli SC Regular; 17.0d1e1; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STBaoliTC-Regular: + Full Name: Baoli TC Regular + Family: Baoli TC + Style: Обычный + Version: 17.0d1e1 + Unique Name: Baoli TC Regular; 17.0d1e1; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72 OS.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72 OS.ttc + Typefaces: + BodoniSvtyTwoOSITCTT-Book: + Full Name: Bodoni 72 Oldstyle Book + Family: Bodoni 72 Oldstyle + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoOSITCTT-Bold: + Full Name: Bodoni 72 Oldstyle Bold + Family: Bodoni 72 Oldstyle + Style: Жирный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Bold; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoOSITCTT-BookIt: + Full Name: Bodoni 72 Oldstyle Book Italic + Family: Bodoni 72 Oldstyle + Style: Книжный курсивный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Book Italic; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Webdings.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Webdings.ttf + Typefaces: + Webdings: + Full Name: Webdings + Family: Webdings + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Webdings + Designer: V.Connare,S.Lightfoot,I.Patterson,G.Wade + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Webdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Description: Designed in 1997 as a collaborative work between Microsoft's Vincent Connare and top Monotype designers Sue Lightfoot, Ian Patterson and Geraldine Wade. The images are intended for web designers who wish to include live fonts as a fast way of rendering graphics. Webdings is the latest member of Microsoft's Webfonts. Design coordination by Vincent Connare. Image designs by Vincent Connare, Ian Patterson, Sue Lightfoot and Geraldine Wade. Web and design consultation by Simon Daniels. TrueType hinting by Vincent Connare. Completed April 29, 1997. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Herculanum.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Herculanum.ttf + Typefaces: + Herculanum: + Full Name: Herculanum + Family: Herculanum + Style: Обычный + Version: 13.0d1e2 + Unique Name: Herculanum; 13.0d1e2; 2017-06-07 + Copyright: Copyright (c) 1981, 1982, Linotype Library GmbH. + Trademark: "Herculanum" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Herculanum is a work + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSMono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSMono.ttf + Typefaces: + .SFNSMono-Regular: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Обычный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Medium: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Средний + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Light: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Легкий + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Semibold: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Полужирный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Bold: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Жирный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Heavy: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Тяжелый + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooTammaKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1a2df7b90a562a91041e811b280251582bee7666.asset/AssetData/BalooTammaKannada.ttc + Typefaces: + BalooTamma2-Medium: + Full Name: Baloo Tamma 2 Medium + Family: Baloo Tamma 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-Bold: + Full Name: Baloo Tamma 2 Bold + Family: Baloo Tamma 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-SemiBold: + Full Name: Baloo Tamma 2 SemiBold + Family: Baloo Tamma 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-Regular: + Full Name: Baloo Tamma 2 Regular + Family: Baloo Tamma 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-ExtraBold: + Full Name: Baloo Tamma 2 ExtraBold + Family: Baloo Tamma 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Rockwell.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Rockwell.ttc + Typefaces: + Rockwell-Italic: + Full Name: Rockwell Italic + Family: Rockwell + Style: Курсивный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell Italic; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-Bold: + Full Name: Rockwell-Bold + Family: Rockwell + Style: Жирный + Version: 13.0d2e1 + Unique Name: Rockwell Bold; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-BoldItalic: + Full Name: Rockwell Bold Italic + Family: Rockwell + Style: Жирный курсивный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell Bold Italic; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-Regular: + Full Name: Rockwell + Family: Rockwell + Style: Обычный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a trademark of The Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SukhumvitSet.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SukhumvitSet.ttc + Typefaces: + SukhumvitSet-Thin: + Full Name: SukhumvitSet-Thin + Family: Sukhumvit Set + Style: Тонкий + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Thin; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Light: + Full Name: SukhumvitSet-Light + Family: Sukhumvit Set + Style: Легкий + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Light; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Medium: + Full Name: SukhumvitSet-Medium + Family: Sukhumvit Set + Style: Средний + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Medium; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Text: + Full Name: SukhumvitSet-Text + Family: Sukhumvit Set + Style: Text + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Text; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Bold: + Full Name: SukhumvitSet-Bold + Family: Sukhumvit Set + Style: Жирный + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Bold; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-SemiBold: + Full Name: SukhumvitSet-SemiBold + Family: Sukhumvit Set + Style: Полужирный + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Semi Bold; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-BlackItalic.otf + Typefaces: + SFProText-BlackItalic: + Full Name: SF Pro Text Black Italic + Family: SF Pro Text + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Diwan Thuluth.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Diwan Thuluth.ttf + Typefaces: + DiwanThuluth: + Full Name: Diwan Thuluth Regular + Family: Diwan Thuluth + Style: Обычный + Version: 13.0d1e5 + Unique Name: Diwan Thuluth Regular; 13.0d1e5; 2017-06-13 + Copyright: © 2001 Diwan Software Ltd. All rights reserved. Programmed by Anmar Sabeeh & Abu Hassan. + Trademark: Diwan Thuluth + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sinhala MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sinhala MN.ttc + Typefaces: + SinhalaMN-Bold: + Full Name: Sinhala MN Bold + Family: Sinhala MN + Style: Жирный + Version: 14.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Sinhala MN Bold; 14.0d1e1; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SinhalaMN: + Full Name: Sinhala MN + Family: Sinhala MN + Style: Обычный + Version: 14.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Sinhala MN; 14.0d1e1; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSerifCaption.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSerifCaption.ttc + Typefaces: + PTSerif-Caption: + Full Name: PT Serif Caption + Family: PT Serif Caption + Style: Обычный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Caption; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-CaptionItalic: + Full Name: PT Serif Caption Italic + Family: PT Serif Caption + Style: Курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Caption Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LingWaiSC-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e2c331b942cb338404a160a97a7cd6e8a31428e8.asset/AssetData/LingWaiSC-Medium.otf + Typefaces: + MLingWaiMedium-SC: + Full Name: LingWai SC Medium + Family: LingWai SC + Style: Средний + Version: 13.0d1e3 + Unique Name: LingWai SC Medium; 13.0d1e3; 2017-06-29 + Copyright: (C) Copyright 1991-2012 Monotype Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Semibold.otf + Typefaces: + SFProText-Semibold: + Full Name: SF Pro Text Semibold + Family: SF Pro Text + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni Ornaments.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni Ornaments.ttf + Typefaces: + BodoniOrnamentsITCTT: + Full Name: Bodoni Ornaments + Family: Bodoni Ornaments + Style: Обычный + Version: 13.0d2e1 + Unique Name: Bodoni Ornaments; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1995-1997 International Typeface Corporation All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooThambiTamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bedcbd3525748738e31b0b1e6ec9faa8c24dd127.asset/AssetData/BalooThambiTamil.ttc + Typefaces: + BalooThambi2-Regular: + Full Name: Baloo Thambi 2 Regular + Family: Baloo Thambi 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-Medium: + Full Name: Baloo Thambi 2 Medium + Family: Baloo Thambi 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-Bold: + Full Name: Baloo Thambi 2 Bold + Family: Baloo Thambi 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-SemiBold: + Full Name: Baloo Thambi 2 SemiBold + Family: Baloo Thambi 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-ExtraBold: + Full Name: Baloo Thambi 2 ExtraBold + Family: Baloo Thambi 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleLiGothic-Medium.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/de97612eef4e3cf8ee8e5c0ebd6fd879bbecd23a.asset/AssetData/AppleLiGothic-Medium.ttf + Typefaces: + LiGothicMed: + Full Name: Apple LiGothic Medium + Family: Apple LiGothic + Style: Средний + Version: 13.0d2e6 + Unique Name: Apple LiGothic Medium; 13.0d2e6; 2017-06-06 + Copyright: Apple Computer, Inc. 1992-1998 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Color Emoji.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Color Emoji.ttc + Typefaces: + AppleColorEmoji: + Full Name: Apple Color Emoji + Family: Apple Color Emoji + Style: Обычный + Version: 20.4d5e1 + Unique Name: Apple Color Emoji; 20.4d5e1; 2025-02-26 + Copyright: © 2011-2025 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleColorEmojiUI: + Full Name: .Apple Color Emoji UI + Family: .Apple Color Emoji UI + Style: Обычный + Version: 20.4d5e1 + Unique Name: .Apple Color Emoji UI; 20.4d5e1; 2025-02-26 + Copyright: © 2011-2025 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuppySC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/96af7ec9e88d5dae450d3162213f92a7b1129430.asset/AssetData/YuppySC-Regular.otf + Typefaces: + YuppySC-Regular: + Full Name: Yuppy SC Regular + Family: Yuppy SC + Style: Обычный + Version: 13.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Yuppy SC Regular; 13.0d1e1; 2017-06-09 + Copyright: © 2003, 2005, 2009 Monotype Imaging Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Trademark: Yuppy is a trademark of Monotype Imaging Inc. and may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Medium.otf + Typefaces: + SFCompactRounded-Medium: + Full Name: SF Compact Rounded Medium + Family: SF Compact Rounded + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hiragino_Sans_TC.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6399f76cec1305304074ba7f587e5763133bb541.asset/AssetData/Hiragino_Sans_TC.ttc + Typefaces: + HiraginoSansTC-W3: + Full Name: Hiragino Sans TC W3 + Family: Hiragino Sans TC + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans TC W3; 20.0d1e1; 2024-04-02 + Designer: JIYUKOBO Ltd. + Copyright: ver3.12, Copyright © 2007-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraginoSansTC-W6: + Full Name: Hiragino Sans TC W6 + Family: Hiragino Sans TC + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans TC W6; 20.0d1e1; 2024-04-02 + Designer: JIYUKOBO Ltd. + Copyright: ver3.12, Copyright © 2007-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Regular.otf + Typefaces: + SFCompactDisplay-Regular: + Full Name: SF Compact Display Regular + Family: SF Compact Display + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Black.otf + Typefaces: + SFCompactText-Black: + Full Name: SF Compact Text Black + Family: SF Compact Text + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Osaka.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a3f9a9e35bdf3babe03b2fd162051306fad439d6.asset/AssetData/Osaka.ttf + Typefaces: + Osaka: + Full Name: Osaka + Family: Osaka + Style: Обычный + Version: 16.0d1e2 + Unique Name: Osaka; 16.0d1e2; 2020-04-21 + Copyright: ver J-6.1d3e1, © 1990-2008 Apple Inc. + Trademark: HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-UltralightItalic.otf + Typefaces: + SFProDisplay-UltralightItalic: + Full Name: SF Pro Display Ultralight Italic + Family: SF Pro Display + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mali.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9d609221be9203a6d0e55f5117ff76246f4200a7.asset/AssetData/Mali.ttc + Typefaces: + Mali-Italic: + Full Name: Mali Italic + Family: Mali + Style: Курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Italic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-MediumItalic: + Full Name: Mali Medium Italic + Family: Mali + Style: Средний курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-MediumItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-SemiBoldItalic: + Full Name: Mali SemiBold Italic + Family: Mali + Style: Полужирный курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-SemiBoldItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-SemiBold: + Full Name: Mali SemiBold + Family: Mali + Style: Полужирный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-SemiBold + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Regular: + Full Name: Mali Regular + Family: Mali + Style: Обычный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Regular + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Medium: + Full Name: Mali Medium + Family: Mali + Style: Средний + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Medium + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-BoldItalic: + Full Name: Mali Bold Italic + Family: Mali + Style: Жирный курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-BoldItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Bold: + Full Name: Mali Bold + Family: Mali + Style: Жирный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Bold + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-ExtraLight: + Full Name: Mali ExtraLight + Family: Mali + Style: Сверхлегкий + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-ExtraLight + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Light: + Full Name: Mali Light + Family: Mali + Style: Легкий + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Light + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-ExtraLightItalic: + Full Name: Mali ExtraLight Italic + Family: Mali + Style: Сверхлегкий курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-ExtraLightItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-LightItalic: + Full Name: Mali Light Italic + Family: Mali + Style: Легкий курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-LightItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Savoye LET.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Savoye LET.ttc + Typefaces: + SavoyeLetPlain: + Full Name: Savoye LET Plain:1.0 + Family: Savoye LET + Style: Простой + Version: 13.0d2e4 + Unique Name: Savoye LET Plain:1.0; 13.0d2e4; 2017-06-30 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SavoyeLetPlainCC: + Full Name: Savoye LET Plain CC.:1.0 + Family: .Savoye LET CC. + Style: Простой + Version: 13.0d2e4 + Unique Name: Savoye LET Plain CC.:1.0; 13.0d2e4; 2017-06-30 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi Sangam MN.ttc + Typefaces: + GurmukhiSangamMN-Bold: + Full Name: Gurmukhi Sangam MN Bold + Family: Gurmukhi Sangam MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi Sangam MN Bold; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi Sangam MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GurmukhiSangamMN: + Full Name: Gurmukhi Sangam MN + Family: Gurmukhi Sangam MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi Sangam MN; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Krub.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/229d50d9c2cfb69a5a71be23225ae80f26257cc2.asset/AssetData/Krub.ttc + Typefaces: + Krub-Italic: + Full Name: Krub Italic + Family: Krub + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Italic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-LightItalic: + Full Name: Krub Light Italic + Family: Krub + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-LightItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-SemiBoldItalic: + Full Name: Krub SemiBold Italic + Family: Krub + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-SemiBoldItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Bold: + Full Name: Krub Bold + Family: Krub + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Bold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-BoldItalic: + Full Name: Krub Bold Italic + Family: Krub + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-BoldItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-SemiBold: + Full Name: Krub SemiBold + Family: Krub + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-SemiBold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Regular: + Full Name: Krub Regular + Family: Krub + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Regular + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-ExtraLightItalic: + Full Name: Krub ExtraLight Italic + Family: Krub + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-ExtraLightItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-ExtraLight: + Full Name: Krub ExtraLight + Family: Krub + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-ExtraLight + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Medium: + Full Name: Krub Medium + Family: Krub + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Medium + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Light: + Full Name: Krub Light + Family: Krub + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Light + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-MediumItalic: + Full Name: Krub Medium Italic + Family: Krub + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-MediumItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Light.otf + Typefaces: + SFCompactRounded-Light: + Full Name: SF Compact Rounded Light + Family: SF Compact Rounded + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W7.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W7.ttc + Typefaces: + HiraginoSans-W7: + Full Name: Hiragino Sans W7 + Family: Hiragino Sans + Style: W7 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W7; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W7: + Full Name: .Hiragino Kaku Gothic Interface W7 + Family: .Hiragino Kaku Gothic Interface + Style: W7 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W7; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.00, Copyright (c) 1993-2007 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial.ttf + Typefaces: + ArialMT: + Full Name: Arial + Family: Arial + Style: Обычный + Version: Version 5.01.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Regular:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Semibold.otf + Typefaces: + SFCompactRounded-Semibold: + Full Name: SF Compact Rounded Semibold + Family: SF Compact Rounded + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Devanagari Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Devanagari Sangam MN.ttc + Typefaces: + DevanagariSangamMN-Bold: + Full Name: Devanagari Sangam MN Bold + Family: Devanagari Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Devanagari Sangam MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Devanagari Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DevanagariSangamMN: + Full Name: Devanagari Sangam MN + Family: Devanagari Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Devanagari Sangam MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Devanagari Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baloo-Devanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/412e5de315cf6611597b15c5687e881623084628.asset/AssetData/Baloo-Devanagari.ttc + Typefaces: + Baloo2-Regular: + Full Name: Baloo 2 Regular + Family: Baloo 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-Medium: + Full Name: Baloo 2 Medium + Family: Baloo 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-SemiBold: + Full Name: Baloo 2 SemiBold + Family: Baloo 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-Bold: + Full Name: Baloo 2 Bold + Family: Baloo 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-ExtraBold: + Full Name: Baloo 2 ExtraBold + Family: Baloo 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Bold.otf + Typefaces: + SFCompactText-Bold: + Full Name: SF Compact Text Bold + Family: SF Compact Text + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HeadlineA.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/de4b2bad515a67ab2d11e39fd896b1e189252a43.asset/AssetData/HeadlineA.ttf + Typefaces: + JCHEadA: + Full Name: HeadLineA Regular + Family: HeadLineA + Style: Обычный + Version: 13.0d3e1 + Unique Name: HeadLineA Regular; 13.0d3e1; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: HeadLineA is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TamilSangam-MN-MA.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/088556b12f81edf3f4279c7e32dfb5a9895d2aa9.asset/AssetData/TamilSangam-MN-MA.ttc + Typefaces: + GranthaSangamMN-Black: + Full Name: Grantha Sangam MN Black + Family: Grantha Sangam MN + Style: Черный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Black; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Medium: + Full Name: Tamil Sangam MN Medium + Family: Tamil Sangam MN + Style: Средний + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Medium; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Demibold: + Full Name: Tamil Sangam MN Demibold + Family: Tamil Sangam MN + Style: Полужирный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Demibold; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-DemiBold: + Full Name: Grantha Sangam MN DemiBold + Family: Grantha Sangam MN + Style: Полужирный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN DemiBold; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Black: + Full Name: Tamil Sangam MN Black + Family: Tamil Sangam MN + Style: Черный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Black; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Light: + Full Name: Tamil Sangam MN Light + Family: Tamil Sangam MN + Style: Легкий + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Light; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Medium: + Full Name: Grantha Sangam MN Medium + Family: Grantha Sangam MN + Style: Средний + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Medium; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Light: + Full Name: Grantha Sangam MN Light + Family: Grantha Sangam MN + Style: Легкий + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Light; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Bold.ttf + Typefaces: + ArialNarrow-Bold: + Full Name: Arial Narrow Полужирный + Family: Arial Narrow + Style: Полужирный + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Bold : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Bold Italic.ttf + Typefaces: + Trebuchet-BoldItalic: + Full Name: Trebuchet MS Полужирный Курсив + Family: Trebuchet MS + Style: Полужирный Курсив + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Bold Italic + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaGurmukhi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a315fce407dcd8102062f824a2b039d34361a140.asset/AssetData/SamaGurmukhi.ttc + Typefaces: + SamaGurmukhi-Book: + Full Name: Sama Gurmukhi Book + Family: Sama Gurmukhi + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Book; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Bold: + Full Name: Sama Gurmukhi Bold + Family: Sama Gurmukhi + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Bold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-ExtraBold: + Full Name: Sama Gurmukhi ExtraBold + Family: Sama Gurmukhi + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Medium: + Full Name: Sama Gurmukhi Medium + Family: Sama Gurmukhi + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Medium; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Regular: + Full Name: Sama Gurmukhi Regular + Family: Sama Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Regular; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-SemiBold: + Full Name: Sama Gurmukhi SemiBold + Family: Sama Gurmukhi + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi SemiBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaMahee.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/MuktaMahee.ttc + Typefaces: + MuktaMahee-Medium: + Full Name: MuktaMahee Medium + Family: Mukta Mahee + Style: Средний + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Medium; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-SemiBold: + Full Name: MuktaMahee SemiBold + Family: Mukta Mahee + Style: Полужирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee SemiBold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-ExtraBold: + Full Name: MuktaMahee ExtraBold + Family: Mukta Mahee + Style: Сверхжирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee ExtraBold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Regular: + Full Name: MuktaMahee Regular + Family: Mukta Mahee + Style: Обычный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Regular; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Bold: + Full Name: MuktaMahee Bold + Family: Mukta Mahee + Style: Жирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Bold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Light: + Full Name: MuktaMahee Light + Family: Mukta Mahee + Style: Легкий + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Light; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-ExtraLight: + Full Name: MuktaMahee ExtraLight + Family: Mukta Mahee + Style: Сверхлегкий + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee ExtraLight; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ADTNumeric.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ADTNumeric.ttc + Typefaces: + .SFSoftNumeric-Regular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Medium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Средний + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Light: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Легкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Thin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Тонкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Ultralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Ультралегкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Semibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Полужирный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Bold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Heavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Тяжелый + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Black: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Черный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DIN Condensed Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DIN Condensed Bold.ttf + Typefaces: + DINCondensed-Bold: + Full Name: DIN Condensed Bold + Family: DIN Condensed + Style: Жирный + Version: 14.0d1e1 + Unique Name: DIN Condensed Bold; 14.0d1e1; 2018-05-22 + Designer: Linotype Staff + Copyright: Copyright © 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved. + Trademark: DINSchrift + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ChakraPetch.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54476f0fabbd6ca1ab2a0c4d19219232acfe366c.asset/AssetData/ChakraPetch.ttc + Typefaces: + ChakraPetch-Italic: + Full Name: Chakra Petch Italic + Family: Chakra Petch + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-BoldItalic: + Full Name: Chakra Petch Bold Italic + Family: Chakra Petch + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Light: + Full Name: Chakra Petch Light + Family: Chakra Petch + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Regular: + Full Name: Chakra Petch Regular + Family: Chakra Petch + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Bold: + Full Name: Chakra Petch Bold + Family: Chakra Petch + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-ExtraLightItalic: + Full Name: Chakra Petch ExtraLight Italic + Family: Chakra Petch + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-MediumItalic: + Full Name: Chakra Petch Medium Italic + Family: Chakra Petch + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Medium: + Full Name: Chakra Petch Medium + Family: Chakra Petch + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-SemiBold: + Full Name: Chakra Petch SemiBold + Family: Chakra Petch + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-SemiBoldItalic: + Full Name: Chakra Petch SemiBold Italic + Family: Chakra Petch + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-ExtraLight: + Full Name: Chakra Petch ExtraLight + Family: Chakra Petch + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-LightItalic: + Full Name: Chakra Petch Light Italic + Family: Chakra Petch + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sinhala Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sinhala Sangam MN.ttc + Typefaces: + SinhalaSangamMN: + Full Name: Sinhala Sangam MN + Family: Sinhala Sangam MN + Style: Обычный + Version: 14.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Sinhala Sangam MN; 14.0d1e2; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SinhalaSangamMN-Bold: + Full Name: Sinhala Sangam MN Bold + Family: Sinhala Sangam MN + Style: Жирный + Version: 14.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Sinhala Sangam MN Bold; 14.0d1e2; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SignPainter.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SignPainter.ttc + Typefaces: + SignPainter-HouseScript: + Full Name: SignPainter-HouseScript + Family: SignPainter + Style: HouseScript + Version: 14.0d1e1 + Vendor: Sign Painter House Script - House Industries/Brand Design Co. Inc + Unique Name: SignPainter-HouseScript; 14.0d1e1; 2018-01-16 + Designer: House Industries + Copyright: (C)1999 House Industries/Brand Design Co., Inc. + Trademark: SignPainter-HouseScript is a trademark of House Industries/Brand Design Co., Inc. + Description: Part of the Sign Painter Font Kit from House Industries + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SignPainter-HouseScriptSemibold: + Full Name: SignPainter-HouseScript Semibold + Family: SignPainter + Style: HouseScript Semibold + Version: 14.0d1e1 + Vendor: Sign Painter House Script - House Industries/Brand Design Co. Inc + Unique Name: SignPainter-HouseScript Semibold; 14.0d1e1; 2018-01-16 + Designer: House Industries + Copyright: (C)1999 House Industries/Brand Design Co., Inc. + Trademark: SignPainter-HouseScript is a trademark of House Industries/Brand Design Co., Inc. + Description: Part of the Sign Painter Font Kit from House Industries + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Light.otf + Typefaces: + SFCompactText-Light: + Full Name: SF Compact Text Light + Family: SF Compact Text + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Heavy.otf + Typefaces: + SFProText-Heavy: + Full Name: SF Pro Text Heavy + Family: SF Pro Text + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArabicRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArabicRounded.ttf + Typefaces: + .SFArabicRounded-Regular: + Full Name: .SF Arabic Rounded Обычный + Family: .SF Arabic Rounded + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Medium: + Full Name: .SF Arabic Rounded Средний + Family: .SF Arabic Rounded + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Light: + Full Name: .SF Arabic Rounded Легкий + Family: .SF Arabic Rounded + Style: Легкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Thin: + Full Name: .SF Arabic Rounded Тонкий + Family: .SF Arabic Rounded + Style: Тонкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Ultralight: + Full Name: .SF Arabic Rounded Ультралегкий + Family: .SF Arabic Rounded + Style: Ультралегкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Semibold: + Full Name: .SF Arabic Rounded Полужирный + Family: .SF Arabic Rounded + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Bold: + Full Name: .SF Arabic Rounded Жирный + Family: .SF Arabic Rounded + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Heavy: + Full Name: .SF Arabic Rounded Тяжелый + Family: .SF Arabic Rounded + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Black: + Full Name: .SF Arabic Rounded Черный + Family: .SF Arabic Rounded + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroBangla.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a560b5e8f63af91685b27c087e9bb7df6a4a3902.asset/AssetData/TiroBangla.ttc + Typefaces: + TiroBangla-Italic: + Full Name: Tiro Bangla Italic + Family: Tiro Bangla + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Bangla Italic; 20.0d1e2; 2024-07-05 + Designer: Bangla: John Hudson & Fiona Ross, assisted by Neelakash Kshetrimayum. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Bangla is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroBangla: + Full Name: Tiro Bangla + Family: Tiro Bangla + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Bangla; 20.0d1e2; 2024-07-05 + Designer: Bangla: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Bangla is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Comic Sans MS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Comic Sans MS.ttf + Typefaces: + ComicSansMS: + Full Name: Comic Sans MS + Family: Comic Sans MS + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Comic Sans + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Description: Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W0.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W0.ttc + Typefaces: + HiraginoSans-W0: + Full Name: Hiragino Sans W0 + Family: Hiragino Sans + Style: W0 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W0; 20.0d1e1; 2024-01-26 + Designer: Yokokaku, Kunihiko Okano and JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 2014-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W0: + Full Name: .Hiragino Kaku Gothic Interface W0 + Family: .Hiragino Kaku Gothic Interface + Style: W0 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W0; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 2014 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SimSong.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/857d6c90171c328a4892c1492291d34e401d7f25.asset/AssetData/SimSong.ttc + Typefaces: + SimSong-Regular: + Full Name: SimSong Regular + Family: SimSong + Style: Обычный + Version: 16.0d3e1 + Unique Name: 簡宋 標準體; 16.0d3e1; 2020-06-04 + Copyright: Copyright © 2019 DynaComware Inc. All rights reserved. + Trademark: SimSong is a trademark of DynaComware Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SimSong-Bold: + Full Name: SimSong Bold + Family: SimSong + Style: Жирный + Version: 16.0d3e1 + Unique Name: 簡宋 粗體; 16.0d3e1; 2020-06-04 + Copyright: Copyright © 2019 DynaComware Inc. All rights reserved. + Trademark: SimSong is a trademark of DynaComware Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-SemiboldItalic.otf + Typefaces: + SFProText-SemiboldItalic: + Full Name: SF Pro Text Semibold Italic + Family: SF Pro Text + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS.ttf + Typefaces: + TrebuchetMS: + Full Name: Trebuchet MS + Family: Trebuchet MS + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72.ttc + Typefaces: + BodoniSvtyTwoITCTT-Book: + Full Name: Bodoni 72 Book + Family: Bodoni 72 + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoITCTT-Bold: + Full Name: Bodoni 72 Bold + Family: Bodoni 72 + Style: Жирный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Bold; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoITCTT-BookIta: + Full Name: Bodoni 72 Book Italic + Family: Bodoni 72 + Style: Книжный курсивный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Book Italic; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/11640094b5edf37d3e1ba1ef7794a5605a0491aa.asset/AssetData/LavaTelugu.ttc + Typefaces: + LavaTelugu-Medium: + Full Name: Lava Telugu Medium + Family: Lava Telugu + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Medium; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Bold: + Full Name: Lava Telugu Bold + Family: Lava Telugu + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Bold; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Regular: + Full Name: Lava Telugu Regular + Family: Lava Telugu + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Regular; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Heavy: + Full Name: Lava Telugu Heavy + Family: Lava Telugu + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Heavy; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Medium.otf + Typefaces: + SFCompactDisplay-Medium: + Full Name: SF Compact Display Medium + Family: SF Compact Display + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kailasa.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kailasa.ttc + Typefaces: + Kailasa-Bold: + Full Name: Kailasa Bold + Family: Kailasa + Style: Жирный + Version: 16.0d1e1 + Vendor: Steve Hartwell & Shojiro Nomura + Unique Name: Kailasa Bold; 16.0d1e1; 2020-07-06 + Designer: Yoichi Fukuda, Steve Hartwell & Shojiro Nomura + Copyright: Copyright © Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kailasa: + Full Name: Kailasa Regular + Family: Kailasa + Style: Обычный + Version: 16.0d1e1 + Vendor: Steve Hartwell & Shojiro Nomura + Unique Name: Kailasa Regular; 16.0d1e1; 2020-07-06 + Designer: Yoichi Fukuda, Steve Hartwell & Shojiro Nomura + Copyright: Copyright © Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Monaco.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Monaco.ttf + Typefaces: + Monaco: + Full Name: Monaco + Family: Monaco + Style: Обычный + Version: 17.0d1e5 + Unique Name: Monaco; 17.0d1e5; 2020-09-21 + Copyright: © 1990-2008 Apple Inc. © 1990-97 Type Solutions Inc. © 1990-97 The Font Bureau Inc. TrueType outline design of Monaco typeface created by Kris Holmes and Charles Bigelow. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZitherIndiaNarrow.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZitherIndiaNarrow.otf + Typefaces: + .ZitherIndiaNarrow-Regular: + Full Name: .Zither India Narrow Обычный + Family: .Zither India Narrow + Style: Обычный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Medium: + Full Name: .Zither India Narrow Средний + Family: .Zither India Narrow + Style: Средний + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Light: + Full Name: .Zither India Narrow Легкий + Family: .Zither India Narrow + Style: Легкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Thin: + Full Name: .Zither India Narrow Тонкий + Family: .Zither India Narrow + Style: Тонкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Ultralight: + Full Name: .Zither India Narrow Ультралегкий + Family: .Zither India Narrow + Style: Ультралегкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Semibold: + Full Name: .Zither India Narrow Полужирный + Family: .Zither India Narrow + Style: Полужирный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Bold: + Full Name: .Zither India Narrow Жирный + Family: .Zither India Narrow + Style: Жирный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Heavy: + Full Name: .Zither India Narrow Тяжелый + Family: .Zither India Narrow + Style: Тяжелый + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Black: + Full Name: .Zither India Narrow Черный + Family: .Zither India Narrow + Style: Черный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-RegularItalic.otf + Typefaces: + SFCompactText-Italic: + Full Name: SF Compact Text Italic + Family: SF Compact Text + Style: Курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OsakaMono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0818d874bf1d0e24a1fe62e79f407717792c5ee1.asset/AssetData/OsakaMono.ttf + Typefaces: + Osaka-Mono: + Full Name: Osaka-Mono + Family: Osaka + Style: Regular-Mono + Version: 16.0d1e2 + Unique Name: Osaka-Mono; 16.0d1e2; 2020-04-21 + Copyright: © 1990-2008 Apple Inc. + Trademark: HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baghdad.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Baghdad.ttc + Typefaces: + Baghdad: + Full Name: Baghdad Regular + Family: Baghdad + Style: Обычный + Version: 13.0d1e5 + Unique Name: Baghdad Regular; 13.0d1e5; 2017-06-13 + Copyright: Baghdad designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .BaghdadPUA: + Full Name: .Baghdad PUA + Family: .Baghdad PUA + Style: Обычный + Version: 13.0d1e5 + Unique Name: .Baghdad PUA; 13.0d1e5; 2017-06-13 + Copyright: Baghdad designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charm.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f40f0181bac46ce79e53d040ad5075b8221f78e1.asset/AssetData/Charm.ttc + Typefaces: + Charm-Bold: + Full Name: Charm Bold + Family: Charm + Style: Жирный + Version: Version 1.002 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.002;CDK ;Charm-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Charm Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charm-Regular: + Full Name: Charm Regular + Family: Charm + Style: Обычный + Version: Version 1.002 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.002;CDK ;Charm-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Charm Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Bold.otf + Typefaces: + SFProText-Bold: + Full Name: SF Pro Text Bold + Family: SF Pro Text + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSerif.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSerif.ttc + Typefaces: + PTSerif-Italic: + Full Name: PT Serif Italic + Family: PT Serif + Style: Курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-Bold: + Full Name: PT Serif Bold + Family: PT Serif + Style: Жирный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Bold; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-BoldItalic: + Full Name: PT Serif Bold Italic + Family: PT Serif + Style: Жирный курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Bold Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-Regular: + Full Name: PT Serif + Family: PT Serif + Style: Обычный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Raanana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Raanana.ttc + Typefaces: + Raanana: + Full Name: Raanana + Family: Raanana + Style: Обычный + Version: 14.0d1e14 + Vendor: Apple Computer, Inc. + Unique Name: Raanana; 14.0d1e14; 2020-10-14 + Copyright: © Apple, Inc. 1991-1995 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + RaananaBold: + Full Name: Raanana Bold + Family: Raanana + Style: Жирный + Version: 14.0d1e14 + Vendor: Apple Computer, Inc. + Unique Name: Raanana Bold; 14.0d1e14; 2020-10-14 + Copyright: © Apple, Inc. 1992-1995 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaDevanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fbd4792c7c114cd4daf3bcb562324ca2cf4cb4f5.asset/AssetData/SamaDevanagari.ttc + Typefaces: + SamaDevanagari-Bold: + Full Name: Sama Devanagari Bold + Family: Sama Devanagari + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Bold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Medium: + Full Name: Sama Devanagari Medium + Family: Sama Devanagari + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Medium; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Regular: + Full Name: Sama Devanagari Regular + Family: Sama Devanagari + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Regular; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-ExtraBold: + Full Name: Sama Devanagari ExtraBold + Family: Sama Devanagari + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-SemiBold: + Full Name: Sama Devanagari SemiBold + Family: Sama Devanagari + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari SemiBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Book: + Full Name: Sama Devanagari Book + Family: Sama Devanagari + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Book; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaGujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/67b92e6fd405724daed25cbdce52b35d4c413cd6.asset/AssetData/SamaGujarati.ttc + Typefaces: + SamaGujarati-Regular: + Full Name: Sama Gujarati Regular + Family: Sama Gujarati + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Regular; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-SemiBold: + Full Name: Sama Gujarati SemiBold + Family: Sama Gujarati + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati SemiBold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Book: + Full Name: Sama Gujarati Book + Family: Sama Gujarati + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Book; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Bold: + Full Name: Sama Gujarati Bold + Family: Sama Gujarati + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Bold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Medium: + Full Name: Sama Gujarati Medium + Family: Sama Gujarati + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Medium; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-ExtraBold: + Full Name: Sama Gujarati ExtraBold + Family: Sama Gujarati + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AmericanTypewriter.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AmericanTypewriter.ttc + Typefaces: + AmericanTypewriter-Condensed: + Full Name: American Typewriter Condensed + Family: American Typewriter + Style: Сжатый + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed; 16.0d2e4; 2020-07-06 + Copyright: Digitized Data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Light: + Full Name: American Typewriter Light + Family: American Typewriter + Style: Легкий + Version: 16.0d2e4 + Unique Name: American Typewriter Light; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-CondensedLight: + Full Name: American Typewriter Condensed Light + Family: American Typewriter + Style: Сжатый легкий + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed Light; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter: + Full Name: American Typewriter + Family: American Typewriter + Style: Обычный + Version: 16.0d2e4 + Unique Name: American Typewriter; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Semibold: + Full Name: American Typewriter Semibold + Family: American Typewriter + Style: Полужирный + Version: 16.0d2e4 + Unique Name: American Typewriter Semibold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Bold: + Full Name: American Typewriter Bold + Family: American Typewriter + Style: Жирный + Version: 16.0d2e4 + Unique Name: American Typewriter Bold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-CondensedBold: + Full Name: American Typewriter Condensed Bold + Family: American Typewriter + Style: Сжатый жирный + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed Bold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings 2.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings 2.ttf + Typefaces: + Wingdings2: + Full Name: Wingdings 2 + Family: Wingdings 2 + Style: Обычный + Version: Version 1.55x + Unique Name: Wingdings 2 + Copyright: Wingdings 2 designed by Bigelow & Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. Pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved. + Trademark: Wingdings is a trademark of Microsoft Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Medium.otf + Typefaces: + SFCompactText-Medium: + Full Name: SF Compact Text Medium + Family: SF Compact Text + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana.ttf + Typefaces: + Verdana: + Full Name: Verdana + Family: Verdana + Style: Обычный + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Regular:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroGurmukhi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/71af7d8a6612b05ff4da8daa889313789969c8c9.asset/AssetData/TiroGurmukhi.ttc + Typefaces: + TiroGurmukhi-Italic: + Full Name: Tiro Gurmukhi Italic + Family: Tiro Gurmukhi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Gurmukhi Italic; 20.0d1e2; 2024-07-05 + Designer: Gurmukhi: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Gurmukhi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroGurmukhi: + Full Name: Tiro Gurmukhi + Family: Tiro Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Gurmukhi; 20.0d1e2; 2024-07-05 + Designer: Gurmukhi: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Gurmukhi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HelveLTMM: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/HelveLTMM + Typefaces: + HelveticaLTMM: + Full Name: .Helvetica LT MM + Family: .Helvetica LT MM + Style: Обычный + Version: 1,006 + Unique Name: .Helvetica LT MM + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted (c) 1988, 1990, 1991, 2002-2004 Linotype Library GmbH, www.linotype.com. All rights reserved. This software is the + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a whplly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Bold.otf + Typefaces: + SFProRounded-Bold: + Full Name: SF Pro Rounded Bold + Family: SF Pro Rounded + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Bold.ttf + Typefaces: + TimesNewRomanPS-BoldMT: + Full Name: Times New Roman Полужирный + Family: Times New Roman + Style: Полужирный + Version: Version 5.01.4x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Bold:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SnellRoundhand.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SnellRoundhand.ttc + Typefaces: + SnellRoundhand: + Full Name: Snell Roundhand + Family: Snell Roundhand + Style: Обычный + Version: 15.0d1e1 + Unique Name: Snell Roundhand; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a Trademark of Linotype AG and/or its subsidiaries + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SnellRoundhand-Black: + Full Name: Snell Roundhand Black + Family: Snell Roundhand + Style: Черный + Version: 15.0d1e1 + Unique Name: Snell Roundhand Black; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a trademark of Linotype AG and/or its subsidiaries. + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SnellRoundhand-Bold: + Full Name: Snell Roundhand Bold + Family: Snell Roundhand + Style: Жирный + Version: 15.0d1e1 + Unique Name: Snell Roundhand Bold; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a trademark of Linotype AG and/or its subsidiaries. + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Krungthep.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Krungthep.ttf + Typefaces: + Krungthep: + Full Name: Krungthep + Family: Krungthep + Style: Обычный + Version: 14.0d1e1 + Unique Name: Krungthep; 14.0d1e1; 2017-11-02 + Copyright: © 1992-2003 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Al Tarikh.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Al Tarikh.ttc + Typefaces: + AlTarikh: + Full Name: Al Tarikh Regular + Family: Al Tarikh + Style: Обычный + Version: 13.0d2e1 + Unique Name: Al Tarikh Regular; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlTarikhPUA: + Full Name: .Al Tarikh PUA + Family: .Al Tarikh PUA + Style: Обычный + Version: 13.0d2e1 + Unique Name: .Al Tarikh PUA; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hoefler Text.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Hoefler Text.ttc + Typefaces: + HoeflerText-Italic: + Full Name: Hoefler Text Italic + Family: Hoefler Text + Style: Курсивный + Version: 14.0d1e2 + Vendor: Apple Inc. + Unique Name: Hoefler Text Italic; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-Black: + Full Name: Hoefler Text Black + Family: Hoefler Text + Style: Насыщенный жирный + Version: 14.0d1e2 + Unique Name: Hoefler Text Black; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-BlackItalic: + Full Name: Hoefler Text Black Italic + Family: Hoefler Text + Style: Жирный курсивный + Version: 14.0d1e2 + Unique Name: Hoefler Text Black Italic; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-Regular: + Full Name: Hoefler Text + Family: Hoefler Text + Style: Обычный + Version: 14.0d1e2 + Unique Name: Hoefler Text; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhainaOdia.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/01be3235e91dfd6261c811482ac3853dfad0bb14.asset/AssetData/BalooBhainaOdia.ttc + Typefaces: + BalooBhaina2-Bold: + Full Name: Baloo Bhaina 2 Bold + Family: Baloo Bhaina 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-SemiBold: + Full Name: Baloo Bhaina 2 SemiBold + Family: Baloo Bhaina 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-ExtraBold: + Full Name: Baloo Bhaina 2 ExtraBold + Family: Baloo Bhaina 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-Regular: + Full Name: Baloo Bhaina 2 Regular + Family: Baloo Bhaina 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-Medium: + Full Name: Baloo Bhaina 2 Medium + Family: Baloo Bhaina 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuppyTC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e28431125242b9a298de3296370abdab4a7e8666.asset/AssetData/YuppyTC-Regular.otf + Typefaces: + YuppyTC-Regular: + Full Name: Yuppy TC Regular + Family: Yuppy TC + Style: Обычный + Version: 13.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Yuppy TC Regular; 13.0d1e1; 2017-06-09 + Copyright: © 1991-2008 China Type Design Ltd. Monotype Imaging Inc. All rights reserved. + Trademark: Yuppy is a trademark of Monotype Imaging Inc. and Trademark Office and may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Geneva.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Geneva.ttf + Typefaces: + Geneva: + Full Name: Geneva + Family: Geneva + Style: Обычный + Version: 17.0d2e1 + Unique Name: Geneva; 17.0d2e1; 2020-12-12 + Copyright: © 1990-2016 Apple Inc. © 1990-98 Type Solutions Inc. © 1990-98 The Font Bureau Inc. TrueType outline design of Geneva typeface created by Kris Holmes and Charles Bigelow. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LiHeiPro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3a9dbc8ddc8b85f43055a28fb5d551e905d43de2.asset/AssetData/LiHeiPro.ttf + Typefaces: + LiHeiPro: + Full Name: LiHei Pro + Family: LiHei Pro + Style: Средний + Version: 17.0d1e2 + Unique Name: LiHei Pro; 17.0d1e2; 2021-06-23 + Copyright: (c) Copyright DynaComware Corp. 2003 + Trademark: Trademark by DynaComware Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-BlackItalic.otf + Typefaces: + SFProDisplay-BlackItalic: + Full Name: SF Pro Display Black Italic + Family: SF Pro Display + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Medium.otf + Typefaces: + SFProDisplay-Medium: + Full Name: SF Pro Display Medium + Family: SF Pro Display + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Silom.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Silom.ttf + Typefaces: + Silom: + Full Name: Silom + Family: Silom + Style: Обычный + Version: 14.0d1e1 + Unique Name: Silom; 14.0d1e1; 2017-11-02 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Light.otf + Typefaces: + SFCompactDisplay-Light: + Full Name: SF Compact Display Light + Family: SF Compact Display + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Libian.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7278ac2566252649b05c5a2b07c7d45be59f47c5.asset/AssetData/Libian.ttc + Typefaces: + STLibianSC-Regular: + Full Name: Libian SC Regular + Family: Libian SC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Libian SC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STLibianTC-Regular: + Full Name: Libian TC Regular + Family: Libian TC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Libian TC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFHebrewRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFHebrewRounded.ttf + Typefaces: + .SFHebrewRounded-Regular: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Обычный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Medium: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Средний + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Light: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Легкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Thin: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Тонкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Ultralight: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Ультралегкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Semibold: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Полужирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Bold: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Жирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Heavy: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Тяжелый + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Black: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Черный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Maku-Devanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/dd7563f21769eb637432ba6b3d5309200eb6773e.asset/AssetData/Maku-Devanagari.ttc + Typefaces: + Maku-Bold: + Full Name: Maku Bold + Family: Maku + Style: Жирный + Version: 20.0d1e2 + Vendor: Mota Italic + Unique Name: Maku Bold; 20.0d1e2; 2024-07-05 + Designer: Kimya Gandhi and Rob Keller + Copyright: Copyright © 2017, 2019 by Kimya Gandhi. All rights reserved. + Trademark: Maku is a trademark of Mota Italic. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Maku-Regular: + Full Name: Maku Regular + Family: Maku + Style: Обычный + Version: 20.0d1e2 + Vendor: Mota Italic + Unique Name: Maku Regular; 20.0d1e2; 2024-07-05 + Designer: Kimya Gandhi and Rob Keller + Copyright: Copyright © 2017, 2019 by Kimya Gandhi. All rights reserved. + Trademark: Maku is a trademark of Mota Italic. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-HeavyItalic.otf + Typefaces: + SFCompactText-HeavyItalic: + Full Name: SF Compact Text Heavy Italic + Family: SF Compact Text + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New.ttf + Typefaces: + CourierNewPSMT: + Full Name: Courier New + Family: Courier New + Style: Обычный + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir.ttc + Typefaces: + Avenir-Heavy: + Full Name: Avenir Heavy + Family: Avenir + Style: Тяжелый + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Heavy; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-LightOblique: + Full Name: Avenir Light Oblique + Family: Avenir + Style: Легкий наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Light Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-BlackOblique: + Full Name: Avenir Black Oblique + Family: Avenir + Style: Черный наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Black Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Light: + Full Name: Avenir Light + Family: Avenir + Style: Легкий + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Light; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Book: + Full Name: Avenir Book + Family: Avenir + Style: Книжный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Book; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Oblique: + Full Name: Avenir Oblique + Family: Avenir + Style: Наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-MediumOblique: + Full Name: Avenir Medium Oblique + Family: Avenir + Style: Средний наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Medium Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-HeavyOblique: + Full Name: Avenir Heavy Oblique + Family: Avenir + Style: Тяжелый наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Heavy Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Black: + Full Name: Avenir Black + Family: Avenir + Style: Черный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Black; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-BookOblique: + Full Name: Avenir Book Oblique + Family: Avenir + Style: Книжный наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Book Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Roman: + Full Name: Avenir Roman + Family: Avenir + Style: Латинский + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Roman; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Medium: + Full Name: Avenir Medium + Family: Avenir + Style: Средний + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Medium; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Pinpoint 6 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Pinpoint 6 Dot.ttf + Typefaces: + AppleBraille-Pinpoint6Dot: + Full Name: Apple Braille Pinpoint 6 Dot + Family: Apple Braille + Style: Pinpoint 6 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Pinpoint 6 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Pinpoint 8 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Pinpoint 8 Dot.ttf + Typefaces: + AppleBraille-Pinpoint8Dot: + Full Name: Apple Braille Pinpoint 8 Dot + Family: Apple Braille + Style: Pinpoint 8 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Pinpoint 8 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCompressedTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/17c994707700838ad3c3202029b621fb85a81b0c.asset/AssetData/OctoberCompressedTamil.ttc + Typefaces: + OctoberCompressedTL-Regular: + Full Name: October Compressed Tamil Regular + Family: October Compressed Tamil + Style: Обычный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Regular; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-ExtraLight: + Full Name: October Compressed Tamil ExtraLight + Family: October Compressed Tamil + Style: Сверхлегкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil ExtraLight; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Hairline: + Full Name: October Compressed Tamil Hairline + Family: October Compressed Tamil + Style: С соединительными штрихами + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Hairline; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Thin: + Full Name: October Compressed Tamil Thin + Family: October Compressed Tamil + Style: Тонкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Thin; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Medium: + Full Name: October Compressed Tamil Medium + Family: October Compressed Tamil + Style: Средний + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Medium; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Bold: + Full Name: October Compressed Tamil Bold + Family: October Compressed Tamil + Style: Жирный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Bold; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Light: + Full Name: October Compressed Tamil Light + Family: October Compressed Tamil + Style: Легкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Light; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Black: + Full Name: October Compressed Tamil Black + Family: October Compressed Tamil + Style: Черный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Black; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Heavy: + Full Name: October Compressed Tamil Heavy + Family: October Compressed Tamil + Style: Тяжелый + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Heavy; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lao Sangam MN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Lao Sangam MN.ttf + Typefaces: + LaoSangamMN: + Full Name: Lao Sangam MN + Family: Lao Sangam MN + Style: Обычный + Version: 14.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao Sangam MN; 14.0d1e6; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Italic.ttf + Typefaces: + Verdana-Italic: + Full Name: Verdana Курсив + Family: Verdana + Style: Курсив + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Italic:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Telugu Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Telugu Sangam MN.ttc + Typefaces: + TeluguSangamMN: + Full Name: Telugu Sangam MN + Family: Telugu Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Telugu Sangam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Telugu Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TeluguSangamMN-Bold: + Full Name: Telugu Sangam MN Bold + Family: Telugu Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Telugu Sangam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Telugu Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W8.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W8.ttc + Typefaces: + HiraginoSans-W8: + Full Name: Hiragino Sans W8 + Family: Hiragino Sans + Style: W8 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W8; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W8: + Full Name: .Hiragino Kaku Gothic Interface W8 + Family: .Hiragino Kaku Gothic Interface + Style: W8 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W8; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bangla Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bangla Sangam MN.ttc + Typefaces: + BanglaSangamMN: + Full Name: Bangla Sangam MN + Family: Bangla Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla Sangam MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BanglaSangamMN-Bold: + Full Name: Bangla Sangam MN Bold + Family: Bangla Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla Sangam MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille.ttf + Typefaces: + AppleBraille: + Full Name: Apple Braille + Family: Apple Braille + Style: Обычный + Version: 13.0d2e27 + Unique Name: Apple Braille; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Bold.otf + Typefaces: + SFProDisplay-Bold: + Full Name: SF Pro Display Bold + Family: SF Pro Display + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Myanmar Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Myanmar Sangam MN.ttc + Typefaces: + MyanmarSangamMN: + Full Name: Myanmar Sangam MN + Family: Myanmar Sangam MN + Style: Обычный + Version: 14.0d1e8 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar Sangam MN; 14.0d1e8; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MyanmarSangamMN-Bold: + Full Name: Myanmar Sangam MN Bold + Family: Myanmar Sangam MN + Style: Жирный + Version: 14.0d1e8 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar Sangam MN Bold; 14.0d1e8; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kyokasho.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5b843781be7f58151ada774942a0eaa9ec79bd57.asset/AssetData/Kyokasho.ttc + Typefaces: + YuKyo_Yoko-Bold: + Full Name: YuKyokasho Yoko Bold + Family: YuKyokasho Yoko + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Yoko Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo-Medium: + Full Name: YuKyokasho Medium + Family: YuKyokasho + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo-Bold: + Full Name: YuKyokasho Bold + Family: YuKyokasho + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo_Yoko-Medium: + Full Name: YuKyokasho Yoko Medium + Family: YuKyokasho Yoko + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Yoko Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Damascus.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Damascus.ttc + Typefaces: + DamascusBold: + Full Name: Damascus Bold + Family: Damascus + Style: Жирный + Version: 20.0d1e2 + Unique Name: Damascus Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Damascus: + Full Name: Damascus Regular + Family: Damascus + Style: Обычный + Version: 20.0d1e2 + Unique Name: Damascus Regular; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusMedium: + Full Name: Damascus Medium + Family: Damascus + Style: Средний + Version: 20.0d1e2 + Unique Name: Damascus Medium; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusSemiBold: + Full Name: Damascus Semi Bold + Family: Damascus + Style: Полужирный + Version: 20.0d1e2 + Unique Name: Damascus Semi Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusLight: + Full Name: Damascus Light + Family: Damascus + Style: Легкий + Version: 20.0d1e2 + Unique Name: Damascus Light; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUA: + Full Name: .Damascus PUA + Family: .Damascus PUA + Style: Обычный + Version: 20.0d1e2 + Unique Name: .Damascus PUA; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUAMedium: + Full Name: .Damascus PUA Medium + Family: .Damascus PUA + Style: Средний + Version: 20.0d1e2 + Unique Name: .Damascus PUA Medium; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUALight: + Full Name: .Damascus PUA Light + Family: .Damascus PUA + Style: Легкий + Version: 20.0d1e2 + Unique Name: .Damascus PUA Light; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUASemiBold: + Full Name: .Damascus PUA Semi Bold + Family: .Damascus PUA + Style: Полужирный + Version: 20.0d1e2 + Unique Name: .Damascus PUA Semi Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUABold: + Full Name: .Damascus PUA Bold + Family: .Damascus PUA + Style: Жирный + Version: 20.0d1e2 + Unique Name: .Damascus PUA Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Bold Italic.ttf + Typefaces: + ArialNarrow-BoldItalic: + Full Name: Arial Narrow Полужирный Курсив + Family: Arial Narrow + Style: Полужирный Курсив + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Bold Italic : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Bold Italic.ttf + Typefaces: + CourierNewPS-BoldItalicMT: + Full Name: Courier New Полужирный Курсив + Family: Courier New + Style: Полужирный Курсив + Version: Version 5.00x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Bold Italic:version 3.10 (Microsoft) + Designer: Howard Kettler + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + CJKSymbolsFallback.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/CJKSymbolsFallback.ttc + Typefaces: + .CJKSymbolsFallbackHK-Regular: + Full Name: .CJK Symbols Fallback HK Обычный + Family: .CJK Symbols Fallback HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Medium: + Full Name: .CJK Symbols Fallback HK Средний + Family: .CJK Symbols Fallback HK + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Light: + Full Name: .CJK Symbols Fallback HK Легкий + Family: .CJK Symbols Fallback HK + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Thin: + Full Name: .CJK Symbols Fallback HK Обычный + Family: .CJK Symbols Fallback HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Semibold: + Full Name: .CJK Symbols Fallback HK Полужирный + Family: .CJK Symbols Fallback HK + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Bold: + Full Name: .CJK Symbols Fallback HK Жирный + Family: .CJK Symbols Fallback HK + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Heavy: + Full Name: .CJK Symbols Fallback HK Тяжелый + Family: .CJK Symbols Fallback HK + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Regular: + Full Name: .CJK Symbols Fallback MO Обычный + Family: .CJK Symbols Fallback MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Medium: + Full Name: .CJK Symbols Fallback MO Средний + Family: .CJK Symbols Fallback MO + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Light: + Full Name: .CJK Symbols Fallback MO Легкий + Family: .CJK Symbols Fallback MO + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Thin: + Full Name: .CJK Symbols Fallback MO Обычный + Family: .CJK Symbols Fallback MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Semibold: + Full Name: .CJK Symbols Fallback MO Полужирный + Family: .CJK Symbols Fallback MO + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Bold: + Full Name: .CJK Symbols Fallback MO Жирный + Family: .CJK Symbols Fallback MO + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Heavy: + Full Name: .CJK Symbols Fallback MO Тяжелый + Family: .CJK Symbols Fallback MO + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Regular: + Full Name: .CJK Symbols Fallback SC Обычный + Family: .CJK Symbols Fallback SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Medium: + Full Name: .CJK Symbols Fallback SC Средний + Family: .CJK Symbols Fallback SC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Light: + Full Name: .CJK Symbols Fallback SC Легкий + Family: .CJK Symbols Fallback SC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Thin: + Full Name: .CJK Symbols Fallback SC Обычный + Family: .CJK Symbols Fallback SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Semibold: + Full Name: .CJK Symbols Fallback SC Полужирный + Family: .CJK Symbols Fallback SC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Bold: + Full Name: .CJK Symbols Fallback SC Жирный + Family: .CJK Symbols Fallback SC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Heavy: + Full Name: .CJK Symbols Fallback SC Тяжелый + Family: .CJK Symbols Fallback SC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Regular: + Full Name: .CJK Symbols Fallback TC Обычный + Family: .CJK Symbols Fallback TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Medium: + Full Name: .CJK Symbols Fallback TC Средний + Family: .CJK Symbols Fallback TC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Light: + Full Name: .CJK Symbols Fallback TC Легкий + Family: .CJK Symbols Fallback TC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Thin: + Full Name: .CJK Symbols Fallback TC Обычный + Family: .CJK Symbols Fallback TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Semibold: + Full Name: .CJK Symbols Fallback TC Полужирный + Family: .CJK Symbols Fallback TC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Bold: + Full Name: .CJK Symbols Fallback TC Жирный + Family: .CJK Symbols Fallback TC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Heavy: + Full Name: .CJK Symbols Fallback TC Тяжелый + Family: .CJK Symbols Fallback TC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Regular: + Full Name: .CJK Symbols Fallback Watch HK Обычный + Family: .CJK Symbols Fallback Watch HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Medium: + Full Name: .CJK Symbols Fallback Watch HK Средний + Family: .CJK Symbols Fallback Watch HK + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Light: + Full Name: .CJK Symbols Fallback Watch HK Легкий + Family: .CJK Symbols Fallback Watch HK + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Thin: + Full Name: .CJK Symbols Fallback Watch HK Обычный + Family: .CJK Symbols Fallback Watch HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Semibold: + Full Name: .CJK Symbols Fallback Watch HK Полужирный + Family: .CJK Symbols Fallback Watch HK + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Bold: + Full Name: .CJK Symbols Fallback Watch HK Жирный + Family: .CJK Symbols Fallback Watch HK + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Heavy: + Full Name: .CJK Symbols Fallback Watch HK Тяжелый + Family: .CJK Symbols Fallback Watch HK + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Regular: + Full Name: .CJK Symbols Fallback Watch MO Обычный + Family: .CJK Symbols Fallback Watch MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Medium: + Full Name: .CJK Symbols Fallback Watch MO Средний + Family: .CJK Symbols Fallback Watch MO + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Light: + Full Name: .CJK Symbols Fallback Watch MO Легкий + Family: .CJK Symbols Fallback Watch MO + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Thin: + Full Name: .CJK Symbols Fallback Watch MO Обычный + Family: .CJK Symbols Fallback Watch MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Semibold: + Full Name: .CJK Symbols Fallback Watch MO Полужирный + Family: .CJK Symbols Fallback Watch MO + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Bold: + Full Name: .CJK Symbols Fallback Watch MO Жирный + Family: .CJK Symbols Fallback Watch MO + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Heavy: + Full Name: .CJK Symbols Fallback Watch MO Тяжелый + Family: .CJK Symbols Fallback Watch MO + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Regular: + Full Name: .CJK Symbols Fallback Watch SC Обычный + Family: .CJK Symbols Fallback Watch SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Medium: + Full Name: .CJK Symbols Fallback Watch SC Средний + Family: .CJK Symbols Fallback Watch SC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Light: + Full Name: .CJK Symbols Fallback Watch SC Легкий + Family: .CJK Symbols Fallback Watch SC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Thin: + Full Name: .CJK Symbols Fallback Watch SC Обычный + Family: .CJK Symbols Fallback Watch SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Semibold: + Full Name: .CJK Symbols Fallback Watch SC Полужирный + Family: .CJK Symbols Fallback Watch SC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Bold: + Full Name: .CJK Symbols Fallback Watch SC Жирный + Family: .CJK Symbols Fallback Watch SC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Heavy: + Full Name: .CJK Symbols Fallback Watch SC Тяжелый + Family: .CJK Symbols Fallback Watch SC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Regular: + Full Name: .CJK Symbols Fallback Watch TC Обычный + Family: .CJK Symbols Fallback Watch TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Medium: + Full Name: .CJK Symbols Fallback Watch TC Средний + Family: .CJK Symbols Fallback Watch TC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Light: + Full Name: .CJK Symbols Fallback Watch TC Легкий + Family: .CJK Symbols Fallback Watch TC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Thin: + Full Name: .CJK Symbols Fallback Watch TC Обычный + Family: .CJK Symbols Fallback Watch TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Semibold: + Full Name: .CJK Symbols Fallback Watch TC Полужирный + Family: .CJK Symbols Fallback Watch TC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Bold: + Full Name: .CJK Symbols Fallback Watch TC Жирный + Family: .CJK Symbols Fallback Watch TC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Heavy: + Full Name: .CJK Symbols Fallback Watch TC Тяжелый + Family: .CJK Symbols Fallback Watch TC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0021f10c176530a735946770945ace69fc82bba7.asset/AssetData/OctoberTamil.ttc + Typefaces: + OctoberTL-Regular: + Full Name: October Tamil Regular + Family: October Tamil + Style: Обычный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Regular; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-ExtraLight: + Full Name: October Tamil ExtraLight + Family: October Tamil + Style: Сверхлегкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil ExtraLight; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Black: + Full Name: October Tamil Black + Family: October Tamil + Style: Черный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Black; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Bold: + Full Name: October Tamil Bold + Family: October Tamil + Style: Жирный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Bold; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Hairline: + Full Name: October Tamil Hairline + Family: October Tamil + Style: С соединительными штрихами + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Hairline; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Light: + Full Name: October Tamil Light + Family: October Tamil + Style: Легкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Light; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Thin: + Full Name: October Tamil Thin + Family: October Tamil + Style: Тонкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Thin; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Medium: + Full Name: October Tamil Medium + Family: October Tamil + Style: Средний + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Medium; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Heavy: + Full Name: October Tamil Heavy + Family: October Tamil + Style: Тяжелый + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Heavy; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Oriya MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Oriya MN.ttc + Typefaces: + OriyaMN-Bold: + Full Name: Oriya MN Bold + Family: Oriya MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Oriya MN Bold; 20.0d1e3; 2024-07-18 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Oriya MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OriyaMN: + Full Name: Oriya MN + Family: Oriya MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Oriya MN; 20.0d1e3; 2024-07-18 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Oriya MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-HeavyItalic.otf + Typefaces: + SFProDisplay-HeavyItalic: + Full Name: SF Pro Display Heavy Italic + Family: SF Pro Display + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Menlo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Menlo.ttc + Typefaces: + Menlo-BoldItalic: + Full Name: Menlo Bold Italic + Family: Menlo + Style: Жирный курсивный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Bold Italic; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Italic: + Full Name: Menlo Italic + Family: Menlo + Style: Курсивный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Italic; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Bold: + Full Name: Menlo Bold + Family: Menlo + Style: Жирный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Bold; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Regular: + Full Name: Menlo Regular + Family: Menlo + Style: Обычный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Regular; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumScript.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6f4c91728bb824d6960725ec479c355eab7eeba8.asset/AssetData/NanumScript.ttc + Typefaces: + NanumPen: + Full Name: Nanum Pen Script + Family: Nanum Pen Script + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: Nanum Pen Script; 13.0d1e3; 2017-06-14 + Designer: Doo-yul Kwak; Hyunghwan Choi; Nicolas Noh; + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumPen is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumBrush: + Full Name: Nanum Brush Script + Family: Nanum Brush Script + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: Nanum Brush Script; 13.0d1e3; 2017-06-14 + Designer: Kwak Doo-yul; Nicolas Noh; + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumBrush is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHannaAir-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/12cc699be28fb04f3e3c4969a0378a87b920b174.asset/AssetData/BMHannaAir-Regular.otf + Typefaces: + BMHANNAAirOTF: + Full Name: BM HANNA Air OTF + Family: BM Hanna Air + Style: Обычный + Version: 18.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM HANNA Air OTF; 18.0d1e6; 2022-09-27 + Designer: Woowa Brothers : Cheoljun Lim; Soyoung Lee; Taehyun Cha; Byungsun Park; Minjin Kim; Hyesun Chae; Myungsoo Han; Bongjin Kim; & Sandoll : Jooyeon Kang; Jinhee Kim; Dokyung Lee; + Copyright: Copyright © 2018 WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BM HANNA Air-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMKirangHaerang-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/cd59971ded42add9070aa2172265ba7fcf8d9327.asset/AssetData/BMKirangHaerang-Regular.otf + Typefaces: + BMKIRANGHAERANG-OTF: + Full Name: BM KIRANGHAERANG OTF + Family: BM Kirang Haerang + Style: Обычный + Version: 14.0d1e3 + Vendor: Sandoll Communications Inc. + Unique Name: BM KIRANGHAERANG OTF; 14.0d1e3; 2022-09-27 + Designer: Bongjin Kim; Myungsoo Han; Namu Lee; Hyesun Chae; Soyoung Lee; Dokyung Lee; Chorong Kim; Juseong Park; Sang-a Kim; + Copyright: Copyright © 2017, WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BMKIRANGHAERANG-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArimaKoshi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6fe206600409e98dcd3e18af1427806070d0150f.asset/AssetData/ArimaKoshi.ttc + Typefaces: + ArimaKoshi-Medium: + Full Name: ArimaKoshi-Medium + Family: Arima Koshi + Style: Средний + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Medium + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Regular: + Full Name: ArimaKoshi-Regular + Family: Arima Koshi + Style: Обычный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Regular + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Black: + Full Name: ArimaKoshi-Black + Family: Arima Koshi + Style: Черный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Black + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Thin: + Full Name: ArimaKoshi-Thin + Family: Arima Koshi + Style: Тонкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Thin + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-ExtraBold: + Full Name: ArimaKoshi-ExtraBold + Family: Arima Koshi + Style: Сверхжирный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-ExtraBold + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-ExtraLight: + Full Name: ArimaKoshi-ExtraLight + Family: Arima Koshi + Style: Сверхлегкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-ExtraLight + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Light: + Full Name: ArimaKoshi-Light + Family: Arima Koshi + Style: Легкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Light + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Bold: + Full Name: Arima Koshi Bold + Family: Arima Koshi + Style: Жирный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Bold + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Yuanti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/b86e58f38fd21e9782e70a104676f1655e72ebab.asset/AssetData/Yuanti.ttc + Typefaces: + STYuanti-TC-Regular: + Full Name: Yuanti TC Regular + Family: Yuanti TC + Style: Обычный + Version: 17.0d1e4 + Unique Name: Yuanti TC Regular; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-TC-Light: + Full Name: Yuanti TC Light + Family: Yuanti TC + Style: Легкий + Version: 17.0d1e4 + Unique Name: Yuanti TC Light; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Bold: + Full Name: Yuanti SC Bold + Family: Yuanti SC + Style: Жирный + Version: 17.0d1e4 + Unique Name: Yuanti SC Bold; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Regular: + Full Name: Yuanti SC Regular + Family: Yuanti SC + Style: Обычный + Version: 17.0d1e4 + Unique Name: Yuanti SC Regular; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Light: + Full Name: Yuanti SC Light + Family: Yuanti SC + Style: Легкий + Version: 17.0d1e4 + Unique Name: Yuanti SC Light; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-TC-Bold: + Full Name: Yuanti TC Bold + Family: Yuanti TC + Style: Жирный + Version: 17.0d1e4 + Unique Name: Yuanti TC Bold; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Regular.otf + Typefaces: + SFCompactText-Regular: + Full Name: SF Compact Text Regular + Family: SF Compact Text + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooChettanMalayalam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a238bc4fd92d2e0ca8d046339d29abdbce1342c0.asset/AssetData/BalooChettanMalayalam.ttc + Typefaces: + BalooChettan2-Regular: + Full Name: Baloo Chettan 2 Regular + Family: Baloo Chettan 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-SemiBold: + Full Name: Baloo Chettan 2 SemiBold + Family: Baloo Chettan 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-Medium: + Full Name: Baloo Chettan 2 Medium + Family: Baloo Chettan 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-Bold: + Full Name: Baloo Chettan 2 Bold + Family: Baloo Chettan 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-ExtraBold: + Full Name: Baloo Chettan 2 ExtraBold + Family: Baloo Chettan 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PartyLET-plain.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PartyLET-plain.ttf + Typefaces: + PartyLetPlain: + Full Name: Party LET Plain + Family: Party LET + Style: Простой + Version: 16.0d1e2 + Unique Name: Party LET Plain; 16.0d1e2; 2020-08-17 + Copyright: © 1993 Esselte Letraset Limited + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Cochin.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Cochin.ttc + Typefaces: + Cochin: + Full Name: Cochin + Family: Cochin + Style: Обычный + Version: 13.0d2e1 + Unique Name: Cochin; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-Bold: + Full Name: Cochin Bold + Family: Cochin + Style: Жирный + Version: 13.0d2e1 + Unique Name: Cochin Bold; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-Italic: + Full Name: Cochin Italic + Family: Cochin + Style: Курсивный + Version: 13.0d2e1 + Unique Name: Cochin Italic; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-BoldItalic: + Full Name: Cochin Bold Italic + Family: Cochin + Style: Жирный курсивный + Version: 13.0d2e1 + Unique Name: Cochin Bold Italic; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCompressedDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1ff4e547c28844b2b95c93618c4ecf5d9e46fe51.asset/AssetData/OctoberCompressedDevanagari.ttc + Typefaces: + OctoberCompressedDL-Regular: + Full Name: October Compressed Devanagari Regular + Family: October Compressed Devanagari + Style: Обычный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Regular; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Hairline: + Full Name: October Compressed Devanagari Hairline + Family: October Compressed Devanagari + Style: С соединительными штрихами + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Hairline; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Heavy: + Full Name: October Compressed Devanagari Heavy + Family: October Compressed Devanagari + Style: Тяжелый + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Heavy; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-ExtraLight: + Full Name: October Compressed Devanagari ExtraLight + Family: October Compressed Devanagari + Style: Сверхлегкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari ExtraLight; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Bold: + Full Name: October Compressed Devanagari Bold + Family: October Compressed Devanagari + Style: Жирный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Bold; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Thin: + Full Name: October Compressed Devanagari Thin + Family: October Compressed Devanagari + Style: Тонкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Thin; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Black: + Full Name: October Compressed Devanagari Black + Family: October Compressed Devanagari + Style: Черный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Black; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Medium: + Full Name: October Compressed Devanagari Medium + Family: October Compressed Devanagari + Style: Средний + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Medium; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Light: + Full Name: October Compressed Devanagari Light + Family: October Compressed Devanagari + Style: Легкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Light; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DIN Alternate Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DIN Alternate Bold.ttf + Typefaces: + DINAlternate-Bold: + Full Name: DIN Alternate Bold + Family: DIN Alternate + Style: Жирный + Version: 13.0d3e2 + Unique Name: DIN Alternate Bold; 13.0d3e2; 2017-11-30 + Designer: H. Berthold AG + Copyright: Copyright (c) 1988, 1991, 2003 Linotype Library GmbH, www.linotype.com. All rights reserved. + Trademark: DINSchrift + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroHindi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6d5a94913b06cb642500dea1e315d7105cff5dc6.asset/AssetData/TiroHindi.ttc + Typefaces: + TiroDevaHindi-Italic: + Full Name: Tiro Devanagari Hindi Italic + Family: Tiro Devanagari Hindi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Hindi Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Hindi and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaHindi: + Full Name: Tiro Devanagari Hindi + Family: Tiro Devanagari Hindi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd. + Unique Name: Tiro Devanagari Hindi; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Hindi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumMyeongjo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/70816a43827731d40efe234b94feba96db91024f.asset/AssetData/NanumMyeongjo.ttc + Typefaces: + NanumMyeongjoBold: + Full Name: NanumMyeongjoBold + Family: Nanum Myeongjo + Style: Жирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo Bold; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjoBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumMyeongjoExtraBold: + Full Name: NanumMyeongjoExtraBold + Family: Nanum Myeongjo + Style: Сверхжирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo ExtraBold; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjoExtraBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumMyeongjo: + Full Name: NanumMyeongjo + Family: Nanum Myeongjo + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjo is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaVaani-Gujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0dc365b1dd1c8d8e8110f6909ac0070b8f9e354f.asset/AssetData/MuktaVaani-Gujarati.ttc + Typefaces: + MuktaVaani-SemiBold: + Full Name: Mukta Vaani SemiBold + Family: Mukta Vaani + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Medium: + Full Name: Mukta Vaani Medium + Family: Mukta Vaani + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Regular: + Full Name: Mukta Vaani Regular + Family: Mukta Vaani + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Bold: + Full Name: Mukta Vaani Bold + Family: Mukta Vaani + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Light: + Full Name: Mukta Vaani Light + Family: Mukta Vaani + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-ExtraBold: + Full Name: Mukta Vaani ExtraBold + Family: Mukta Vaani + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-ExtraLight: + Full Name: Mukta Vaani ExtraLight + Family: Mukta Vaani + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W1.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W1.ttc + Typefaces: + HiraginoSans-W1: + Full Name: Hiragino Sans W1 + Family: Hiragino Sans + Style: W1 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W1; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W1: + Full Name: .Hiragino Kaku Gothic Interface W1 + Family: .Hiragino Kaku Gothic Interface + Style: W1 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W1; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumGothic.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bad9b4bf17cf1669dde54184ba4431c22dcad27b.asset/AssetData/NanumGothic.ttc + Typefaces: + NanumGothic: + Full Name: NanumGothic + Family: Nanum Gothic + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothic is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumGothicExtraBold: + Full Name: NanumGothic ExtraBold + Family: Nanum Gothic + Style: Сверхжирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic ExtraBold; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothicExtraBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumGothicBold: + Full Name: NanumGothic Bold + Family: Nanum Gothic + Style: Жирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic Bold; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothicBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Bold.ttf + Typefaces: + CourierNewPS-BoldMT: + Full Name: Courier New Полужирный + Family: Courier New + Style: Полужирный + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Bold:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Outline 6 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Outline 6 Dot.ttf + Typefaces: + AppleBraille-Outline6Dot: + Full Name: Apple Braille Outline 6 Dot + Family: Apple Braille + Style: Outline 6 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Outline 6 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Palatino.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Palatino.ttc + Typefaces: + Palatino-BoldItalic: + Full Name: Palatino Bold Italic + Family: Palatino + Style: Жирный курсивный + Version: 18.0d1e19 + Unique Name: Palatino Bold Italic; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Roman: + Full Name: Palatino + Family: Palatino + Style: Обычный + Version: 18.0d1e19 + Unique Name: Palatino; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Bold: + Full Name: Palatino Bold + Family: Palatino + Style: Жирный + Version: 18.0d1e19 + Unique Name: Palatino Bold; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Italic: + Full Name: Palatino Italic + Family: Palatino + Style: Курсивный + Version: 18.0d1e19 + Unique Name: Palatino Italic; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hoefler Text Ornaments.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Hoefler Text Ornaments.ttf + Typefaces: + HoeflerText-Ornaments: + Full Name: Hoefler Text Ornaments + Family: Hoefler Text + Style: Орнаменты + Version: 14.0d1e2 + Unique Name: Hoefler Text Ornaments; 14.0d1e2; 2018-01-19 + Copyright: © Apple Inc., 1992-2007 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LahoreGurmukhi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c24057a6b75265680a99845a448ae09c6c6a5cba.asset/AssetData/LahoreGurmukhi.ttc + Typefaces: + LahoreGurmukhi-Light: + Full Name: Lahore Gurmukhi Light + Family: Lahore Gurmukhi + Style: Легкий + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Light; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Bold: + Full Name: Lahore Gurmukhi Bold + Family: Lahore Gurmukhi + Style: Жирный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Bold; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Regular: + Full Name: Lahore Gurmukhi Regular + Family: Lahore Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Regular; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Medium: + Full Name: Lahore Gurmukhi Medium + Family: Lahore Gurmukhi + Style: Средний + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Medium; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-SemiBold: + Full Name: Lahore Gurmukhi SemiBold + Family: Lahore Gurmukhi + Style: Полужирный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi SemiBold; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Unicode.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Unicode.ttf + Typefaces: + ArialUnicodeMS: + Full Name: Arial Unicode MS + Family: Arial Unicode MS + Style: Обычный + Version: Version 1.01x + Vendor: Agfa Monotype Corporation + Unique Name: Monotype - Arial Unicode MS + Designer: Original design: Robin Nicholas, Patricia Saunders. Extended glyphs: Monotype Type Drawing Office, Monotype Typography. + Copyright: Digitized data copyright (C) 1993-2000 Agfa Monotype Corporation. All rights reserved. Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Trademark: Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Description: This extended version of Monotype's Arial contains glyphs for all code points within The Unicode Standard, Version 2.1. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tamil Sangam MN.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tamil Sangam MN.ttc + Typefaces: + GranthaSangamMN-Bold: + Full Name: Grantha Sangam MN Bold + Family: Grantha Sangam MN + Style: Жирный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Bold; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN: + Full Name: Tamil Sangam MN + Family: Tamil Sangam MN + Style: Обычный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Regular: + Full Name: Grantha Sangam MN Regular + Family: Grantha Sangam MN + Style: Обычный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Regular; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Bold: + Full Name: Tamil Sangam MN Bold + Family: Tamil Sangam MN + Style: Жирный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Bold; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Ornanong.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ad8c3bb76851adc11dc4772c1a7a00caf83e3037.asset/AssetData/Ornanong.ttc + Typefaces: + PSLOrnanongPro-Light: + Full Name: PSL Ornanong Pro Light + Family: PSL Ornanong Pro + Style: Легкий + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Light; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Demibold: + Full Name: PSL Ornanong Pro Demibold + Family: PSL Ornanong Pro + Style: Полужирный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Demibold; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Regular: + Full Name: PSL Ornanong Pro + Family: PSL Ornanong Pro + Style: Обычный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-LightItalic: + Full Name: PSL Ornanong Pro Light Italic + Family: PSL Ornanong Pro + Style: Легкий курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Light Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-DemiboldItalic: + Full Name: PSL Ornanong Pro Demibold Italic + Family: PSL Ornanong Pro + Style: Demibold Italic + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Demibold Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Italic: + Full Name: PSL Ornanong Pro Italic + Family: PSL Ornanong Pro + Style: Курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Bold: + Full Name: PSL Ornanong Pro Bold + Family: PSL Ornanong Pro + Style: Жирный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Bold; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-BoldItalic: + Full Name: PSL Ornanong Pro Bold Italic + Family: PSL Ornanong Pro + Style: Жирный курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Bold Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Noteworthy.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Noteworthy.ttc + Typefaces: + Noteworthy-Bold: + Full Name: Noteworthy Bold + Family: Noteworthy + Style: Жирный + Version: 17.0d1e1 + Unique Name: Noteworthy Bold; 17.0d1e1; 2020-10-09 + Copyright: © 2005 by Dan X. Solo, Alameda, California + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Noteworthy-Light: + Full Name: Noteworthy Light + Family: Noteworthy + Style: Легкий + Version: 17.0d1e1 + Unique Name: Noteworthy Light; 17.0d1e1; 2020-10-09 + Copyright: © 2005 by Dan X. Solo, Alameda, California + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewPeninimMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NewPeninimMT.ttc + Typefaces: + NewPeninimMT-Inclined: + Full Name: New Peninim MT Inclined + Family: New Peninim MT + Style: Наклонный + Version: 13.0d1e4 + Unique Name: New Peninim MT Inclined; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT-BoldInclined: + Full Name: New Peninim MT Bold Inclined + Family: New Peninim MT + Style: Жирный наклонный + Version: 13.0d1e4 + Unique Name: New Peninim MT Bold Inclined; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭..‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT-Bold: + Full Name: New Peninim MT Bold + Family: New Peninim MT + Style: Жирный + Version: 13.0d1e4 + Unique Name: New Peninim MT Bold; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT: + Full Name: New Peninim MT + Family: New Peninim MT + Style: Обычный + Version: 13.0d1e4 + Unique Name: New Peninim MT; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Farisi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Farisi.ttf + Typefaces: + Farisi: + Full Name: Farisi Regular + Family: Farisi + Style: Обычный + Version: 13.0d1e3 + Unique Name: Farisi Regular; 13.0d1e3; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Oriya Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Oriya Sangam MN.ttc + Typefaces: + OriyaSangamMN-Bold: + Full Name: Oriya Sangam MN Bold + Family: Oriya Sangam MN + Style: Жирный + Version: 20.0d1e4 + Unique Name: Oriya Sangam MN Bold; 20.0d1e4; 2024-07-17 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Muthu Nedumaran. All rights reserved. + Trademark: Oriya Sangam MN is a trademark of Muthu Nedumaran. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OriyaSangamMN: + Full Name: Oriya Sangam MN + Family: Oriya Sangam MN + Style: Обычный + Version: 20.0d1e4 + Unique Name: Oriya Sangam MN; 20.0d1e4; 2024-07-17 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Muthu Nedumaran. All rights reserved. + Trademark: Oriya Sangam MN is a trademark of Muthu Nedumaran. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Bold Italic.ttf + Typefaces: + Verdana-BoldItalic: + Full Name: Verdana Полужирный Курсив + Family: Verdana + Style: Полужирный Курсив + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Bold Italic:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ThonburiUI.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ThonburiUI.ttc + Typefaces: + .ThonburiUI-Regular: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Обычный + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUI-Light: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Легкий + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUI-Bold: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Жирный + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Regular: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Обычный + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Light: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Легкий + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Bold: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Жирный + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Light.otf + Typefaces: + SFProRounded-Light: + Full Name: SF Pro Rounded Light + Family: SF Pro Rounded + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoNastaliq.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoNastaliq.ttc + Typefaces: + NotoNastaliqUrdu-Bold: + Full Name: Noto Nastaliq Urdu Bold + Family: Noto Nastaliq Urdu + Style: Жирный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Nastaliq Urdu Bold; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoNastaliqUrdu: + Full Name: Noto Nastaliq Urdu + Family: Noto Nastaliq Urdu + Style: Обычный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Nastaliq Urdu; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NotoNastaliqUrduUI: + Full Name: .Noto Nastaliq Urdu UI + Family: .Noto Nastaliq Urdu UI + Style: Обычный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: .Noto Nastaliq Urdu UI; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NotoNastaliqUrduUI-Bold: + Full Name: .Noto Nastaliq Urdu UI Bold + Family: .Noto Nastaliq Urdu UI + Style: Жирный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: .Noto Nastaliq Urdu UI Bold; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + CambayDevanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fec82d04f4ff6bff5c7a86df14150dfc4f3da60d.asset/AssetData/CambayDevanagari.ttc + Typefaces: + CambayDevanagari-Oblique: + Full Name: Cambay Devanagari Oblique + Family: Cambay Devanagari + Style: Наклонный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Oblique; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-Regular: + Full Name: Cambay Devanagari Regular + Family: Cambay Devanagari + Style: Обычный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Regular; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-BoldOblique: + Full Name: Cambay Devanagari Bold Oblique + Family: Cambay Devanagari + Style: Жирный наклонный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Bold Oblique; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-Bold: + Full Name: Cambay Devanagari Bold + Family: Cambay Devanagari + Style: Жирный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Bold; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NISC18030.ttf: + + Kind: Bitmap + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NISC18030.ttf + Typefaces: + GB18030Bitmap: + Full Name: GB18030 Bitmap + Family: GB18030 Bitmap + Style: Обычный + Version: 18.0d1e1 + Vendor: NISC, People's Republic of China + Unique Name: GB18030 Bitmap; 18.0d1e1; 2022-09-12 + Copyright: Copyright © 2002 NISC, People's Republic of China. + Outline: No + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Telugu MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Telugu MN.ttc + Typefaces: + TeluguMN-Bold: + Full Name: Telugu MN Bold + Family: Telugu MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Telugu MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TeluguMN: + Full Name: Telugu MN + Family: Telugu MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Telugu MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-SemiboldItalic.otf + Typefaces: + SFProDisplay-SemiboldItalic: + Full Name: SF Pro Display Semibold Italic + Family: SF Pro Display + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baijam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4cec0fab93a88d2448fed090966ef489adb6cfcc.asset/AssetData/Baijam.ttc + Typefaces: + BaiJamjuree-MediumItalic: + Full Name: Bai Jamjuree Medium Italic + Family: Bai Jamjuree + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-LightItalic: + Full Name: Bai Jamjuree Light Italic + Family: Bai Jamjuree + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Italic: + Full Name: Bai Jamjuree Italic + Family: Bai Jamjuree + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-ExtraLight: + Full Name: Bai Jamjuree ExtraLight + Family: Bai Jamjuree + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Medium: + Full Name: Bai Jamjuree Medium + Family: Bai Jamjuree + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-SemiBold: + Full Name: Bai Jamjuree SemiBold + Family: Bai Jamjuree + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Regular: + Full Name: Bai Jamjuree Regular + Family: Bai Jamjuree + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-BoldItalic: + Full Name: Bai Jamjuree Bold Italic + Family: Bai Jamjuree + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-SemiBoldItalic: + Full Name: Bai Jamjuree SemiBold Italic + Family: Bai Jamjuree + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Light: + Full Name: Bai Jamjuree Light + Family: Bai Jamjuree + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-ExtraLightItalic: + Full Name: Bai Jamjuree ExtraLight Italic + Family: Bai Jamjuree + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Bold: + Full Name: Bai Jamjuree Bold + Family: Bai Jamjuree + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Semibold.otf + Typefaces: + SFProRounded-Semibold: + Full Name: SF Pro Rounded Semibold + Family: SF Pro Rounded + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Corsiva.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Corsiva.ttc + Typefaces: + CorsivaHebrew: + Full Name: Corsiva Hebrew + Family: Corsiva Hebrew + Style: Обычный + Version: 19.0d1e1 + Unique Name: Corsiva Hebrew; 19.0d1e1; 2023-06-30 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. /‬Type Solutions Inc‭. ‬1990-91-92-93‭. ‬All rights reserved‭.‬ + Trademark: Corsiva™ Trademark of The Monotype Corporation registered in certain contries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CorsivaHebrew-Bold: + Full Name: Corsiva Hebrew Bold + Family: Corsiva Hebrew + Style: Жирный + Version: 19.0d1e1 + Unique Name: Corsiva Hebrew Bold; 19.0d1e1; 2023-06-30 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. /‬Type Solutions Inc‭. ‬1990-91-92-93‭ ‬All rights reserved‭.‬ + Trademark: Corsiva™ Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GillSans.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/GillSans.ttc + Typefaces: + GillSans-UltraBold: + Full Name: Gill Sans UltraBold + Family: Gill Sans + Style: Ультражирный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans UltraBold; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Italic: + Full Name: Gill Sans Italic + Family: Gill Sans + Style: Курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-SemiBoldItalic: + Full Name: Gill Sans SemiBold Italic + Family: Gill Sans + Style: Полужирный курсивный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans SemiBold Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Copyright © 2012 The Monotype Corporation. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of The Monotype Corporation. + Trademark: "Gill Sans" is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans: + Full Name: Gill Sans + Family: Gill Sans + Style: Обычный + Version: 16.0d1e1 + Unique Name: Gill Sans; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Bold: + Full Name: Gill Sans Bold + Family: Gill Sans + Style: Жирный + Version: 16.0d1e1 + Unique Name: Gill Sans Bold; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-SemiBold: + Full Name: Gill Sans SemiBold + Family: Gill Sans + Style: Полужирный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans SemiBold; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Copyright © 2012 The Monotype Corporation. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of The Monotype Corporation. + Trademark: "Gill Sans" is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-LightItalic: + Full Name: Gill Sans Light Italic + Family: Gill Sans + Style: Легкий курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Light Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Light: + Full Name: Gill Sans Light + Family: Gill Sans + Style: Легкий + Version: 16.0d1e1 + Unique Name: Gill Sans Light; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-BoldItalic: + Full Name: Gill Sans Bold Italic + Family: Gill Sans + Style: Жирный курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Bold Italic; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansOriya.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansOriya.ttc + Typefaces: + NotoSansOriya: + Full Name: Noto Sans Oriya + Family: Noto Sans Oriya + Style: Обычный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Oriya; 20.0d1e2; 2024-07-05 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data hinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansOriya-Bold: + Full Name: Noto Sans Oriya Bold + Family: Noto Sans Oriya + Style: Жирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Oriya Bold; 20.0d1e2; 2024-07-05 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data hinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHeiti Medium.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/STHeiti Medium.ttc + Typefaces: + STHeitiSC-Medium: + Full Name: Heiti SC Medium + Family: Heiti SC + Style: Средний + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti SC Medium; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti SC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STHeitiTC-Medium: + Full Name: Heiti TC Medium + Family: Heiti TC + Style: Средний + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti TC Medium; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti TC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Heavy.otf + Typefaces: + SFProRounded-Heavy: + Full Name: SF Pro Rounded Heavy + Family: SF Pro Rounded + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + InaiMathi-MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/InaiMathi-MN.ttc + Typefaces: + InaiMathi-Bold: + Full Name: InaiMathi Bold + Family: InaiMathi + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: InaiMathi Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 Murasu Systems Sdn. Bhd. Malaysia. (c) 2000 Grow Momentum (S) Pte. Ltd. All rights reserved. + Trademark: InaiMathi is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + InaiMathi: + Full Name: InaiMathi + Family: InaiMathi + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: InaiMathi; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 Murasu Systems Sdn. Bhd. Malaysia. (c) 2000 Grow Momentum (S) Pte. Ltd. All rights reserved. + Trademark: InaiMathi is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Heavy.otf + Typefaces: + SFCompactText-Heavy: + Full Name: SF Compact Text Heavy + Family: SF Compact Text + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W9.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W9.ttc + Typefaces: + HiraginoSans-W9: + Full Name: Hiragino Sans W9 + Family: Hiragino Sans + Style: W9 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W9; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W9: + Full Name: .Hiragino Kaku Gothic Interface W9 + Family: .Hiragino Kaku Gothic Interface + Style: W9 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W9; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.01, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMJua-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5b2f5f0b003344b2c67ce463e76d2485bb43d054.asset/AssetData/BMJua-Regular.otf + Typefaces: + BMJUAOTF: + Full Name: BM JUA OTF + Family: BM Jua + Style: Обычный + Version: 18.0d1e6 + Vendor: Woowa Brothers Corp. + Unique Name: BM JUA OTF; 18.0d1e6; 2022-12-15 + Designer: BONGJIN KIM, JAEHYUN KEUM, JUHEE TAE + Copyright: Copyright © 2014, Woowa Brothers Corp.(www.woowahan.com) with Reserved Font Name "BM-JUA". + Trademark: BM-JUA is a registered trademark of Woowa Brothers Corp. + Description: WOOWA BROTHER Corporation_OTF + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PlantagenetCherokee.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PlantagenetCherokee.ttf + Typefaces: + PlantagenetCherokee: + Full Name: Plantagenet Cherokee + Family: Plantagenet Cherokee + Style: Обычный + Version: 13.0d1e3 + Vendor: Tiro Typeworks + Unique Name: Plantagenet Cherokee; 13.0d1e3; 2017-06-14 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks, 2002. All rights reserved. + Trademark: Plantagenet Cherokee is a trademark of Tiro Typeworks. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Outline 8 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Outline 8 Dot.ttf + Typefaces: + AppleBraille-Outline8Dot: + Full Name: Apple Braille Outline 8 Dot + Family: Apple Braille + Style: Outline 8 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Outline 8 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Xingkai.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/aa99d0b2bad7f797f38b49d46cde28fd4b58876e.asset/AssetData/Xingkai.ttc + Typefaces: + STXingkaiSC-Bold: + Full Name: Xingkai SC Bold + Family: Xingkai SC + Style: Жирный + Version: 17.0d1e3 + Unique Name: Xingkai SC Bold; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiTC-Bold: + Full Name: Xingkai TC Bold + Family: Xingkai TC + Style: Жирный + Version: 17.0d1e3 + Unique Name: Xingkai TC Bold; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiTC-Light: + Full Name: Xingkai TC Light + Family: Xingkai TC + Style: Легкий + Version: 17.0d1e3 + Unique Name: Xingkai TC Light; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiSC-Light: + Full Name: Xingkai SC Light + Family: Xingkai SC + Style: Легкий + Version: 17.0d1e3 + Unique Name: Xingkai SC Light; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MarkerFelt.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/MarkerFelt.ttc + Typefaces: + MarkerFelt-Thin: + Full Name: Marker Felt Thin + Family: Marker Felt + Style: Узкий тонкий + Version: 13.0d1e11 + Unique Name: Marker Felt Thin; 13.0d1e11; 2017-06-09 + Copyright: Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. + Trademark: Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MarkerFelt-Wide: + Full Name: Marker Felt Wide + Family: Marker Felt + Style: Широкий + Version: 13.0d1e11 + Unique Name: Marker Felt Wide; 13.0d1e11; 2017-06-09 + Copyright: Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. + Trademark: Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Regular.otf + Typefaces: + SFProText-Regular: + Full Name: SF Pro Text Regular + Family: SF Pro Text + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sathu.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sathu.ttf + Typefaces: + Sathu: + Full Name: Sathu + Family: Sathu + Style: Обычный + Version: 14.0d1e1 + Unique Name: Sathu; 14.0d1e1; 2017-11-02 + Copyright: © 1992-2003 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Italic.ttf + Typefaces: + Georgia-Italic: + Full Name: Georgia Курсив + Family: Georgia + Style: Курсив + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Italic; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Brush Script.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Brush Script.ttf + Typefaces: + BrushScriptMT: + Full Name: Brush Script MT Italic + Family: Brush Script MT + Style: Курсивный + Version: Version 1.52x-1 + Unique Name: Brush Script MT Italic; 8.0d1e1; 2011-11-13 + Copyright: Copyright © 1993 , Monotype Typography ltd. + Trademark: Brush Script is a Trademark of Monotype Typography ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Semibold.otf + Typefaces: + SFProDisplay-Semibold: + Full Name: SF Pro Display Semibold + Family: SF Pro Display + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleLiSung-Light.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/2ae839cbaa0ff60fe6a1d8921a77c81adcec0646.asset/AssetData/AppleLiSung-Light.ttf + Typefaces: + LiSungLight: + Full Name: Apple LiSung Light + Family: Apple LiSung + Style: Легкий + Version: 16.0d1e1 + Unique Name: Apple LiSung Light; 16.0d1e1; 2020-03-25 + Copyright: Apple Computer, Inc. 1992-1998 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhaijaanUrdu-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6638e0282d7dac3de23fd39162b3d78fffc9160b.asset/AssetData/BalooBhaijaanUrdu-Regular.ttf + Typefaces: + BalooBhaijaan-Regular: + Full Name: Baloo Bhaijaan Regular + Family: Baloo Bhaijaan + Style: Обычный + Version: 20.0d1e2 (1.443) + Vendor: Ek Type + Unique Name: Baloo Bhaijaan Regular; 20.0d1e2 (1.443); 2024-07-09 + Designer: Devika Bhansali and Ek Type + Copyright: Copyright (c) 2015 Ek Type (www.ektype.in) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PCmyoungjo.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c2cf5e684236b5395fd48d6ccf0e3b3191ce83a0.asset/AssetData/PCmyoungjo.ttf + Typefaces: + JCsmPC: + Full Name: PCMyungjo Regular + Family: PCMyungjo + Style: Обычный + Version: 13.0d2e1 + Unique Name: PCMyungjo Regular; 13.0d2e1; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: PCMyoungjo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Songti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Songti.ttc + Typefaces: + STSongti-SC-Black: + Full Name: Songti SC Black + Family: Songti SC + Style: Черный + Version: 17.0d2e3 + Unique Name: Songti SC Black; 17.0d2e3; 2021-06-30 + Copyright: © 1991-1998, 2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Bold: + Full Name: Songti TC Bold + Family: Songti TC + Style: Жирный + Version: 17.0d2e3 + Unique Name: Songti TC Bold; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: Songti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Light: + Full Name: Songti SC Light + Family: Songti SC + Style: Легкий + Version: 17.0d2e3 + Unique Name: Songti SC Light; 17.0d2e3; 2021-06-30 + Copyright: © 1991-2001 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Bold: + Full Name: Songti SC Bold + Family: Songti SC + Style: Жирный + Version: 17.0d2e3 + Unique Name: Songti SC Bold; 17.0d2e3; 2021-06-30 + Copyright: © 2000-2005, 2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: Songti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Regular: + Full Name: Songti TC Regular + Family: Songti TC + Style: Обычный + Version: 17.0d2e3 + Unique Name: Songti TC Regular; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Light: + Full Name: Songti TC Light + Family: Songti TC + Style: Легкий + Version: 17.0d2e3 + Unique Name: Songti TC Light; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSong: + Full Name: STSong + Family: STSong + Style: Обычный + Version: 17.0d2e3 + Unique Name: STSong; 17.0d2e3; 2021-06-30 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Regular: + Full Name: Songti SC Regular + Family: Songti SC + Style: Обычный + Version: 17.0d2e3 + Unique Name: Songti SC Regular; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Regular.otf + Typefaces: + SFProRounded-Regular: + Full Name: SF Pro Rounded Regular + Family: SF Pro Rounded + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCondensedDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bcc10b55c3b7418fc5920165ff7ae57b098762f0.asset/AssetData/OctoberCondensedDevanagari.ttc + Typefaces: + OctoberCondensedDL-ExtraLight: + Full Name: October Condensed Devanagari ExtraLight + Family: October Condensed Devanagari + Style: Сверхлегкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari ExtraLight; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Heavy: + Full Name: October Condensed Devanagari Heavy + Family: October Condensed Devanagari + Style: Тяжелый + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Heavy; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Bold: + Full Name: October Condensed Devanagari Bold + Family: October Condensed Devanagari + Style: Жирный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Bold; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Medium: + Full Name: October Condensed Devanagari Medium + Family: October Condensed Devanagari + Style: Средний + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Medium; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Light: + Full Name: October Condensed Devanagari Light + Family: October Condensed Devanagari + Style: Легкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Light; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Thin: + Full Name: October Condensed Devanagari Thin + Family: October Condensed Devanagari + Style: Тонкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Thin; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Regular: + Full Name: October Condensed Devanagari Regular + Family: October Condensed Devanagari + Style: Обычный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Regular; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Black: + Full Name: October Condensed Devanagari Black + Family: October Condensed Devanagari + Style: Черный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Black; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Hairline: + Full Name: October Condensed Devanagari Hairline + Family: October Condensed Devanagari + Style: С соединительными штрихами + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Hairline; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Diwan Kufi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Diwan Kufi.ttc + Typefaces: + DiwanKufi: + Full Name: Diwan Kufi Regular + Family: Diwan Kufi + Style: Обычный + Version: 13.0d2e1 + Unique Name: Diwan Kufi Regular; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DiwanKufiPUA: + Full Name: .Diwan Kufi PUA + Family: .Diwan Kufi PUA + Style: Обычный + Version: 13.0d2e1 + Unique Name: .Diwan Kufi PUA; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompact.ttf + Typefaces: + .SFCompact-Regular: + Full Name: .SF Compact + Family: .SF Compact + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Medium: + Full Name: .SF Compact + Family: .SF Compact + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Light: + Full Name: .SF Compact + Family: .SF Compact + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Thin: + Full Name: .SF Compact + Family: .SF Compact + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Ultralight: + Full Name: .SF Compact + Family: .SF Compact + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Semibold: + Full Name: .SF Compact + Family: .SF Compact + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Bold: + Full Name: .SF Compact + Family: .SF Compact + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Heavy: + Full Name: .SF Compact + Family: .SF Compact + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Black: + Full Name: .SF Compact + Family: .SF Compact + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMidashiGothicStdN-ExtraBold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/938fc4f0524ec9f143f1b39a4e63ff9585298376.asset/AssetData/ToppanBunkyuMidashiGothicStdN-ExtraBold.otf + Typefaces: + ToppanBunkyuMidashiGothicStdN-ExtraBold: + Full Name: Toppan Bunkyu Midashi Gothic Extrabold + Family: Toppan Bunkyu Midashi Gothic + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Midashi Gothic Extrabold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.00, Copyright © 2013 - 2016 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Didot.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Didot.ttc + Typefaces: + Didot: + Full Name: Didot + Family: Didot + Style: Обычный + Version: 13.0d1e3 + Unique Name: Didot; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Didot-Italic: + Full Name: Didot Italic + Family: Didot + Style: Курсивный + Version: 13.0d1e3 + Unique Name: Didot Italic; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Didot-Bold: + Full Name: Didot Bold + Family: Didot + Style: Жирный + Version: 13.0d1e3 + Unique Name: Didot Bold; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Malayalam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Malayalam MN.ttc + Typefaces: + MalayalamMN-Bold: + Full Name: Malayalam MN Bold + Family: Malayalam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Malayalam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Malayalam MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MalayalamMN: + Full Name: Malayalam MN + Family: Malayalam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Malayalam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Malayalam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W2.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W2.ttc + Typefaces: + HiraginoSans-W2: + Full Name: Hiragino Sans W2 + Family: Hiragino Sans + Style: W2 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W2; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W2: + Full Name: .Hiragino Kaku Gothic Interface W2 + Family: .Hiragino Kaku Gothic Interface + Style: W2 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W2; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoText-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoText-Italic.ttf + Typefaces: + STIXTwoText-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_SemiBold-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Полужирный курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_Bold-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Жирный курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_Medium-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Средний курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMYeongSung-Regular.otf: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9bcdfd464af84ab30592d781f4a82f44f548239c.asset/AssetData/BMYeongSung-Regular.otf + Typefaces: + BMYEONSUNG-OTF: + Full Name: BM YEONSUNG OTF + Family: BM Yeonsung + Style: Обычный + Version: 14.0d1e3 + Vendor: Sandoll Communications Inc. + Unique Name: BM YEONSUNG OTF; 14.0d1e3; 2022-09-27 + Designer: Bongjin Kim; Myungsoo Han; Jaehyun Keum; Jihee Min; Dokyung Lee; Chorong Kim; Jooyeon Kang; Sang-a Kim; + Copyright: Copyright © 2016, WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BMYEONSUNG-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFGeorgian.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFGeorgian.ttf + Typefaces: + .SFGeorgian-Regular: + Full Name: .SF Georgian Обычный + Family: .SF Georgian + Style: Обычный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Medium: + Full Name: .SF Georgian Средний + Family: .SF Georgian + Style: Средний + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Light: + Full Name: .SF Georgian Легкий + Family: .SF Georgian + Style: Легкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Thin: + Full Name: .SF Georgian Тонкий + Family: .SF Georgian + Style: Тонкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Ultralight: + Full Name: .SF Georgian Ультралегкий + Family: .SF Georgian + Style: Ультралегкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Semibold: + Full Name: .SF Georgian Полужирный + Family: .SF Georgian + Style: Полужирный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Bold: + Full Name: .SF Georgian Жирный + Family: .SF Georgian + Style: Жирный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Heavy: + Full Name: .SF Georgian Тяжелый + Family: .SF Georgian + Style: Тяжелый + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Black: + Full Name: .SF Georgian Черный + Family: .SF Georgian + Style: Черный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kannada MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kannada MN.ttc + Typefaces: + KannadaMN: + Full Name: Kannada MN + Family: Kannada MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Kannada MN; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Kannada MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KannadaMN-Bold: + Full Name: Kannada MN Bold + Family: Kannada MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Kannada MN Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Kannada MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Farah.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Farah.ttc + Typefaces: + Farah: + Full Name: Farah Regular + Family: Farah + Style: Обычный + Version: 13.0d2e3 + Unique Name: Farah Regular; 13.0d2e3; 2017-07-12 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .FarahPUA: + Full Name: .Farah PUA + Family: .Farah PUA + Style: Обычный + Version: 13.0d2e3 + Unique Name: .Farah PUA; 13.0d2e3; 2017-07-12 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Optima.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Optima.ttc + Typefaces: + Optima-ExtraBlack: + Full Name: Optima ExtraBlack + Family: Optima + Style: Сверхжирный + Version: 13.0d1e2 + Unique Name: Optima ExtraBlack; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Bold: + Full Name: Optima Bold + Family: Optima + Style: Жирный + Version: 13.0d1e2 + Unique Name: Optima Bold; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Regular: + Full Name: Optima Regular + Family: Optima + Style: Обычный + Version: 13.0d1e2 + Unique Name: Optima Regular; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-BoldItalic: + Full Name: Optima Bold Italic + Family: Optima + Style: Жирный курсивный + Version: 13.0d1e2 + Unique Name: Optima Bold Italic; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Italic: + Full Name: Optima Italic + Family: Optima + Style: Курсивный + Version: 13.0d1e2 + Unique Name: Optima Italic; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Galvji.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Galvji.ttc + Typefaces: + Galvji: + Full Name: Galvji + Family: Galvji + Style: Обычный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-Oblique: + Full Name: Galvji Oblique + Family: Galvji + Style: Курсивный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Oblique; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Oblique is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-BoldOblique: + Full Name: Galvji-BoldOblique + Family: Galvji + Style: Жирный наклонный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Bold Oblique; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Bold Oblique is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-Bold: + Full Name: Galvji-Bold + Family: Galvji + Style: Жирный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Bold; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Bold is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gujarati Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gujarati Sangam MN.ttc + Typefaces: + GujaratiSangamMN: + Full Name: Gujarati Sangam MN + Family: Gujarati Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Gujarati Sangam MN; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Gujarati Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GujaratiSangamMN-Bold: + Full Name: Gujarati Sangam MN Bold + Family: Gujarati Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Gujarati Sangam MN Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Gujarati Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + JainiPurvaDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a7a9532a57d44b2c3548a8d88cad5d9f8ccc5d7b.asset/AssetData/JainiPurvaDevanagari-Regular.ttf + Typefaces: + JainiPurva: + Full Name: Jaini Purva + Family: Jaini Purva + Style: Обычный + Version: 20.0d1e2 (1.001) + Vendor: Ek Type + Unique Name: Jaini Purva; 20.0d1e2 (1.001); 2024-07-08 + Designer: Girish Dalvi, Maithili Shingre + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KufiStandardGK.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/KufiStandardGK.ttc + Typefaces: + KufiStandardGK: + Full Name: KufiStandardGK Regular + Family: KufiStandardGK + Style: Обычный + Version: 13.0d1e11 + Unique Name: KufiStandardGK Regular; 13.0d1e11; 2017-06-30 + Copyright: Kufi designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its +licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .KufiStandardGKPUA: + Full Name: .KufiStandardGK PUA + Family: .KufiStandardGK PUA + Style: Обычный + Version: 13.0d1e11 + Unique Name: .KufiStandardGK PUA; 13.0d1e11; 2017-06-30 + Copyright: Kufi designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its +licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KoHo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0499ae595c88f1d29b5ef4bbd230e24be76e06d3.asset/AssetData/KoHo.ttc + Typefaces: + KoHo-BoldItalic: + Full Name: KoHo Bold Italic + Family: KoHo + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-BoldItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-ExtraLight: + Full Name: KoHo ExtraLight + Family: KoHo + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-ExtraLight + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-ExtraLightItalic: + Full Name: KoHo ExtraLight Italic + Family: KoHo + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-ExtraLightItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-MediumItalic: + Full Name: KoHo Medium Italic + Family: KoHo + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-MediumItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-SemiBold: + Full Name: KoHo SemiBold + Family: KoHo + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-SemiBold + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Light: + Full Name: KoHo Light + Family: KoHo + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Light + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-LightItalic: + Full Name: KoHo Light Italic + Family: KoHo + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-LightItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Medium: + Full Name: KoHo Medium + Family: KoHo + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Medium + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-SemiBoldItalic: + Full Name: KoHo SemiBold Italic + Family: KoHo + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-SemiBoldItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Bold: + Full Name: KoHo Bold + Family: KoHo + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Bold + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Regular: + Full Name: KoHo Regular + Family: KoHo + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Regular + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Italic: + Full Name: KoHo Italic + Family: KoHo + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Italic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Semibold.otf + Typefaces: + SFCompactDisplay-Semibold: + Full Name: SF Compact Display Semibold + Family: SF Compact Display + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoMath.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoMath.otf + Typefaces: + STIXTwoMath-Regular: + Full Name: STIX Two Math Regular + Family: STIX Two Math + Style: Обычный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoMath-Regular + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. Math alphanumeric sans derived from Source Sans, designed by Paul Hunt. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZitherIndia.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZitherIndia.otf + Typefaces: + .ZitherIndia-Regular: + Full Name: .Zither India Обычный + Family: .Zither India + Style: Обычный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Medium: + Full Name: .Zither India Средний + Family: .Zither India + Style: Средний + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Light: + Full Name: .Zither India Легкий + Family: .Zither India + Style: Легкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Thin: + Full Name: .Zither India Тонкий + Family: .Zither India + Style: Тонкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Ultralight: + Full Name: .Zither India Ультралегкий + Family: .Zither India + Style: Ультралегкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Semibold: + Full Name: .Zither India Полужирный + Family: .Zither India + Style: Полужирный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Bold: + Full Name: .Zither India Жирный + Family: .Zither India + Style: Жирный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Heavy: + Full Name: .Zither India Тяжелый + Family: .Zither India + Style: Тяжелый + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Black: + Full Name: .Zither India Черный + Family: .Zither India + Style: Черный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-BoldItalic.otf + Typefaces: + SFProText-BoldItalic: + Full Name: SF Pro Text Bold Italic + Family: SF Pro Text + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-BlackItalic.otf + Typefaces: + SFCompactText-BlackItalic: + Full Name: SF Compact Text Black Italic + Family: SF Compact Text + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Bold.ttf + Typefaces: + Arial-BoldMT: + Full Name: Arial Полужирный + Family: Arial + Style: Полужирный + Version: Version 5.01.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Bold:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Ayuthaya.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Ayuthaya.ttf + Typefaces: + Ayuthaya: + Full Name: Ayuthaya + Family: Ayuthaya + Style: Обычный + Version: 13.0d1e7 + Unique Name: Ayuthaya; 13.0d1e7; 2017-06-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STXIHEI.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f0706a236683628e16427c6569e441423faaaa93.asset/AssetData/STXIHEI.ttf + Typefaces: + STXihei: + Full Name: STXihei + Family: STHeiti + Style: Светлый + Version: 17.0d1e2 + Unique Name: STXihei; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STXihei and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + +Frameworks: + + JavaRuntimeSupport: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaRuntimeSupport.framework + Private: No + + MetricKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetricKit.framework + Private: No + + Network: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Network.framework + Private: No + + ContactProvider: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ContactProvider.framework + Private: No + + IOBluetoothUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOBluetoothUI.framework + Private: No + + GameKit: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameKit.framework + Private: No + + SecurityInterface: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityInterface.framework + Private: No + + DiscRecording: + + Version: 9.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiscRecording.framework + Private: No + + CreateML: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CreateML.framework + Private: No + + Speech: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Speech.framework + Private: No + + FSKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FSKit.framework + Private: No + + _LocalAuthentication_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_LocalAuthentication_SwiftUI.framework + Private: No + + Automator: + + Version: 2.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Automator.framework + Private: No + + _SpriteKit_SwiftUI: + + Version: 51.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SpriteKit_SwiftUI.framework + Private: No + + _StoreKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_StoreKit_SwiftUI.framework + Private: No + + SafariServices: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SafariServices.framework + Private: No + + ExceptionHandling: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExceptionHandling.framework + Private: No + + Metal: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Metal.framework + Private: No + + ServiceExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceExtensions.framework + Private: No + + QuartzCore: + + Version: 1.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QuartzCore.framework + Private: No + + CoreGraphics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreGraphics.framework + Private: No + + IOBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: kBluetoothCFBundleGetInfoString + Location: /System/Library/Frameworks/IOBluetooth.framework + Private: No + + StoreKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StoreKit.framework + Private: No + + Ruby: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Ruby Runtime and Library + Location: /System/Library/Frameworks/Ruby.framework + Private: No + + GSS: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GSS.framework + Private: No + + JavaNativeFoundation: + + Version: 86 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaNativeFoundation.framework + Private: No + + OpenGL: + + Version: 21.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenGL 21.1.1.0.0 + Location: /System/Library/Frameworks/OpenGL.framework + Private: No + + CoreML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreML.framework + Private: No + + FinanceKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinanceKitUI.framework + Private: No + + FinderSync: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinderSync.framework + Private: No + + Quartz: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework + Private: No + + QuartzComposer: + + Version: 5.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework + Private: No + + QuartzFilters: + + Version: 1.10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzFilters.framework + Private: No + + PDFKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework + Private: No + + QuickLookUI: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework + Private: No + + ImageKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/ImageKit.framework + Private: No + + UserNotificationsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UserNotificationsUI.framework + Private: No + + TWAIN: + + Version: 1.9.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.9.5, © Copyright 2001-2008, TWAIN Working Group + Location: /System/Library/Frameworks/TWAIN.framework + Private: No + + CoreMediaIO: + + Version: 1000.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMediaIO.framework + Private: No + + Symbols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Symbols.framework + Private: No + + MetalPerformanceShaders: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework + Private: No + + MPSFunctions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework + Private: No + + MPSRayIntersector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework + Private: No + + MPSNeuralNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework + Private: No + + MPSBenchmarkLoop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSBenchmarkLoop.framework + Private: No + + MPSNDArray: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework + Private: No + + MPSCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework + Private: No + + MPSImage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework + Private: No + + MPSMatrix: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework + Private: No + + AutomaticAssessmentConfiguration: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AutomaticAssessmentConfiguration.framework + Private: No + + ExternalAccessory: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExternalAccessory.framework + Private: No + + _AVKit_SwiftUI: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AVKit_SwiftUI.framework + Private: No + + ScreenSaver: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenSaver.framework + Private: No + + _SceneKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SceneKit_SwiftUI.framework + Private: No + + LightweightCodeRequirements: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LightweightCodeRequirements.framework + Private: No + + PCSC: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PCSC.framework + Private: No + + PreferencePanes: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PreferencePanes.framework + Private: No + + MediaPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaPlayer.framework + Private: No + + LinkPresentation: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LinkPresentation.framework + Private: No + + ServiceExtensionsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceExtensionsCore.framework + Private: No + + MediaExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaExtension.framework + Private: No + + NetFS: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NetFS.framework + Private: No + + MediaToolbox: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaToolbox.framework + Private: No + + SyncServices: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: © 2003-2004 Apple + Location: /System/Library/Frameworks/SyncServices.framework + Private: No + + System: + + Version: 11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/System.framework + Private: No + + ForceFeedback: + + Version: 1.0.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0.6, Copyright © 2000-2012 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/ForceFeedback.framework + Private: No + + MetalFX: + + Version: 29.7.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalFX.framework + Private: No + + OSAKit: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OSAKit.framework + Private: No + + CryptoKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CryptoKit.framework + Private: No + + ServiceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceManagement.framework + Private: No + + ScreenTime: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenTime.framework + Private: No + + MLCompute: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MLCompute.framework + Private: No + + NaturalLanguage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NaturalLanguage.framework + Private: No + + CoreVideo: + + Version: 1.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreVideo.framework + Private: No + + _PhotosUI_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_PhotosUI_SwiftUI.framework + Private: No + + VideoDecodeAcceleration: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoDecodeAcceleration.framework + Private: No + + CoreHID: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreHID.framework + Private: No + + SensitiveContentAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SensitiveContentAnalysis.framework + Private: No + + ScriptingBridge: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScriptingBridge.framework + Private: No + + MetalKit: + + Version: 168.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalKit.framework + Private: No + + ApplicationServices: + + Version: 48 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework + Private: No + + CoreGraphics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework + Private: No + + ATS: + + Version: 377 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework + Private: No + + CoreText: + + Version: 844.4.0.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework + Private: No + + ImageIO: + + Version: 3.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.3.0 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework + Private: No + + ColorSync: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework + Private: No + + ATSUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework + Private: No + + SpeechSynthesis: + + Version: 9.2.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework + Private: No + + ColorSyncLegacy: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSyncLegacy.framework + Private: No + + HIServices: + + Version: 1.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework + Private: No + + PrintCore: + + Version: 19 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework + Private: No + + QD: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework + Private: No + + DockKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DockKit.framework + Private: No + + _Intents_TipKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_Intents_TipKit.framework + Private: No + + OSLog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OSLog.framework + Private: No + + AGL: + + Version: 3.3.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenGL Carbon compatibility dylib for Mac OS X + Location: /System/Library/Frameworks/AGL.framework + Private: No + + PDFKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PDFKit.framework + Private: No + + CoreText: + + Version: 844.4.0.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreText.framework + Private: No + + UniformTypeIdentifiers: + + Version: 709 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UniformTypeIdentifiers.framework + Private: No + + SwiftData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftData.framework + Private: No + + vmnet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/vmnet.framework + Private: No + + Cocoa: + + Version: 6.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Cocoa.framework + Private: No + + IOKit: + + Version: 2.0.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: I/O Kit Framework, Apple Computer Inc + Location: /System/Library/Frameworks/IOKit.framework + Private: No + + ManagedSettings: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ManagedSettings.framework + Private: No + + AVFoundation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFoundation.framework + Private: No + + AVFAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework + Private: No + + DiscRecordingUI: + + Version: 9.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiscRecordingUI.framework + Private: No + + ParavirtualizedGraphics: + + Version: 40.5.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ParavirtualizedGraphics.framework + Private: No + + Accelerate: + + Version: 1.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: vImage, DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/Accelerate.framework + Private: No + + vImage: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework + Private: No + + vecLib: + + Version: 3.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework + Private: No + + DeviceCheck: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceCheck.framework + Private: No + + _PassKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_PassKit_SwiftUI.framework + Private: No + + MailKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MailKit.framework + Private: No + + ImageIO: + + Version: 3.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.3.0 + Location: /System/Library/Frameworks/ImageIO.framework + Private: No + + BackgroundTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BackgroundTasks.framework + Private: No + + FamilyControls: + + Version: 1204.4.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FamilyControls.framework + Private: No + + AppleScriptKit: + + Version: 1.5.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppleScriptKit.framework + Private: No + + Carbon: + + Version: 160 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework + Private: No + + Ink: + + Version: 10.15 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/Ink.framework + Private: No + + OpenScripting: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Supplies support for scripting languages + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/OpenScripting.framework + Private: No + + SecurityHI: + + Version: 9.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/SecurityHI.framework + Private: No + + SpeechRecognition: + + Version: 6.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 6.0.4 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/SpeechRecognition.framework + Private: No + + ImageCapture: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/ImageCapture.framework + Private: No + + CommonPanels: + + Version: 1.2.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: CommonPanels version 1.2.4, Copyright 2000-2006, Apple Computer Inc. + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/CommonPanels.framework + Private: No + + Help: + + Version: 1.3.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Copyright 2000-2017, Apple Computer, Inc. + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/Help.framework + Private: No + + HIToolbox: + + Version: 2.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework + Private: No + + CoreBluetooth: + + Version: 184.42.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreBluetooth.framework + Private: No + + ThreadNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ThreadNetwork.framework + Private: No + + SensorKit: + + Version: 860.0.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SensorKit.framework + Private: No + + _RealityKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_RealityKit_SwiftUI.framework + Private: No + + DriverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DriverKit.framework + Private: No + + vecLib: + + Version: 3.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/vecLib.framework + Private: No + + Security: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Security.framework + Private: No + + _QuickLook_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_QuickLook_SwiftUI.framework + Private: No + + Contacts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Contacts.framework + Private: No + + CLLogEntry: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CLLogEntry.framework + Private: No + + _SwiftData_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SwiftData_SwiftUI.framework + Private: No + + ExtensionFoundation: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExtensionFoundation.framework + Private: No + + RealityKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/RealityKit.framework + Private: No + + _GroupActivities_AppKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_GroupActivities_AppKit.framework + Private: No + + StickerFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StickerFoundation.framework + Private: No + + PhotosUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PhotosUI.framework + Private: No + + ImagePlayground: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ImagePlayground.framework + Private: No + + ReplayKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ReplayKit.framework + Private: No + + Virtualization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Virtualization.framework + Private: No + + QuickLookUI: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/QuickLookUI.framework + Private: No + + IOSurface: + + Version: 372.5.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOSurface.framework + Private: No + + _MusicKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_MusicKit_SwiftUI.framework + Private: No + + MediaLibrary: + + Version: 1.11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaLibrary.framework + Private: No + + SpriteKit: + + Version: 51.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SpriteKit.framework + Private: No + + IntentsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IntentsUI.framework + Private: No + + QuickLookThumbnailing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QuickLookThumbnailing.framework + Private: No + + CoreMedia: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMedia.framework + Private: No + + BusinessChat: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BusinessChat.framework + Private: No + + OpenDirectory: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenDirectory.framework + Private: No + + CFOpenDirectory: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenDirectory.framework/Frameworks/CFOpenDirectory.framework + Private: No + + Intents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Intents.framework + Private: No + + DirectoryService: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DirectoryService.framework + Private: No + + _WorkoutKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_WorkoutKit_SwiftUI.framework + Private: No + + ColorSync: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ColorSync.framework + Private: No + + JavaVM: + + Version: 15.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework + Private: No + + JavaRuntimeSupport: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework + Private: No + + JavaNativeFoundation: + + Version: 86 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaNativeFoundation.framework + Private: No + + AppleScriptObjC: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppleScriptObjC.framework + Private: No + + VideoSubscriberAccount: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoSubscriberAccount.framework + Private: No + + CoreWLAN: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 16.0, Copyright © 2009–2019 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/CoreWLAN.framework + Private: No + + AccessorySetupKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AccessorySetupKit.framework + Private: No + + PencilKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PencilKit.framework + Private: No + + FinanceKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinanceKit.framework + Private: No + + CoreServices: + + Version: 1226 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework + Private: No + + SearchKit: + + Version: 1.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework + Private: No + + OSServices: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OS Services Framework + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework + Private: No + + Metadata: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework + Private: No + + AE: + + Version: 944 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework + Private: No + + LaunchServices: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 10.6, Copyright © 2000-2007 Apple Inc., All Rights Reserved + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework + Private: No + + SharedFileList: + + Version: 225 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework + Private: No + + DictionaryServices: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework + Private: No + + FSEvents: + + Version: 1400.100.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework + Private: No + + CarbonCore: + + Version: 1333 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework + Private: No + + HealthKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/HealthKit.framework + Private: No + + MultipeerConnectivity: + + Version: 179.600.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MultipeerConnectivity.framework + Private: No + + BackgroundAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BackgroundAssets.framework + Private: No + + _ManagedAppDistribution_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_ManagedAppDistribution_SwiftUI.framework + Private: No + + Tk: + + Version: 8.5.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Tk AQUA 8.5.9, +Copyright © 1989-2025 Tcl Core Team, +Copyright © 2002-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + Location: /System/Library/Frameworks/Tk.framework + Private: No + + WebKit: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc. + Location: /System/Library/Frameworks/WebKit.framework + Private: No + + WebCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1997 Martin Jones ; Copyright 1998, 1999 Torben Weis ; Copyright 1998, 1999, 2002 Waldo Bastian ; Copyright 1998-2000 Lars Knoll ; Copyright 1999, 2001 Antti Koivisto ; Copyright 1999-2001 Harri Porten ; Copyright 2000 Simon Hausmann ; Copyright 2000, 2001 Dirk Mueller ; Copyright 2000, 2001 Peter Kelly ; Copyright 2000 Daniel Molkentin ; Copyright 2000 Stefan Schimanski ; Copyright 1998-2000 Netscape Communications Corporation; Copyright 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper; Copyright 2001, 2002 Expat maintainers. + Location: /System/Library/Frameworks/WebKit.framework/Frameworks/WebCore.framework + Private: No + + WebKitLegacy: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc. + Location: /System/Library/Frameworks/WebKit.framework/Frameworks/WebKitLegacy.framework + Private: No + + NotificationCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NotificationCenter.framework + Private: No + + SystemConfiguration: + + Version: 1.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1,21 + Location: /System/Library/Frameworks/SystemConfiguration.framework + Private: No + + GameController: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameController.framework + Private: No + + CoreTelephony: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreTelephony.framework + Private: No + + OpenCL: + + Version: 5.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.5, Copyright 2008-2023 Apple Inc. + Location: /System/Library/Frameworks/OpenCL.framework + Private: No + + AVFAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFAudio.framework + Private: No + + CoreDisplay: + + Version: 288 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreDisplay.framework + Private: No + + SwiftUICore: + + Version: 6.4.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftUICore.framework + Private: No + + AudioUnit: + + Version: 1.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AudioUnit.framework + Private: No + + FileProvider: + + Version: 2882.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FileProvider.framework + Private: No + + DeviceActivity: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceActivity.framework + Private: No + + Social: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Social.framework + Private: No + + AppKit: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppKit.framework + Private: No + + IdentityLookup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IdentityLookup.framework + Private: No + + Matter: + + Version: 1.4.0.40 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Matter.framework + Private: No + + CoreImage: + + Version: 19.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreImage.framework + Private: No + + CoreAudio: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreAudio.framework + Private: No + + SecurityUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityUI.framework + Private: No + + ExecutionPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExecutionPolicy.framework + Private: No + + Cinematic: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Cinematic.framework + Private: No + + MusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MusicKit.framework + Private: No + + DeviceDiscoveryExtension: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceDiscoveryExtension.framework + Private: No + + Hypervisor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Hypervisor.framework + Private: No + + ICADevices: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ICADevices.framework + Private: No + + Kernel: + + Version: 24.4.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/Kernel.framework + Private: No + + CoreAudioKit: + + Version: 1.6.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreAudioKit.framework + Private: No + + LDAP: + + Version: 2.4.28 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenLDAP framework v2.4.28 + Location: /System/Library/Frameworks/LDAP.framework + Private: No + + ClassKit: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ClassKit.framework + Private: No + + DVDPlayback: + + Version: 5.9.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DVDPlayback Framework + Location: /System/Library/Frameworks/DVDPlayback.framework + Private: No + + VisionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VisionKit.framework + Private: No + + SwiftUI: + + Version: 6.4.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftUI.framework + Private: No + + Combine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Combine.framework + Private: No + + ModelIO: + + Version: 266.1.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ModelIO.framework + Private: No + + _DeviceActivity_SwiftUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_DeviceActivity_SwiftUI.framework + Private: No + + PHASE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PHASE.framework + Private: No + + SharedWithYou: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SharedWithYou.framework + Private: No + + SecurityFoundation: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityFoundation.framework + Private: No + + GLUT: + + Version: 3.6.26 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.6.26, Copyright © 2001-2023 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/GLUT.framework + Private: No + + CalendarStore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CalendarStore.framework + Private: No + + MetalPerformanceShadersGraph: + + Version: 5.4.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShadersGraph.framework + Private: No + + CreateMLComponents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CreateMLComponents.framework + Private: No + + Collaboration: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Collaboration.framework + Private: No + + Message: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Message.framework + Private: No + + AudioVideoBridging: + + Version: 1320.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: AudioVideoBridging 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/AudioVideoBridging.framework + Private: No + + Accounts: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accounts.framework + Private: No + + _AuthenticationServices_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AuthenticationServices_SwiftUI.framework + Private: No + + ScreenCaptureKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenCaptureKit.framework + Private: No + + FileProviderUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FileProviderUI.framework + Private: No + + ShazamKit: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ShazamKit.framework + Private: No + + CarKey: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CarKey.framework + Private: No + + RealityFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/RealityFoundation.framework + Private: No + + ProximityReaderStub: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ProximityReaderStub.framework + Private: No + + _MapKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_MapKit_SwiftUI.framework + Private: No + + QuickLook: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/QuickLook.framework + Private: No + + _SwiftData_CoreData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SwiftData_CoreData.framework + Private: No + + AppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppIntents.framework + Private: No + + AuthenticationServices: + + Version: 12.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AuthenticationServices.framework + Private: No + + KernelManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/KernelManagement.framework + Private: No + + _AppIntents_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AppIntents_SwiftUI.framework + Private: No + + _CoreData_CloudKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_CoreData_CloudKit.framework + Private: No + + WeatherKit: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WeatherKit.framework + Private: No + + DataDetection: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DataDetection.framework + Private: No + + AudioToolbox: + + Version: 1.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AudioToolbox.framework + Private: No + + SystemExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SystemExtensions.framework + Private: No + + Kerberos: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Kerberos.framework + Private: No + + NearbyInteraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NearbyInteraction.framework + Private: No + + _AppIntents_AppKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AppIntents_AppKit.framework + Private: No + + ContactsUI: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ContactsUI.framework + Private: No + + CoreSpotlight: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreSpotlight.framework + Private: No + + Tcl: + + Version: 8.5.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Tcl 8.5.9, +Copyright © 1987-2025 Tcl Core Team, +Copyright © 2001-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + Location: /System/Library/Frameworks/Tcl.framework + Private: No + + LocalAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LocalAuthentication.framework + Private: No + + MatterSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MatterSupport.framework + Private: No + + Foundation: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Foundation.framework + Private: No + + AdSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AdSupport.framework + Private: No + + LocalAuthenticationEmbeddedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LocalAuthenticationEmbeddedUI.framework + Private: No + + InstallerPlugins: + + Version: 6.2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InstallerPlugins.framework + Private: No + + Accessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accessibility.framework + Private: No + + PushKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PushKit.framework + Private: No + + Vision: + + Version: 8.0.76 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Vision.framework + Private: No + + CoreAudioTypes: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreAudioTypes.framework + Private: No + + SecureConfigDB: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecureConfigDB.framework + Private: No + + NetworkExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NetworkExtension.framework + Private: No + + ExtensionKit: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExtensionKit.framework + Private: No + + OpenAL: + + Version: 1.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenAL.framework + Private: No + + EventKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/EventKit.framework + Private: No + + MediaAccessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaAccessibility.framework + Private: No + + Charts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Charts.framework + Private: No + + QTKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QTKit.framework + Private: No + + MapKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MapKit.framework + Private: No + + AppTrackingTransparency: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppTrackingTransparency.framework + Private: No + + CoreHaptics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreHaptics.framework + Private: No + + CallKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CallKit.framework + Private: No + + CoreFoundation: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreFoundation.framework + Private: No + + TabularData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/TabularData.framework + Private: No + + CoreMotion: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMotion.framework + Private: No + + AVRouting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVRouting.framework + Private: No + + StickerKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StickerKit.framework + Private: No + + WidgetKit: + + Version: 537.5.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WidgetKit.framework + Private: No + + AVKit: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVKit.framework + Private: No + + AddressBook: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AddressBook.framework + Private: No + + SoundAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SoundAnalysis.framework + Private: No + + CoreMIDIServer: + + Version: 1.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMIDIServer.framework + Private: No + + GroupActivities: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GroupActivities.framework + Private: No + + CoreLocation: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreLocation.framework + Private: No + + CloudKit: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CloudKit.framework + Private: No + + IOUSBHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOUSBHost.framework + Private: No + + LatentSemanticMapping: + + Version: 2.12.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LatentSemanticMapping.framework + Private: No + + SharedWithYouCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SharedWithYouCore.framework + Private: No + + CFNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CFNetwork.framework + Private: No + + BrowserEngineCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BrowserEngineCore.framework + Private: No + + Photos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Photos.framework + Private: No + + JavaScriptCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1999-2001 Harri Porten ; Copyright 2001 Peter Kelly ; Copyright 1997-2005 University of Cambridge; Copyright 1991, 2000, 2001 by Lucent Technologies. + Location: /System/Library/Frameworks/JavaScriptCore.framework + Private: No + + GameplayKit: + + Version: 100.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameplayKit.framework + Private: No + + DiskArbitration: + + Version: 2.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiskArbitration.framework + Private: No + + WorkoutKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WorkoutKit.framework + Private: No + + BrowserEngineKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BrowserEngineKit.framework + Private: No + + InstantMessage: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InstantMessage.framework + Private: No + + PushToTalk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PushToTalk.framework + Private: No + + CoreMIDI: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMIDI.framework + Private: No + + InputMethodKit: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InputMethodKit.framework + Private: No + + PassKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PassKit.framework + Private: No + + ImageCaptureCore: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ImageCaptureCore.framework + Private: No + + _Translation_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_Translation_SwiftUI.framework + Private: No + + TipKit: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/TipKit.framework + Private: No + + CoreData: + + Version: 120 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreData.framework + Private: No + + GLKit: + + Version: 129 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GLKit.framework + Private: No + + AdServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AdServices.framework + Private: No + + CryptoTokenKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CryptoTokenKit.framework + Private: No + + VideoToolbox: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoToolbox.framework + Private: No + + SafetyKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SafetyKit.framework + Private: No + + Translation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Translation.framework + Private: No + + UserNotifications: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UserNotifications.framework + Private: No + + ManagedAppDistribution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ManagedAppDistribution.framework + Private: No + + DeveloperToolsSupport: + + Version: 22.10.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeveloperToolsSupport.framework + Private: No + + iTunesLibrary: + + Version: 13.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/iTunesLibrary.framework + Private: No + + CoreTransferable: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreTransferable.framework + Private: No + + SceneKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SceneKit.framework + Private: No + + TextToSpeechVoiceBankingSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingSupport.framework + Private: Yes + + SecureVoiceTriggerAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureVoiceTriggerAssets.framework + Private: Yes + + CrisisResources: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CrisisResources.framework + Private: Yes + + IMTranscoding: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTranscoding.framework + Private: Yes + + MediaAnalysisAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisAccess.framework + Private: Yes + + ServerInformation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServerInformation.framework + Private: Yes + + CoreMLTestFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMLTestFramework.framework + Private: Yes + + Spotlight: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Spotlight.framework + Private: Yes + + SafariCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariCore.framework + Private: Yes + + CopresenceCore: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CopresenceCore.framework + Private: Yes + + SpotlightUIShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightUIShared.framework + Private: Yes + + SetupAssistantSupportUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantSupportUI.framework + Private: Yes + + SportsKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SportsKit.framework + Private: Yes + + TranslationUIServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationUIServices.framework + Private: Yes + + AppSSOKerberos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOKerberos.framework + Private: Yes + + IntelligenceFlowPlannerRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowPlannerRuntime.framework + Private: Yes + + GESS: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GESS.framework + Private: Yes + + VFX: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VFX.framework + Private: Yes + + SwiftCertificate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftCertificate.framework + Private: Yes + + Network: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Network.framework + Private: Yes + + SiriUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUtilities.framework + Private: Yes + + InertiaCam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InertiaCam.framework + Private: Yes + + MessagesCloudSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesCloudSync.framework + Private: Yes + + ConfigurationEngineModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework + Private: Yes + + FaceTimeDockSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeDockSupport.framework + Private: Yes + + HomeAutomationInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAutomationInternal.framework + Private: Yes + + ISPExclaveKitServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ISPExclaveKitServices.framework + Private: Yes + + CoreMaterial: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMaterial.framework + Private: Yes + + AudioServerDriver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriver.framework + Private: Yes + + StrokeAnimation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StrokeAnimation.framework + Private: Yes + + ActionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionKit.framework + Private: Yes + + MonitorPanel: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 6.0, Copyright © 2001-2016 Apple Inc. + Location: /System/Library/PrivateFrameworks/MonitorPanel.framework + Private: Yes + + LiveSpeechServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveSpeechServices.framework + Private: Yes + + DifferentialPrivacy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DifferentialPrivacy.framework + Private: Yes + + StorageManagementService: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageManagementService.framework + Private: Yes + + PreviewShellKit: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewShellKit.framework + Private: Yes + + UARPUpdaterService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UARPUpdaterService.framework + Private: Yes + + AppleTracingSupportSymbolication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleTracingSupportSymbolication.framework + Private: Yes + + NotificationPreferences: + + Version: 1459.4.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotificationPreferences.framework + Private: Yes + + CoreTime: + + Version: 334.0.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreTime.framework + Private: Yes + + ContactsAssistantServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAssistantServices.framework + Private: Yes + + PoirotSchematizer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotSchematizer.framework + Private: Yes + + DiskManagement: + + Version: 15.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Disk Management version 15.0, Copyright © 1998–2020 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/DiskManagement.framework + Private: Yes + + SiriNaturalLanguageGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNaturalLanguageGeneration.framework + Private: Yes + + AskTo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskTo.framework + Private: Yes + + SiriTTSService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTSService.framework + Private: Yes + + CloudPhotoServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoServices.framework + Private: Yes + + CMContinuityCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMContinuityCaptureCore.framework + Private: Yes + + SystemPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemPolicy.framework + Private: Yes + + SiriAudioSnippetKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioSnippetKit.framework + Private: Yes + + PackageKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageKit.framework + Private: Yes + + PackageUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit.framework + Private: Yes + + CloudSharing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSharing.framework + Private: Yes + + TuriCore: + + Version: 0.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: TuriCore ML APIs for training. + Location: /System/Library/PrivateFrameworks/TuriCore.framework + Private: Yes + + BatteryCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryCenterUI.framework + Private: Yes + + FindMyUnsafeAsyncBridging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyUnsafeAsyncBridging.framework + Private: Yes + + SiriInteractive: + + Version: 2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInteractive.framework + Private: Yes + + FoundationODR: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FoundationODR.framework + Private: Yes + + ScreenTimeSettingsUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeSettingsUI.framework + Private: Yes + + SiriSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSetup.framework + Private: Yes + + InputToolKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputToolKitUI.framework + Private: Yes + + WebInspector: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebInspector.framework + Private: Yes + + OSAServicesClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAServicesClient.framework + Private: Yes + + CrashReporterSupport: + + Version: 10.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CrashReporterSupport.framework + Private: Yes + + IMCorePipeline: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMCorePipeline.framework + Private: Yes + + DeviceExpertIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceExpertIntents.framework + Private: Yes + + BridgeOSSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework + Private: Yes + + InputContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputContext.framework + Private: Yes + + TextureIO: + + Version: 3.10.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextureIO.framework + Private: Yes + + AssetCacheServices: + + Version: 135.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetCacheServices.framework + Private: Yes + + VisionCore: + + Version: 8.0.76 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisionCore.framework + Private: Yes + + AppleMediaServicesKitInternal: + + Version: 1.0.17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesKitInternal.framework + Private: Yes + + IDSSystemPreferencesSignIn: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSSystemPreferencesSignIn.framework + Private: Yes + + DeviceAccess: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceAccess.framework + Private: Yes + + FMNetworking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMNetworking.framework + Private: Yes + + ConditionInducer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConditionInducer.framework + Private: Yes + + VisionKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisionKitCore.framework + Private: Yes + + PhoneSnippetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneSnippetUI.framework + Private: Yes + + CoreSpeechFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechFoundation.framework + Private: Yes + + CoreOptimization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOptimization.framework + Private: Yes + + EmailCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailCore.framework + Private: Yes + + Install: + + Version: 700 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Install.framework + Private: Yes + + DistributionKit: + + Version: 700 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit.framework + Private: Yes + + JetCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetCore.framework + Private: Yes + + VirtualGarage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VirtualGarage.framework + Private: Yes + + Tabi: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tabi.framework + Private: Yes + + SpotlightFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightFoundation.framework + Private: Yes + + SiriMetricsBugReporter: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMetricsBugReporter.framework + Private: Yes + + ZhuGeSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZhuGeSupport.framework + Private: Yes + + Nexus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Nexus.framework + Private: Yes + + SiriAudioSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioSupport.framework + Private: Yes + + CloudTelemetry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudTelemetry.framework + Private: Yes + + AddressBookCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AddressBookCore.framework + Private: Yes + + SiriKitInvocation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitInvocation.framework + Private: Yes + + acfsSupport: + + Version: 589 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: 589 (6.0.5), Copyright © 2005-2012 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/acfsSupport.framework + Private: Yes + + TextToSpeech: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeech.framework + Private: Yes + + FinanceDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinanceDaemon.framework + Private: Yes + + JetEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetEngine.framework + Private: Yes + + ByteRangeLocking: + + Version: 1.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ByteRangeLocking.framework + Private: Yes + + CMImaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMImaging.framework + Private: Yes + + HearingModeService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeService.framework + Private: Yes + + SpeechRecognitionSharedSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionSharedSupport.framework + Private: Yes + + CoreAppleCVA: + + Version: 4.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAppleCVA.framework + Private: Yes + + USDKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USDKit.framework + Private: Yes + + UIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIFoundation.framework + Private: Yes + + GameServices: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameServices.framework + Private: Yes + + AnnotationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AnnotationKit.framework + Private: Yes + + CombineCocoa: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CombineCocoa.framework + Private: Yes + + ProactiveHarvesting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveHarvesting.framework + Private: Yes + + SpanMatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpanMatcher.framework + Private: Yes + + People: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/People.framework + Private: Yes + + WebInspectorUI: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebInspectorUI.framework + Private: Yes + + AMPDevices: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPDevices.framework + Private: Yes + + SiriPaymentsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPaymentsIntents.framework + Private: Yes + + CoreUtilsUI: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsUI.framework + Private: Yes + + CoreParsec: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreParsec.framework + Private: Yes + + AccountPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountPolicy.framework + Private: Yes + + CFAccountPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountPolicy.framework + Private: Yes + + SiriNaturalLanguageParsing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNaturalLanguageParsing.framework + Private: Yes + + EmojiFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmojiFoundation.framework + Private: Yes + + AOSAccounts: + + Version: 1.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSAccounts.framework + Private: Yes + + CoreCaptureControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0, Copyright © 2015 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreCaptureControl.framework + Private: Yes + + XCTAutomationSupport: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTAutomationSupport.framework + Private: Yes + + CaptiveNetwork: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CaptiveNetwork.framework + Private: Yes + + CoreKnowledge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreKnowledge.framework + Private: Yes + + Marco: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Marco.framework + Private: Yes + + BookFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookFoundation.framework + Private: Yes + + FeedbackLogger: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackLogger.framework + Private: Yes + + SiriPlaybackControlSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPlaybackControlSupport.framework + Private: Yes + + Transliteration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Transliteration.framework + Private: Yes + + WiFiSettingsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiSettingsKit.framework + Private: Yes + + AppStoreComponents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreComponents.framework + Private: Yes + + ApplePushService: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePushService.framework + Private: Yes + + ServiceExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServiceExtensions.framework + Private: Yes + + CoreRE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRE.framework + Private: Yes + + HomeKitMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitMetrics.framework + Private: Yes + + ShazamEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamEvents.framework + Private: Yes + + FMFUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMFUI.framework + Private: Yes + + AccountSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountSuggestions.framework + Private: Yes + + FilesActionsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FilesActionsUI.framework + Private: Yes + + FileProviderTelemetry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProviderTelemetry.framework + Private: Yes + + ExchangeSyncExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeSyncExpress.framework + Private: Yes + + SiriGeo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriGeo.framework + Private: Yes + + GraphVisualizer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphVisualizer.framework + Private: Yes + + Shortcut: + + Version: 2.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Shortcut.framework + Private: Yes + + FTClientServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTClientServices.framework + Private: Yes + + SystemUIPlugin: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemUIPlugin.framework + Private: Yes + + GenerativeExperiencesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiencesUI.framework + Private: Yes + + SiriVideoUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVideoUIFramework.framework + Private: Yes + + MessagesBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework + Private: Yes + + MusicKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicKitInternal.framework + Private: Yes + + iCloudQuota: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudQuota.framework + Private: Yes + + ClassroomKit: + + Version: 1.0.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassroomKit.framework + Private: Yes + + TVIdleServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVIdleServices.framework + Private: Yes + + SiriCrossDeviceArbitrationFeedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCrossDeviceArbitrationFeedback.framework + Private: Yes + + IDSHashPersistence: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSHashPersistence.framework + Private: Yes + + UIIntelligenceIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceIntents.framework + Private: Yes + + AppServerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppServerSupport.framework + Private: Yes + + NetworkQualityServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkQualityServices.framework + Private: Yes + + WebContentAnalysis: + + Version: 5.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebContentAnalysis.framework + Private: Yes + + ProactiveInputPredictionsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveInputPredictionsInternals.framework + Private: Yes + + BluetoothManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothManager.framework + Private: Yes + + CoreHapticsTools: + + Version: 3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHapticsTools.framework + Private: Yes + + Categories: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Categories.framework + Private: Yes + + AudioDSPGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioDSPGraph.framework + Private: Yes + + FindMyBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyBase.framework + Private: Yes + + SiriVOX: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVOX.framework + Private: Yes + + HeimODAdmin: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeimODAdmin.framework + Private: Yes + + iPod: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: iPod version 1.7, Copyright © 2002-2015 Apple Inc. + Location: /System/Library/PrivateFrameworks/iPod.framework + Private: Yes + + CalendarWeatherKit: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarWeatherKit.framework + Private: Yes + + HTTPServer: + + Version: 39 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HTTPServer.framework + Private: Yes + + CoreMediaStream: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMediaStream.framework + Private: Yes + + SiriCalendarUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCalendarUI.framework + Private: Yes + + _MusicKitInternal_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_MusicKitInternal_SwiftUI.framework + Private: Yes + + AONSense: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AONSense.framework + Private: Yes + + IOSurfaceAccelerator: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework + Private: Yes + + HomeAI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAI.framework + Private: Yes + + AppleCVA: + + Version: 1001.202.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleCVA.framework + Private: Yes + + AppAnalytics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppAnalytics.framework + Private: Yes + + MobileTimerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileTimerSupport.framework + Private: Yes + + IconFoundation: + + Version: 493 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IconFoundation.framework + Private: Yes + + ExchangeGraphAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeGraphAPI.framework + Private: Yes + + SemanticDocumentManagement: + + Version: 3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SemanticDocumentManagement.framework + Private: Yes + + MediaControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaControl.framework + Private: Yes + + Koa: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Koa.framework + Private: Yes + + GeoServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoServicesCore.framework + Private: Yes + + Anvil: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Anvil.framework + Private: Yes + + PrintingPrivate: + + Version: 18 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrintingPrivate.framework + Private: Yes + + WeatherCore: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherCore.framework + Private: Yes + + PhoneNumbers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneNumbers.framework + Private: Yes + + MediaGroups: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaGroups.framework + Private: Yes + + IOImageLoader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOImageLoader.framework + Private: Yes + + RequestDispatcherBridges: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RequestDispatcherBridges.framework + Private: Yes + + PhotosIntelligenceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosIntelligenceCore.framework + Private: Yes + + RemoteXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteXPC.framework + Private: Yes + + MatterPlugin: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MatterPlugin.framework + Private: Yes + + WorkflowResponsiveness: + + Version: 383.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowResponsiveness.framework + Private: Yes + + FinanceKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinanceKitUI.framework + Private: Yes + + ContextSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextSync.framework + Private: Yes + + TranslationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationUI.framework + Private: Yes + + CalendarDraw: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDraw.framework + Private: Yes + + CloudKitCodeProtobuf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitCodeProtobuf.framework + Private: Yes + + AirPlayReceiver: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayReceiver.framework + Private: Yes + + InstallProgress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallProgress.framework + Private: Yes + + IASUtilitiesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IASUtilitiesCore.framework + Private: Yes + + BiometricKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricKitUI.framework + Private: Yes + + AuthKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthKitUI.framework + Private: Yes + + MomentsIntelligence: + + Version: 206.0.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MomentsIntelligence.framework + Private: Yes + + MediaMiningKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaMiningKit.framework + Private: Yes + + AppIntentsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppIntentsServices.framework + Private: Yes + + RemoteManagementProtocol: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementProtocol.framework + Private: Yes + + SiriReferenceResolutionDataModel: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolutionDataModel.framework + Private: Yes + + SonicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SonicKit.framework + Private: Yes + + AppleFSCompression: + + Version: 170 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFSCompression.framework + Private: Yes + + NetworkStatistics: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkStatistics.framework + Private: Yes + + ReflectionInternal: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReflectionInternal.framework + Private: Yes + + AppleIDSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetup.framework + Private: Yes + + ContactsAutocompleteUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework + Private: Yes + + FindMyDeviceUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDeviceUI.framework + Private: Yes + + CalendarDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDaemon.framework + Private: Yes + + PrivateMLClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateMLClient.framework + Private: Yes + + AACCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AACCore.framework + Private: Yes + + ProactiveBlendingLayer_iOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveBlendingLayer_iOS.framework + Private: Yes + + ProactiveSummarization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSummarization.framework + Private: Yes + + AppleConvergedFirmwareUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleConvergedFirmwareUpdater.framework + Private: Yes + + CoreFollowUp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreFollowUp.framework + Private: Yes + + OnDeviceEvalRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceEvalRuntime.framework + Private: Yes + + C2: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/C2.framework + Private: Yes + + CloudSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSettings.framework + Private: Yes + + MediaFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaFoundation.framework + Private: Yes + + CacheDelete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CacheDelete.framework + Private: Yes + + SafetyMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafetyMonitor.framework + Private: Yes + + StoreKitUIMac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreKitUIMac.framework + Private: Yes + + MobileStoreDemoCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileStoreDemoCore.framework + Private: Yes + + VoiceProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceProcessor.framework + Private: Yes + + OnDeviceStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorage.framework + Private: Yes + + HDRProcessing: + + Version: 1.427.53 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.427.53, Copyright Apple Inc, 2015-2025 + Location: /System/Library/PrivateFrameworks/HDRProcessing.framework + Private: Yes + + login: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/login.framework + Private: Yes + + loginsupport: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/login.framework/Frameworks/loginsupport.framework + Private: Yes + + SearchAssets: + + Version: 3404.77.2.14.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchAssets.framework + Private: Yes + + WidgetObservation: + + Version: 1459.4.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WidgetObservation.framework + Private: Yes + + PAImagingCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PAImagingCore.framework + Private: Yes + + CalendarFoundation: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarFoundation.framework + Private: Yes + + ToolKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToolKit.framework + Private: Yes + + SystemOverride: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemOverride.framework + Private: Yes + + Wallpaper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Wallpaper.framework + Private: Yes + + Mail: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mail.framework + Private: Yes + + GenerativeExperiencesRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiencesRuntime.framework + Private: Yes + + SiriUIBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUIBridge.framework + Private: Yes + + SiriWellnessIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriWellnessIntents.framework + Private: Yes + + FindMyLocate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyLocate.framework + Private: Yes + + iTunesCloud: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iTunesCloud.framework + Private: Yes + + DynamicDesktop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DynamicDesktop.framework + Private: Yes + + UniversalAccess: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework + Private: Yes + + UAEHCommon: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/UAEHCommon.framework + Private: Yes + + UniversalAccessCore: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/UniversalAccessCore.framework + Private: Yes + + Zoom: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/Zoom.framework + Private: Yes + + SiriCalendarIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCalendarIntents.framework + Private: Yes + + AGXGPURawCounter: + + Version: 325.34.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AGXGPURawCounter.framework + Private: Yes + + IntelligenceFlowFeedbackDataCollector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowFeedbackDataCollector.framework + Private: Yes + + EXDisplayPipe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EXDisplayPipe.framework + Private: Yes + + FindMyCloudKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCloudKit.framework + Private: Yes + + GameKitServices: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameKitServices.framework + Private: Yes + + CoreMotionAlgorithms: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMotionAlgorithms.framework + Private: Yes + + GPUSupport: + + Version: 21.1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: GPUSupport 21.1.1.0.0 + Location: /System/Library/PrivateFrameworks/GPUSupport.framework + Private: Yes + + SampleAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SampleAnalysis.framework + Private: Yes + + SAHelper: + + Version: 385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SampleAnalysis.framework/Frameworks/SAHelper.framework + Private: Yes + + AdCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdCore.framework + Private: Yes + + VoiceShortcuts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceShortcuts.framework + Private: Yes + + AppSupport: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSupport.framework + Private: Yes + + Bosporus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bosporus.framework + Private: Yes + + HIDRMUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMUI.framework + Private: Yes + + CoreDAV: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDAV.framework + Private: Yes + + CoreSpeech: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeech.framework + Private: Yes + + RunningBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RunningBoardServices.framework + Private: Yes + + AOSKit: + + Version: 1.07 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSKit.framework + Private: Yes + + ContactsAutocomplete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAutocomplete.framework + Private: Yes + + TCCSystemMigration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCCSystemMigration.framework + Private: Yes + + AAAFoundationSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AAAFoundationSwift.framework + Private: Yes + + AVConference: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework + Private: Yes + + LegacyHandle: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework + Private: Yes + + GKSPerformance: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/GKSPerformance.framework + Private: Yes + + ViceroyTrace: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework + Private: Yes + + SimpleKeyExchange: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework + Private: Yes + + snatmap: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework + Private: Yes + + ICE: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework + Private: Yes + + JetPack: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetPack.framework + Private: Yes + + AccessibilityAudit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityAudit.framework + Private: Yes + + SiriSuggestionsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsSupport.framework + Private: Yes + + WirelessProximity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessProximity.framework + Private: Yes + + CoreUARP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUARP.framework + Private: Yes + + LinguisticData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinguisticData.framework + Private: Yes + + KnowledgeGraphKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KnowledgeGraphKit.framework + Private: Yes + + SiriSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSettingsUI.framework + Private: Yes + + FMIPCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMIPCore.framework + Private: Yes + + ConfigurationProfiles: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationProfiles.framework + Private: Yes + + CoreUtilsSwift: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsSwift.framework + Private: Yes + + SiriInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInference.framework + Private: Yes + + HomeKitDaemonLegacy: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/HomeKitDaemonLegacy.framework + Private: Yes + + CallHistoryToolKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallHistoryToolKit.framework + Private: Yes + + HeadGestures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadGestures.framework + Private: Yes + + FindMyDevice: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDevice.framework + Private: Yes + + AppleDisplayTCONControl: + + Version: 70 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDisplayTCONControl.framework + Private: Yes + + UIRecording: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIRecording.framework + Private: Yes + + TCC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCC.framework + Private: Yes + + MMCS: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MMCS.framework + Private: Yes + + GamePolicy: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GamePolicy.framework + Private: Yes + + PhotosFormats: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosFormats.framework + Private: Yes + + TextGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextGeneration.framework + Private: Yes + + ProactiveCDNDownloader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveCDNDownloader.framework + Private: Yes + + SiriMessageTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessageTypes.framework + Private: Yes + + ContinuousDialogManagerService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContinuousDialogManagerService.framework + Private: Yes + + NotesSupport: + + Version: 2.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesSupport.framework + Private: Yes + + CoreRC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRC.framework + Private: Yes + + TextInputMenuUI: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputMenuUI.framework + Private: Yes + + CorePDF: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePDF.framework + Private: Yes + + UIKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitServices.framework + Private: Yes + + SecCodeWrapper: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecCodeWrapper.framework + Private: Yes + + SiriMailInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailInternal.framework + Private: Yes + + Seeding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Seeding.framework + Private: Yes + + SiriAudioIntentUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioIntentUtils.framework + Private: Yes + + MobileSystemServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSystemServices.framework + Private: Yes + + CompanionServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CompanionServices.framework + Private: Yes + + AccessibilityPerformance: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityPerformance.framework + Private: Yes + + AssistiveControlSupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistiveControlSupport.framework + Private: Yes + + GPUInfo: + + Version: 1.3.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUInfo.framework + Private: Yes + + CoreUI: + + Version: 2.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUI.framework + Private: Yes + + ManagedSettingsObjC: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedSettingsObjC.framework + Private: Yes + + AvatarKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarKit.framework + Private: Yes + + USDLib_FormatLoaderProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USDLib_FormatLoaderProxy.framework + Private: Yes + + PromotedContentJetSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentJetSupport.framework + Private: Yes + + SiriSharedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSharedUI.framework + Private: Yes + + AuthenticationServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthenticationServicesCore.framework + Private: Yes + + SPShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPShared.framework + Private: Yes + + GraphCompute: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphCompute.framework + Private: Yes + + GeoServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoServices.framework + Private: Yes + + ProtocolBuffer: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtocolBuffer.framework + Private: Yes + + CallHistory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallHistory.framework + Private: Yes + + CommonUtilities: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommonUtilities.framework + Private: Yes + + FedStats: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FedStats.framework + Private: Yes + + DataDetectorsCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectorsCore.framework + Private: Yes + + ProactiveSuggestionClientModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSuggestionClientModel.framework + Private: Yes + + MetadataUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetadataUtilities.framework + Private: Yes + + iPodVoiceOver: + + Version: 1.4.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.4.4, Copyright © 2009-2020 Apple Inc. + Location: /System/Library/PrivateFrameworks/iPodVoiceOver.framework + Private: Yes + + ManagedConfiguration: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedConfiguration.framework + Private: Yes + + DailyBriefingCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DailyBriefingCommon.framework + Private: Yes + + QuickLookNonBaseSystem: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework + Private: Yes + + Stickers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Stickers.framework + Private: Yes + + Tightbeam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tightbeam.framework + Private: Yes + + TrustEvaluationAgent: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework + Private: Yes + + AppSystemSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSystemSettingsUI.framework + Private: Yes + + SafariPlatformSupport: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariPlatformSupport.framework + Private: Yes + + BezelServices: + + Version: 368 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 368 + Location: /System/Library/PrivateFrameworks/BezelServices.framework + Private: Yes + + SkyLight: + + Version: 1.600.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SkyLight.framework + Private: Yes + + SiriSpeechSynthesis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSpeechSynthesis.framework + Private: Yes + + _SonicKit_MusicKit_Packages: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_SonicKit_MusicKit_Packages.framework + Private: Yes + + CoreUtilsExtras: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsExtras.framework + Private: Yes + + EmbeddedOSSupportHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddedOSSupportHost.framework + Private: Yes + + InputAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAnalytics.framework + Private: Yes + + WirelessCoexManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessCoexManager.framework + Private: Yes + + DistributedEvaluation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedEvaluation.framework + Private: Yes + + SonicFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SonicFoundation.framework + Private: Yes + + MessageSecurity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageSecurity.framework + Private: Yes + + IMRCSTransfer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMRCSTransfer.framework + Private: Yes + + CloudPhotoServicesConfiguration: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoServicesConfiguration.framework + Private: Yes + + NotificationCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotificationCenterUI.framework + Private: Yes + + VideoEffect: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoEffect.framework + Private: Yes + + RemoteServiceDiscovery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework + Private: Yes + + RealityFusion: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RealityFusion.framework + Private: Yes + + SiriTurnTakingManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTurnTakingManager.framework + Private: Yes + + BatteryCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryCenter.framework + Private: Yes + + AMPDesktopUI: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPDesktopUI.framework + Private: Yes + + GPUWrangler: + + Version: 8.1.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUWrangler.framework + Private: Yes + + DisplayServices: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DisplayServices 3.1 + Location: /System/Library/PrivateFrameworks/DisplayServices.framework + Private: Yes + + SPSupport: + + Version: 10.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPSupport.framework + Private: Yes + + DuetActivityScheduler: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DuetActivityScheduler.framework + Private: Yes + + SoftwareUpdateCoreConnect: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework + Private: Yes + + DocumentUnderstandingClient: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentUnderstandingClient.framework + Private: Yes + + RenderBox: + + Version: 6.4.39.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RenderBox.framework + Private: Yes + + CoreHAP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHAP.framework + Private: Yes + + EAFirmwareUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EAFirmwareUpdater.framework + Private: Yes + + AppleISPEmulator: + + Version: 1.26.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleISPEmulator.framework + Private: Yes + + IOPresentment: + + Version: 67 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOPresentment.framework + Private: Yes + + Proximity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Proximity.framework + Private: Yes + + RemindersAppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersAppIntents.framework + Private: Yes + + LinkPresentation: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkPresentation.framework + Private: Yes + + QuickLookUIIosmac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookUIIosmac.framework + Private: Yes + + OTSVG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OTSVG.framework + Private: Yes + + AccessibilityBundles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityBundles.framework + Private: Yes + + FocusSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FocusSettingsUI.framework + Private: Yes + + DataAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework + Private: Yes + + DACoreDAVGlue: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DACoreDAVGlue.framework + Private: Yes + + DACalDAV: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DACalDAV.framework + Private: Yes + + DADaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DADaemonSupport.framework + Private: Yes + + DASubCal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DASubCal.framework + Private: Yes + + DAPubCal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DAPubCal.framework + Private: Yes + + SystemDesktopAppearance: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemDesktopAppearance.framework + Private: Yes + + CoreAVCHD: + + Version: 6.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAVCHD.framework + Private: Yes + + PaperKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaperKit.framework + Private: Yes + + OSASyncProxyClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSASyncProxyClient.framework + Private: Yes + + AppSandbox: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSandbox.framework + Private: Yes + + WiFiCloudSyncEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiCloudSyncEngine.framework + Private: Yes + + SiriContactsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsIntents.framework + Private: Yes + + ScreenContinuityServices: + + Version: 50.4.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenContinuityServices.framework + Private: Yes + + ServiceExtensionsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServiceExtensionsCore.framework + Private: Yes + + DataDetectorsNaturalLanguage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework + Private: Yes + + DarwinDirectoryInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectoryInternal.framework + Private: Yes + + PlugInKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlugInKit.framework + Private: Yes + + PowerlogFullOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogFullOperators.framework + Private: Yes + + SignpostMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostMetrics.framework + Private: Yes + + BiometricKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricKit.framework + Private: Yes + + NeutrinoCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeutrinoCore.framework + Private: Yes + + DiagnosticExtensionsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticExtensionsDaemon.framework + Private: Yes + + ProfileValidatedAppIdentity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProfileValidatedAppIdentity.framework + Private: Yes + + SetupKit: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupKit.framework + Private: Yes + + VoiceActions: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceActions.framework + Private: Yes + + SpotlightEmbedding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightEmbedding.framework + Private: Yes + + CorePrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePrediction.framework + Private: Yes + + AppleKeyStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleKeyStore.framework + Private: Yes + + WPDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WPDaemon.framework + Private: Yes + + SiriAutoComplete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAutoComplete.framework + Private: Yes + + ScreenTimeUICore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeUICore.framework + Private: Yes + + UniversalControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalControl.framework + Private: Yes + + PlatformSSOUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSOUI.framework + Private: Yes + + TeaDB: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaDB.framework + Private: Yes + + InfoQueryPersonalizationFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InfoQueryPersonalizationFeatures.framework + Private: Yes + + MediaControlSender: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaControlSender.framework + Private: Yes + + IconServices: + + Version: 493 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IconServices.framework + Private: Yes + + SettingsHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SettingsHost.framework + Private: Yes + + RapportUI: + + Version: 6.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RapportUI.framework + Private: Yes + + Tungsten: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tungsten.framework + Private: Yes + + MigrationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MigrationKit.framework + Private: Yes + + MediaKit: + + Version: 16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Esoteric Media Manipulation + Location: /System/Library/PrivateFrameworks/MediaKit.framework + Private: Yes + + PasswordManagerUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PasswordManagerUI.framework + Private: Yes + + MFAAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MFAAuthentication.framework + Private: Yes + + AutoFillUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoFillUI.framework + Private: Yes + + AirPlayRoutePrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayRoutePrediction.framework + Private: Yes + + CoreLocationReplay: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationReplay.framework + Private: Yes + + PhotoAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoAnalysis.framework + Private: Yes + + HIDPreferences: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDPreferences.framework + Private: Yes + + MessagesKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesKit.framework + Private: Yes + + StoreKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreKitMacHelper.framework + Private: Yes + + TrustKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustKit.framework + Private: Yes + + AccessibilityPlatformTranslation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityPlatformTranslation.framework + Private: Yes + + WritingTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WritingTools.framework + Private: Yes + + AppleSauce: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSauce.framework + Private: Yes + + MailSupport: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailSupport.framework + Private: Yes + + TextUnderstandingShared: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextUnderstandingShared.framework + Private: Yes + + PDS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PDS.framework + Private: Yes + + HomeKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKit.framework + Private: Yes + + SiriAppLaunchIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppLaunchIntents.framework + Private: Yes + + FrontBoardServices: + + Version: 943.5.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FrontBoardServices.framework + Private: Yes + + ContactsWidgetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsWidgetUI.framework + Private: Yes + + IntelligenceFlowRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowRuntime.framework + Private: Yes + + AGXCompilerCore: + + Version: 325.34.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AGXCompilerCore.framework + Private: Yes + + CPAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPAnalytics.framework + Private: Yes + + GenerativeAssistantSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantSettings.framework + Private: Yes + + OSD: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSD.framework + Private: Yes + + CardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CardServices.framework + Private: Yes + + IntelligentRouting: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRouting.framework + Private: Yes + + DMCUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCUtilities.framework + Private: Yes + + RelativeMotion: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RelativeMotion.framework + Private: Yes + + MaterialKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MaterialKit.framework + Private: Yes + + ContextualActionsClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualActionsClient.framework + Private: Yes + + PersonaKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonaKit.framework + Private: Yes + + kperf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/kperf.framework + Private: Yes + + HomePlatformSettingsUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomePlatformSettingsUI.framework + Private: Yes + + PhotosGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosGraph.framework + Private: Yes + + AppleServiceToolkit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleServiceToolkit.framework + Private: Yes + + IntelligencePlatformCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework + Private: Yes + + DeviceDiscoveryUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceDiscoveryUI.framework + Private: Yes + + PersonalAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalAudio.framework + Private: Yes + + ExpansionSlotSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExpansionSlotSupport.framework + Private: Yes + + AppSSO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSO.framework + Private: Yes + + PreferencePanesSupport: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreferencePanesSupport.framework + Private: Yes + + IntentsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsServices.framework + Private: Yes + + DeviceIdentity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceIdentity.framework + Private: Yes + + ClockMenuExtraPreferences: + + Version: 1.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClockMenuExtraPreferences.framework + Private: Yes + + IntelligencePlatformLibrary: + + Version: 100.42.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformLibrary.framework + Private: Yes + + ChronoCore: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoCore.framework + Private: Yes + + Calculate: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Calculate.framework + Private: Yes + + PreviewsFoundationOS: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsFoundationOS.framework + Private: Yes + + PreviewsOSSupportUI: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsOSSupportUI.framework + Private: Yes + + LanguageModeling: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LanguageModeling.framework + Private: Yes + + CalendarIntegrationSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarIntegrationSupport.framework + Private: Yes + + IntelligenceFlowContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowContext.framework + Private: Yes + + PAImaging: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PAImaging.framework + Private: Yes + + LocalAuthenticationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationUI.framework + Private: Yes + + CloudServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudServices.framework + Private: Yes + + LockdownMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LockdownMode.framework + Private: Yes + + FlowFrameKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlowFrameKit.framework + Private: Yes + + SpeechRecognitionCommandServices: + + Version: 3.1.65.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionCommandServices.framework + Private: Yes + + FedStatsPluginCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FedStatsPluginCore.framework + Private: Yes + + StorageUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageUI.framework + Private: Yes + + VectorSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VectorSearch.framework + Private: Yes + + SearchAds: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchAds.framework + Private: Yes + + PacketParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PacketParser.framework + Private: Yes + + PrivateCloudCompute: + + Version: 2250.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateCloudCompute.framework + Private: Yes + + SpotlightIndex: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightIndex.framework + Private: Yes + + ApplePDPHelper: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePDPHelper.framework + Private: Yes + + AvatarKitContent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarKitContent.framework + Private: Yes + + ResponseUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ResponseUI.framework + Private: Yes + + HearingModeSettingsUIMacOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeSettingsUIMacOS.framework + Private: Yes + + PoirotBlocks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotBlocks.framework + Private: Yes + + ViewBridge: + + Version: 769.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ViewBridge.framework + Private: Yes + + LiftUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiftUI.framework + Private: Yes + + PersonalizationPortraitInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework + Private: Yes + + FindMyBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyBluetooth.framework + Private: Yes + + ReminderKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKit.framework + Private: Yes + + MLModelSpecification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLModelSpecification.framework + Private: Yes + + SiriContactsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsUI.framework + Private: Yes + + ScoreBoard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScoreBoard.framework + Private: Yes + + TrialProto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrialProto.framework + Private: Yes + + CloudAsset: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAsset.framework + Private: Yes + + ScreenTimeCore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeCore.framework + Private: Yes + + ImageHarmonizationKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ImageHarmonizationKit.framework + Private: Yes + + ContextKitExtraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKitExtraction.framework + Private: Yes + + ModalityXObjects: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModalityXObjects.framework + Private: Yes + + PrintKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrintKit.framework + Private: Yes + + SpeechRecognitionCore: + + Version: 6.3.30.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework + Private: Yes + + SiriAppResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppResolution.framework + Private: Yes + + AudioToolboxCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioToolboxCore.framework + Private: Yes + + LighthouseCoreMLFeatureStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLFeatureStore.framework + Private: Yes + + VideoProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoProcessing.framework + Private: Yes + + NotesPreviewKit: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesPreviewKit.framework + Private: Yes + + UniversalHIDKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalHIDKit.framework + Private: Yes + + BaseBoard: + + Version: 694.5.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BaseBoard.framework + Private: Yes + + AssetViewer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetViewer.framework + Private: Yes + + LocalSpeechRecognitionBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalSpeechRecognitionBridge.framework + Private: Yes + + UIIntelligenceSupportAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceSupportAgent.framework + Private: Yes + + AVFCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFCore.framework + Private: Yes + + SpeechDetector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechDetector.framework + Private: Yes + + ToneKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToneKit.framework + Private: Yes + + MobileStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileStorage.framework + Private: Yes + + MessagesSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesSettingsUI.framework + Private: Yes + + XCTestSupport: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTestSupport.framework + Private: Yes + + Portrait: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Portrait.framework + Private: Yes + + HearingModeService_Private: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeService_Private.framework + Private: Yes + + Suggestions: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Suggestions.framework + Private: Yes + + ProactiveSummarizationClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSummarizationClient.framework + Private: Yes + + PassKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitUI.framework + Private: Yes + + PrivateSearchProtocols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchProtocols.framework + Private: Yes + + ReplicatorCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorCore.framework + Private: Yes + + AudioSessionServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioSessionServer.framework + Private: Yes + + MediaConversionService: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaConversionService.framework + Private: Yes + + SiriFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFoundation.framework + Private: Yes + + HumanUnderstandingEvidence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUnderstandingEvidence.framework + Private: Yes + + RemoteConfiguration: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteConfiguration.framework + Private: Yes + + CoreLocationProtobuf: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework + Private: Yes + + DiagnosticExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticExtensions.framework + Private: Yes + + Settings: + + Version: 207.3.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Settings.framework + Private: Yes + + SiriNotificationsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotificationsIntents.framework + Private: Yes + + MachineSettings: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: MachineSettings Framework + Location: /System/Library/PrivateFrameworks/MachineSettings.framework + Private: Yes + + PromptKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromptKit.framework + Private: Yes + + TipKitServices: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipKitServices.framework + Private: Yes + + CoreBluetoothUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreBluetoothUI.framework + Private: Yes + + GenerativeExperiences: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiences.framework + Private: Yes + + ResponseKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ResponseKit.framework + Private: Yes + + AppleGVACore: + + Version: 113.56 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleGVACore.framework + Private: Yes + + SearchUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchUI.framework + Private: Yes + + Archetype: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Archetype.framework + Private: Yes + + WeatherDaemon: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherDaemon.framework + Private: Yes + + CalendarDatabase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDatabase.framework + Private: Yes + + PoirotUDFs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotUDFs.framework + Private: Yes + + SpatialAudioServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpatialAudioServices.framework + Private: Yes + + NotesSiriUI: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesSiriUI.framework + Private: Yes + + HeroDataClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeroDataClient.framework + Private: Yes + + GameCenterOverlayService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterOverlayService.framework + Private: Yes + + GRDBInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GRDBInternal.framework + Private: Yes + + SiriDialogEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriDialogEngine.framework + Private: Yes + + ReplayKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplayKitMacHelper.framework + Private: Yes + + Coordination: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Coordination.framework + Private: Yes + + InternetAccounts: + + Version: 2.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternetAccounts.framework + Private: Yes + + MediaML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaML.framework + Private: Yes + + MCCFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MCCFoundation.framework + Private: Yes + + SiriGestureBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriGestureBridge.framework + Private: Yes + + CoreSuggestionsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsInternals.framework + Private: Yes + + icloudMCCKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/icloudMCCKit.framework + Private: Yes + + SafariSafeBrowsing: + + Version: 621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework + Private: Yes + + ContactsMetrics: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsMetrics.framework + Private: Yes + + ModelCatalog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelCatalog.framework + Private: Yes + + HomeKitFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitFeatures.framework + Private: Yes + + PrivateMLClientInferenceProvider: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateMLClientInferenceProvider.framework + Private: Yes + + CoreSceneUnderstanding: + + Version: 1.69.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSceneUnderstanding.framework + Private: Yes + + HWAdapter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HWAdapter.framework + Private: Yes + + BookCoverUtility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookCoverUtility.framework + Private: Yes + + PasswordServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PasswordServer.framework + Private: Yes + + GenerativeModels: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeModels.framework + Private: Yes + + AirTrafficHost: + + Version: 4024.500.19 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AirTrafficHost.framework + Private: Yes + + SiriKitRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitRuntime.framework + Private: Yes + + DocumentCamera: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentCamera.framework + Private: Yes + + ClassKitNotificationUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassKitNotificationUI.framework + Private: Yes + + HealthDiagnosticExtensionCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDiagnosticExtensionCore.framework + Private: Yes + + SiriSuggestionsAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsAPI.framework + Private: Yes + + BackgroundTaskManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework + Private: Yes + + FindMyLocateObjCWrapper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyLocateObjCWrapper.framework + Private: Yes + + XOJITExecutor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XOJITExecutor.framework + Private: Yes + + AccessoryNowPlaying: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessoryNowPlaying.framework + Private: Yes + + GPURawCounter: + + Version: 34 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPURawCounter.framework + Private: Yes + + LoginUIKit: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoginUIKit.framework + Private: Yes + + LoginUICore: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoginUIKit.framework/Frameworks/LoginUICore.framework + Private: Yes + + BookLibraryCore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookLibraryCore.framework + Private: Yes + + AudioServerDriverTransports_Base: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_Base.framework + Private: Yes + + Safari: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Safari.framework + Private: Yes + + Dendrite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Dendrite.framework + Private: Yes + + SPFinder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPFinder.framework + Private: Yes + + RTTUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTTUI.framework + Private: Yes + + Transparency: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Transparency.framework + Private: Yes + + AudioAnalyticsExternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalyticsExternal.framework + Private: Yes + + DiagnosticsSessionAvailability: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticsSessionAvailability.framework + Private: Yes + + DeviceCheckInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceCheckInternal.framework + Private: Yes + + WebContentRestrictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebContentRestrictions.framework + Private: Yes + + Bom: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bom.framework + Private: Yes + + BlockMonitoring: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BlockMonitoring.framework + Private: Yes + + USTBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USTBridge.framework + Private: Yes + + BookDataStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookDataStore.framework + Private: Yes + + StoreFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreFoundation.framework + Private: Yes + + TimeMachinePrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeMachinePrivate.framework + Private: Yes + + OfficeImport: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OfficeImport.framework + Private: Yes + + AskPermission: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskPermission.framework + Private: Yes + + SpotlightServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightServices.framework + Private: Yes + + Focus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Focus.framework + Private: Yes + + SiriVirtualDeviceResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVirtualDeviceResolution.framework + Private: Yes + + CoreSpeechExclave: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechExclave.framework + Private: Yes + + AMPSharing: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPSharing.framework + Private: Yes + + NewDeviceOutreach: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewDeviceOutreach.framework + Private: Yes + + AirPlaySender: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySender.framework + Private: Yes + + Sentry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sentry.framework + Private: Yes + + UserFS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserFS.framework + Private: Yes + + XCTTargetBootstrap: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework + Private: Yes + + PaymentUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaymentUI.framework + Private: Yes + + WebBookmarksSwift: + + Version: 18.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebBookmarksSwift.framework + Private: Yes + + SpeakerRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeakerRecognition.framework + Private: Yes + + PeopleSuggester: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PeopleSuggester.framework + Private: Yes + + OpenDirectoryConfigUI: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework + Private: Yes + + HIDRMClientKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMClientKit.framework + Private: Yes + + SFSymbols: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SFSymbols.framework + Private: Yes + + HomeKitBackingStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitBackingStore.framework + Private: Yes + + FamilyControls: + + Version: 4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyControls.framework + Private: Yes + + SiriTranslationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTranslationUI.framework + Private: Yes + + ZeoliteLanguage: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZeoliteLanguage.framework + Private: Yes + + ContactsDonationFeedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsDonationFeedback.framework + Private: Yes + + AppStoreUtilities: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreUtilities.framework + Private: Yes + + LocationAccessStore: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocationAccessStore.framework + Private: Yes + + ConstantClasses: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConstantClasses.framework + Private: Yes + + ProactiveExperimentsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveExperimentsInternals.framework + Private: Yes + + CorePhoneNumbers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePhoneNumbers.framework + Private: Yes + + PowerLog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerLog.framework + Private: Yes + + HID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HID.framework + Private: Yes + + CoreThemeDefinition: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThemeDefinition.framework + Private: Yes + + AggregateDictionaryHistory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AggregateDictionaryHistory.framework + Private: Yes + + SharingUI: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharingUI.framework + Private: Yes + + UVCFamily: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCFamily.framework + Private: Yes + + CoreWiFi: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreWiFi.framework + Private: Yes + + DFRDisplay: + + Version: 185 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRDisplay.framework + Private: Yes + + SpotlightKnowledge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightKnowledge.framework + Private: Yes + + GenerativeFunctionsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctionsFoundation.framework + Private: Yes + + MobileIcons: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileIcons.framework + Private: Yes + + SiriMessagesCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesCommon.framework + Private: Yes + + SystemMigration_SDKHeaders: + + Version: 5739.100.175 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SystemMigration_SDKHeaders.framework + Private: Yes + + CoreADI: + + Version: 8.7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: 64-bit + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreADI.framework + Private: Yes + + WebPrivacy: + + Version: 44 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebPrivacy.framework + Private: Yes + + ProactiveSupportStubs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSupportStubs.framework + Private: Yes + + AudioAnalyticsBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalyticsBase.framework + Private: Yes + + LiveTranscription: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveTranscription.framework + Private: Yes + + RemoteHID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteHID.framework + Private: Yes + + KerberosHelper: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KerberosHelper.framework + Private: Yes + + SiriNotebook: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotebook.framework + Private: Yes + + GraphComputeRT: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphComputeRT.framework + Private: Yes + + HealthKitAdditions: + + Version: 5200.4.25 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthKitAdditions.framework + Private: Yes + + ChronoServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoServices.framework + Private: Yes + + IMDMessageServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDMessageServices.framework + Private: Yes + + SystemWake: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemWake.framework + Private: Yes + + AppleFirmwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFirmwareUpdate.framework + Private: Yes + + IOAccelerator: + + Version: 485 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOAccelerator.framework + Private: Yes + + FindMyMessaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyMessaging.framework + Private: Yes + + ReplicatorEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorEngine.framework + Private: Yes + + CMCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCapture.framework + Private: Yes + + GraphicsAppSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework + Private: Yes + + HomeKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitCore.framework + Private: Yes + + CDDataAccessExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccessExpress.framework + Private: Yes + + ContextKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKitCore.framework + Private: Yes + + HealthDaemonFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDaemonFoundation.framework + Private: Yes + + BagKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BagKit.framework + Private: Yes + + SiriOntologyProtobuf: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOntologyProtobuf.framework + Private: Yes + + SMBClientEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SMBClientEngine.framework + Private: Yes + + ParavirtualizedANE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParavirtualizedANE.framework + Private: Yes + + PegasusAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusAPI.framework + Private: Yes + + TransparencyDetailsViewMac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TransparencyDetailsViewMac.framework + Private: Yes + + WeatherAnalytics: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherAnalytics.framework + Private: Yes + + IOPlatformPluginFamily: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework + Private: Yes + + VisualGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualGeneration.framework + Private: Yes + + CoreThreadRadio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThreadRadio.framework + Private: Yes + + DeviceLink: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DeviceLink.framework + Private: Yes + + AUSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AUSettings.framework + Private: Yes + + ANECompiler: + + Version: 8.5.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANECompiler.framework + Private: Yes + + MessagesHelperKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesHelperKit.framework + Private: Yes + + AppleLDAP: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleLDAP.framework + Private: Yes + + AirPlaySupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySupport.framework + Private: Yes + + RegulatoryDomain: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RegulatoryDomain.framework + Private: Yes + + ExtensionFoundation: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionFoundation.framework + Private: Yes + + WorkoutAnnouncements: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkoutAnnouncements.framework + Private: Yes + + PhotosImagingFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework + Private: Yes + + SystemMigration: + + Version: 5739.100.175 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigration.framework + Private: Yes + + LowPowerMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LowPowerMode.framework + Private: Yes + + ConfigProfileHelper: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigProfileHelper.framework + Private: Yes + + NPTKit: + + Version: 2.14.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NPTKit.framework + Private: Yes + + UserNotificationsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsServices.framework + Private: Yes + + FeatureFlags: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureFlags.framework + Private: Yes + + PowerlogDatabaseReader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogDatabaseReader.framework + Private: Yes + + CoreUtils: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtils.framework + Private: Yes + + DesktopServicesPriv: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework + Private: Yes + + WebDriver: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebDriver.framework + Private: Yes + + JavaScriptAppleEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaScriptAppleEvents.framework + Private: Yes + + AudioTransportCommon: + + Version: 300.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioTransportCommon.framework + Private: Yes + + VisualTestKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/VisualTestKit.framework + Private: Yes + + AppSystemSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSystemSettings.framework + Private: Yes + + SiriLiminal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriLiminal.framework + Private: Yes + + IOGPU: + + Version: 104.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOGPU.framework + Private: Yes + + PromotedContentJetClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentJetClient.framework + Private: Yes + + CoreCDPUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDPUI.framework + Private: Yes + + CoreFollowUpUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreFollowUpUI.framework + Private: Yes + + AdPlatforms: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatforms.framework + Private: Yes + + UsageTracking: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UsageTracking.framework + Private: Yes + + Admin: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 13.0, Copyright © 1998-2013 Apple Inc. + Location: /System/Library/PrivateFrameworks/Admin.framework + Private: Yes + + DataAccessExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccessExpress.framework + Private: Yes + + LiveExecutionResultsRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsRuntime.framework + Private: Yes + + MallocStackLogging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MallocStackLogging.framework + Private: Yes + + PIRGeoProtos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PIRGeoProtos.framework + Private: Yes + + MessageProtection: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageProtection.framework + Private: Yes + + MFiAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MFiAuthentication.framework + Private: Yes + + RealityIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RealityIO.framework + Private: Yes + + FaceTimeFeatureControl: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeFeatureControl.framework + Private: Yes + + MediaRemoteDaemonServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaRemoteDaemonServices.framework + Private: Yes + + DeepThoughtBiomeFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepThoughtBiomeFoundation.framework + Private: Yes + + FamilyNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyNotification.framework + Private: Yes + + MediaPlaybackCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaPlaybackCore.framework + Private: Yes + + CoreFP: + + Version: 4.10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreFP.framework + Private: Yes + + DirectResource: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectResource.framework + Private: Yes + + AuthKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthKit.framework + Private: Yes + + CloudSharingUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSharingUI.framework + Private: Yes + + DesignLibrary: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DesignLibrary.framework + Private: Yes + + ReminderKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKitInternal.framework + Private: Yes + + CryptexServer: + + Version: 493.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptexServer.framework + Private: Yes + + PreviewsUIKitMacHelper: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsUIKitMacHelper.framework + Private: Yes + + MilAneflow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MilAneflow.framework + Private: Yes + + PowerlogLiteOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogLiteOperators.framework + Private: Yes + + IMTransferAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferAgent.framework + Private: Yes + + Mangrove: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mangrove.framework + Private: Yes + + NLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NLP.framework + Private: Yes + + CoreAccessories: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAccessories.framework + Private: Yes + + AMPLibrary: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPLibrary.framework + Private: Yes + + ReplicatorServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorServices.framework + Private: Yes + + GeoUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoUIFramework.framework + Private: Yes + + SocialLayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialLayer.framework + Private: Yes + + AppContainer: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppContainer.framework + Private: Yes + + CoreWLANKit: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 16.0, Copyright © 2011-2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreWLANKit.framework + Private: Yes + + AccelerateGPU: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccelerateGPU.framework + Private: Yes + + PhotoFoundationLegacy: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoFoundationLegacy.framework + Private: Yes + + apfs_boot_mount: + + Version: 2332.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/apfs_boot_mount.framework + Private: Yes + + IASUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IASUtilities.framework + Private: Yes + + SentencePiece: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SentencePiece.framework + Private: Yes + + SidecarCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SidecarCore.framework + Private: Yes + + MetricsKit: + + Version: 2.8.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricsKit.framework + Private: Yes + + QueryParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QueryParser.framework + Private: Yes + + TrustedAccessory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustedAccessory.framework + Private: Yes + + XARTRecovery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XARTRecovery.framework + Private: Yes + + SpotlightReceiver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightReceiver.framework + Private: Yes + + MLCompilerRuntime: + + Version: 3404.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLCompilerRuntime.framework + Private: Yes + + NetAppsUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetAppsUtilities.framework + Private: Yes + + LighthouseCoreMLModelStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLModelStore.framework + Private: Yes + + CBORLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CBORLibrary.framework + Private: Yes + + PegasusPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusPersistence.framework + Private: Yes + + SiriActivationFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriActivationFoundation.framework + Private: Yes + + CloudFamilyRestrictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudFamilyRestrictions.framework + Private: Yes + + CoreJapaneseEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreJapaneseEngine.framework + Private: Yes + + MotionSensorLogging: + + Version: 0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MotionSensorLogging.framework + Private: Yes + + IMCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMCore.framework + Private: Yes + + InstallerDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallerDiagnostics.framework + Private: Yes + + Restore: + + Version: 2.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Restore.framework + Private: Yes + + SpotlightDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightDaemon.framework + Private: Yes + + GPUCompiler: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUCompiler.framework + Private: Yes + + DAAPKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DAAPKit.framework + Private: Yes + + SpaceAttribution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpaceAttribution.framework + Private: Yes + + ShaderGraph: + + Version: 107.0.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShaderGraph.framework + Private: Yes + + DataDeliveryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDeliveryServices.framework + Private: Yes + + QuickLookThumbnailing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework + Private: Yes + + SiriTurnRestatement: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTurnRestatement.framework + Private: Yes + + NearbySessions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearbySessions.framework + Private: Yes + + AppleLOM: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleLOM.framework + Private: Yes + + DocumentUnderstanding: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentUnderstanding.framework + Private: Yes + + IntelligentRoutingServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingServices.framework + Private: Yes + + AVFoundationCF: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFoundationCF.framework + Private: Yes + + MediaAnalysisPhotosServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisPhotosServices.framework + Private: Yes + + SnippetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetUI.framework + Private: Yes + + CoreAutoLayout: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAutoLayout.framework + Private: Yes + + AppStoreDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreDaemon.framework + Private: Yes + + OSAnalyticsPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework + Private: Yes + + VoiceServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceServices.framework + Private: Yes + + AXMediaUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXMediaUtilities.framework + Private: Yes + + Noticeboard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Noticeboard.framework + Private: Yes + + Darwinup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Darwinup.framework + Private: Yes + + WindowManagement: + + Version: 278.4.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WindowManagement.framework + Private: Yes + + FocusEngine: + + Version: 8444.1.402 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FocusEngine.framework + Private: Yes + + MobileIdentityServiceUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileIdentityServiceUI.framework + Private: Yes + + DistributedSensing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedSensing.framework + Private: Yes + + MicroLocationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocationDaemon.framework + Private: Yes + + ProximityAppleIDSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProximityAppleIDSetup.framework + Private: Yes + + Chirp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Chirp.framework + Private: Yes + + Sage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sage.framework + Private: Yes + + Hydra: + + Version: 1.1.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Hydra.framework + Private: Yes + + ProactiveEventTracker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveEventTracker.framework + Private: Yes + + RemoteManagementStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementStore.framework + Private: Yes + + KoaMapper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KoaMapper.framework + Private: Yes + + SiriPrivateLearningLogging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningLogging.framework + Private: Yes + + PhotoFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoFoundation.framework + Private: Yes + + ProactiveInputPredictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveInputPredictions.framework + Private: Yes + + Rapport: + + Version: 6.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Rapport.framework + Private: Yes + + ArchetypeEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ArchetypeEngine.framework + Private: Yes + + IntelligenceFlowPlannerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowPlannerSupport.framework + Private: Yes + + DMCEnrollmentLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCEnrollmentLibrary.framework + Private: Yes + + BiomeStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeStorage.framework + Private: Yes + + PreviewsMessagingOS: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsMessagingOS.framework + Private: Yes + + WirelessDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessDiagnostics.framework + Private: Yes + + MicroLocationUtilities: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocationUtilities.framework + Private: Yes + + FolderActionsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FolderActionsKit.framework + Private: Yes + + RTBuddyCrashlogDecoder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTBuddyCrashlogDecoder.framework + Private: Yes + + ANSTKit: + + Version: 2.5.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANSTKit.framework + Private: Yes + + AXRuntime: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXRuntime.framework + Private: Yes + + AVKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVKitMacHelper.framework + Private: Yes + + ScreenSharingServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharingServer.framework + Private: Yes + + ComputeSafeguards: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ComputeSafeguards.framework + Private: Yes + + UserSafety: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserSafety.framework + Private: Yes + + MobileAssetUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAssetUpdater.framework + Private: Yes + + AOSAccountsLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSAccountsLite.framework + Private: Yes + + SiriAutoCompleteAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAutoCompleteAPI.framework + Private: Yes + + WebGPU: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1997 Martin Jones ; Copyright 1998, 1999 Torben Weis ; Copyright 1998, 1999, 2002 Waldo Bastian ; Copyright 1998-2000 Lars Knoll ; Copyright 1999, 2001 Antti Koivisto ; Copyright 1999-2001 Harri Porten ; Copyright 2000 Simon Hausmann ; Copyright 2000, 2001 Dirk Mueller ; Copyright 2000, 2001 Peter Kelly ; Copyright 2000 Daniel Molkentin ; Copyright 2000 Stefan Schimanski ; Copyright 1998-2000 Netscape Communications Corporation; Copyright 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper; Copyright 2001, 2002 Expat maintainers. + Location: /System/Library/PrivateFrameworks/WebGPU.framework + Private: Yes + + TipKitCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipKitCore.framework + Private: Yes + + AudioServerDriverTransports_IOP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_IOP.framework + Private: Yes + + MediaMLServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaMLServices.framework + Private: Yes + + PowerExperience: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerExperience.framework + Private: Yes + + PeopleUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PeopleUI.framework + Private: Yes + + BridgeOSInstallReporting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSInstallReporting.framework + Private: Yes + + NotesAnalytics: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesAnalytics.framework + Private: Yes + + SiriPrivateLearningAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningAnalytics.framework + Private: Yes + + BiomeFlexibleStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeFlexibleStorage.framework + Private: Yes + + IMAP: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAP.framework + Private: Yes + + SiriOrchestrationServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOrchestrationServices.framework + Private: Yes + + yara: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/yara.framework + Private: Yes + + NewsToday: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsToday.framework + Private: Yes + + DeviceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceManagement.framework + Private: Yes + + CoreServicesInternal: + + Version: 505 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreServicesInternal.framework + Private: Yes + + RevealCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RevealCore.framework + Private: Yes + + ProactiveExperiments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveExperiments.framework + Private: Yes + + Email: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Email.framework + Private: Yes + + IsolatedCoreAudioClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IsolatedCoreAudioClient.framework + Private: Yes + + AppStoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreUI.framework + Private: Yes + + ProductKit: + + Version: 2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProductKit.framework + Private: Yes + + IOAccelMemoryInfo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework + Private: Yes + + Backup: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Backup.framework + Private: Yes + + PersonalizedSensing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizedSensing.framework + Private: Yes + + PDSAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PDSAgent.framework + Private: Yes + + SiriNLUTypes: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNLUTypes.framework + Private: Yes + + _JetUI_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_JetUI_SwiftUI.framework + Private: Yes + + UserSafetyUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserSafetyUI.framework + Private: Yes + + HeadphoneProxFeatureService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneProxFeatureService.framework + Private: Yes + + WallpaperExtensionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WallpaperExtensionKit.framework + Private: Yes + + caulk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/caulk.framework + Private: Yes + + LocationSupport: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocationSupport.framework + Private: Yes + + BiomeLibrary: + + Version: 100.42.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeLibrary.framework + Private: Yes + + IMTranscoderAgent: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTranscoderAgent.framework + Private: Yes + + MobileDevice: + + Version: 1784.102.1 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/MobileDevice.framework + Private: Yes + + StickerKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StickerKitInternal.framework + Private: Yes + + TokenGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGeneration.framework + Private: Yes + + CommonAuth: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommonAuth.framework + Private: Yes + + AFKUser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AFKUser.framework + Private: Yes + + StorageManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageManagement.framework + Private: Yes + + LighthouseModelMonitoring: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseModelMonitoring.framework + Private: Yes + + IntelligencePlatform: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatform.framework + Private: Yes + + CoreNLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNLP.framework + Private: Yes + + PencilKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PencilKit.framework + Private: Yes + + MemoryDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MemoryDiagnostics.framework + Private: Yes + + FinderSyncPriv: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinderSyncPriv.framework + Private: Yes + + Recap: + + Version: 159.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Recap.framework + Private: Yes + + AppPredictionFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionFoundation.framework + Private: Yes + + PersonaUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonaUI.framework + Private: Yes + + APFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APFoundation.framework + Private: Yes + + AppStoreFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreFoundation.framework + Private: Yes + + TextToSpeechKonaSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechKonaSupport.framework + Private: Yes + + iCloudDriveService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudDriveService.framework + Private: Yes + + ShazamKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamKitUI.framework + Private: Yes + + SwiftASN1Internal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftASN1Internal.framework + Private: Yes + + CalendarNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarNotification.framework + Private: Yes + + ActionKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionKitUI.framework + Private: Yes + + DigitalTouchShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DigitalTouchShared.framework + Private: Yes + + PowerlogCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogCore.framework + Private: Yes + + CoreDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDiagnostics.framework + Private: Yes + + OSAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAnalytics.framework + Private: Yes + + libmalloc_exclaves_introspector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/libmalloc_exclaves_introspector.framework + Private: Yes + + CoreDuet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuet.framework + Private: Yes + + DoNotDisturb: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturb.framework + Private: Yes + + CameraColorProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CameraColorProcessing.framework + Private: Yes + + ExtensionKitSettings: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionKitSettings.framework + Private: Yes + + AudioAccessoryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAccessoryServices.framework + Private: Yes + + AudioServerDriverTransports_IOA2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_IOA2.framework + Private: Yes + + AppleCredentialManager: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleCredentialManager.framework + Private: Yes + + ScreenSharing: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharing.framework + Private: Yes + + GPUToolsDiagnostics: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GPUToolsDiagnostics.framework + Private: Yes + + MusicKitPlaybackSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicKitPlaybackSupport.framework + Private: Yes + + Geode: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Geode.framework + Private: Yes + + HomeKitDaemonFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitDaemonFoundation.framework + Private: Yes + + AddressBookAutocomplete: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AddressBookAutocomplete.framework + Private: Yes + + GenerativeFunctionsInstrumentation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctionsInstrumentation.framework + Private: Yes + + GameControllerFoundation: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameControllerFoundation.framework + Private: Yes + + Lookup: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Lookup.framework + Private: Yes + + CMCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCaptureCore.framework + Private: Yes + + UniversalHID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalHID.framework + Private: Yes + + BusinessChatService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessChatService.framework + Private: Yes + + TVPlayback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVPlayback.framework + Private: Yes + + SystemServiceMonitor: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemServiceMonitor.framework + Private: Yes + + EmbeddingService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddingService.framework + Private: Yes + + MapsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSupport.framework + Private: Yes + + CoreLocationTiles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationTiles.framework + Private: Yes + + SyncedModels: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedModels.framework + Private: Yes + + CloudRecommendation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudRecommendation.framework + Private: Yes + + ProactiveSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSupport.framework + Private: Yes + + AppIntentSchemas: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppIntentSchemas.framework + Private: Yes + + ShareKit: + + Version: 871 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShareKit.framework + Private: Yes + + FaceTimeMacHelperCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeMacHelperCore.framework + Private: Yes + + QueryUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QueryUnderstanding.framework + Private: Yes + + TextInput: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInput.framework + Private: Yes + + PhotosMediaFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosMediaFoundation.framework + Private: Yes + + TimelineUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/TimelineUI.framework + Private: Yes + + GraphicsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphicsServices.framework + Private: Yes + + ChunkingLibrary: + + Version: 2200.114.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChunkingLibrary.framework + Private: Yes + + RemotePairingDevice: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/RemotePairingDevice.framework + Private: Yes + + AppleIDSetupDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetupDaemon.framework + Private: Yes + + SnippetKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetKit.framework + Private: Yes + + SystemMigrationNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigrationNetwork.framework + Private: Yes + + OSEligibility: + + Version: 181.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSEligibility.framework + Private: Yes + + AcousticMaterials: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AcousticMaterials.framework + Private: Yes + + ContactsAccounts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAccounts.framework + Private: Yes + + IMAssistantCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAssistantCore.framework + Private: Yes + + PreviewsInjection: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsInjection.framework + Private: Yes + + SafetyMonitorUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafetyMonitorUI.framework + Private: Yes + + AutomationMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutomationMode.framework + Private: Yes + + SiriNotebookUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotebookUI.framework + Private: Yes + + NewsCore: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsCore.framework + Private: Yes + + SDAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SDAPI.framework + Private: Yes + + SoftwareUpdate: + + Version: 6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdate.framework + Private: Yes + + FMCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCore.framework + Private: Yes + + PhotoLibraryServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoLibraryServicesCore.framework + Private: Yes + + CoreAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAnalytics.framework + Private: Yes + + Lexicon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Lexicon.framework + Private: Yes + + IDS: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDS.framework + Private: Yes + + BridgeXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeXPC.framework + Private: Yes + + Osprey: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Osprey.framework + Private: Yes + + SiriUI: + + Version: 3404.72.1.14.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUI.framework + Private: Yes + + PaymentUIBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaymentUIBase.framework + Private: Yes + + AudioDSPManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioDSPManager.framework + Private: Yes + + OnDeviceStorageCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorageCore.framework + Private: Yes + + HealthKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthKit.framework + Private: Yes + + CoreAUC: + + Version: 568.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAUC.framework + Private: Yes + + DoNotDisturbKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturbKit.framework + Private: Yes + + AccessibilitySharedSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework + Private: Yes + + ShareServicesCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShareServicesCore.framework + Private: Yes + + MobileAssetExclaveServices: + + Version: 1487.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAssetExclaveServices.framework + Private: Yes + + HealthDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDaemon.framework + Private: Yes + + BookUtility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookUtility.framework + Private: Yes + + AdPlatformsCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatformsCommon.framework + Private: Yes + + CoreNameParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNameParser.framework + Private: Yes + + SiriInCall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInCall.framework + Private: Yes + + AppleSRP: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSRP.framework + Private: Yes + + AirPlaySenderKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySenderKit.framework + Private: Yes + + TextRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextRecognition.framework + Private: Yes + + ApplicationFirewall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplicationFirewall.framework + Private: Yes + + WorkflowUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUI.framework + Private: Yes + + FindMyCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCore.framework + Private: Yes + + ContactsUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsUICore.framework + Private: Yes + + CoreKE: + + Version: 7.9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreKE.framework + Private: Yes + + DeviceExpertUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceExpertUI.framework + Private: Yes + + TextComposer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextComposer.framework + Private: Yes + + AppStoreDaemonUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreDaemonUI.framework + Private: Yes + + SiriSocialConversation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSocialConversation.framework + Private: Yes + + SymptomDiagnosticReporter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework + Private: Yes + + EventMetaDataExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventMetaDataExtractor.framework + Private: Yes + + CSCSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CSCSupport.framework + Private: Yes + + SiriInferenceIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInferenceIntents.framework + Private: Yes + + ShazamInsights: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamInsights.framework + Private: Yes + + TelephonyUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TelephonyUtilities.framework + Private: Yes + + ModelCatalogRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelCatalogRuntime.framework + Private: Yes + + AccountsDaemon: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsDaemon.framework + Private: Yes + + SoftLinking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftLinking.framework + Private: Yes + + PegasusConfiguration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusConfiguration.framework + Private: Yes + + ContainerManagerUser: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerUser.framework + Private: Yes + + AskToCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskToCore.framework + Private: Yes + + UserNotificationsSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsSettings.framework + Private: Yes + + ASEProcessing: + + Version: 1.41.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.41.0, Copyright Apple Inc, 2015-2024 + Location: /System/Library/PrivateFrameworks/ASEProcessing.framework + Private: Yes + + Futhark: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Futhark.framework + Private: Yes + + CDDataAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework + Private: Yes + + DACoreDAVGlue: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DACoreDAVGlue.framework + Private: Yes + + DACalDAV: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DACalDAV.framework + Private: Yes + + DADaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework + Private: Yes + + OpenDirectoryConfig: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework + Private: Yes + + SignpostSupport: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostSupport.framework + Private: Yes + + UIIntelligenceSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceSupport.framework + Private: Yes + + SiriNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNetwork.framework + Private: Yes + + NotesShared: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesShared.framework + Private: Yes + + ProximityAppleIDSetupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProximityAppleIDSetupUI.framework + Private: Yes + + SiriRemembers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriRemembers.framework + Private: Yes + + FWAVC: + + Version: 501.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FWAVC.framework + Private: Yes + + NetFSServer: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetFSServer.framework + Private: Yes + + MessageUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageUIMacHelper.framework + Private: Yes + + KeyboardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeyboardServices.framework + Private: Yes + + DrawingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DrawingKit.framework + Private: Yes + + WebBookmarks: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebBookmarks.framework + Private: Yes + + InstallCoordination: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallCoordination.framework + Private: Yes + + Bootability: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bootability.framework + Private: Yes + + Leonardo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Leonardo.framework + Private: Yes + + SiriFlowEnvironment: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFlowEnvironment.framework + Private: Yes + + FeatureFlagsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework + Private: Yes + + DoubleAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoubleAgent.framework + Private: Yes + + QuickLookGeneration: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookGeneration.framework + Private: Yes + + DeviceToDeviceManager: + + Version: 39.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceToDeviceManager.framework + Private: Yes + + Symbolication: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symbolication.framework + Private: Yes + + Synapse: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Synapse.framework + Private: Yes + + KRExperiments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KRExperiments.framework + Private: Yes + + AppleHIDTransportSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleHIDTransportSupport.framework + Private: Yes + + SocialServices: + + Version: 87 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialServices.framework + Private: Yes + + StatusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StatusKit.framework + Private: Yes + + IAP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IAP.framework + Private: Yes + + NeutrinoKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeutrinoKit.framework + Private: Yes + + GeometryCompression: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeometryCompression.framework + Private: Yes + + NeuralNetworks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeuralNetworks.framework + Private: Yes + + Montreal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Montreal.framework + Private: Yes + + AppleVA: + + Version: 6.2.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVA.framework + Private: Yes + + VectorKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VectorKit.framework + Private: Yes + + SiriCoreMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCoreMetrics.framework + Private: Yes + + PortraitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PortraitCore.framework + Private: Yes + + SiriSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestions.framework + Private: Yes + + MLCompilerServices: + + Version: 3404.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLCompilerServices.framework + Private: Yes + + WiFiAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiAnalytics.framework + Private: Yes + + CloudDocs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudDocs.framework + Private: Yes + + CommunicationsFilter: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommunicationsFilter.framework + Private: Yes + + SiriCam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCam.framework + Private: Yes + + FamilyCircleUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyCircleUI.framework + Private: Yes + + ArgumentParserInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ArgumentParserInternal.framework + Private: Yes + + QLCharts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QLCharts.framework + Private: Yes + + ExclaveFDRDecode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExclaveFDRDecode.framework + Private: Yes + + MobileBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileBluetooth.framework + Private: Yes + + GPUToolsCapture: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GPUToolsCapture.framework + Private: Yes + + ReminderKitUI: + + Version: 1225.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKitUI.framework + Private: Yes + + ShazamCore: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamCore.framework + Private: Yes + + SiriTimeAlarmInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeAlarmInternal.framework + Private: Yes + + MarkupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MarkupUI.framework + Private: Yes + + AttributeGraph: + + Version: 6.4.39.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AttributeGraph.framework + Private: Yes + + ParsecModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsecModel.framework + Private: Yes + + AIMLExperimentationAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AIMLExperimentationAnalytics.framework + Private: Yes + + Slideshows: + + Version: 4.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework + Private: Yes + + OpusFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework/Frameworks/OpusFoundation.framework + Private: Yes + + OpusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework/Frameworks/OpusKit.framework + Private: Yes + + UIAccessibility: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIAccessibility.framework + Private: Yes + + VoiceTrigger: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceTrigger.framework + Private: Yes + + TypistFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TypistFramework.framework + Private: Yes + + UIUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIUnderstanding.framework + Private: Yes + + FTAWD: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTAWD.framework + Private: Yes + + AppSSOCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOCore.framework + Private: Yes + + ExchangeWebServices: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeWebServices.framework + Private: Yes + + SmartRepliesUI: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartRepliesUI.framework + Private: Yes + + Reveal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Reveal.framework + Private: Yes + + PerfPowerServicesReader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerServicesReader.framework + Private: Yes + + ExclaveSISPTestServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExclaveSISPTestServices.framework + Private: Yes + + ScreenReader: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework + Private: Yes + + ScreenReaderBrailleDriver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: Copyright © 2008-2011 Apple Inc. All Rights Reserved. + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderBrailleDriver.framework + Private: Yes + + ScreenReaderOutput: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderOutput.framework + Private: Yes + + BrailleTranslation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/BrailleTranslation.framework + Private: Yes + + SmartReplies: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartReplies.framework + Private: Yes + + EncoreXPCService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EncoreXPCService.framework + Private: Yes + + OmniSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OmniSearch.framework + Private: Yes + + DiskImages2: + + Version: 385.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskImages2.framework + Private: Yes + + _SonicKit_MusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_SonicKit_MusicKit.framework + Private: Yes + + InAppMessages: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InAppMessages.framework + Private: Yes + + FontServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FontServices.framework + Private: Yes + + LiveExecutionResultsProbe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsProbe.framework + Private: Yes + + PhotoImaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoImaging.framework + Private: Yes + + PreviewsServicesUI: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsServicesUI.framework + Private: Yes + + SiriTimeTimerInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeTimerInternal.framework + Private: Yes + + Cosmo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Cosmo.framework + Private: Yes + + AppleAccount: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAccount.framework + Private: Yes + + NetAuth: + + Version: 6.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetAuth.framework + Private: Yes + + SpeechObjects: + + Version: 9.0.72 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework + Private: Yes + + FindMyStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyStorage.framework + Private: Yes + + InputToolKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputToolKit.framework + Private: Yes + + LinkServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkServices.framework + Private: Yes + + ACSEFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACSEFoundation.framework + Private: Yes + + AppPredictionToolsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionToolsInternal.framework + Private: Yes + + GameCenterFoundation: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterFoundation.framework + Private: Yes + + KeyboardLayouts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeyboardLayouts.framework + Private: Yes + + FamilyCircle: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyCircle.framework + Private: Yes + + FoundInAppsPlugins: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FoundInAppsPlugins.framework + Private: Yes + + MacinTalk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MacinTalk.framework + Private: Yes + + PhotoPrintProduct: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoPrintProduct.framework + Private: Yes + + NewsURLBucket: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsURLBucket.framework + Private: Yes + + MLRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLRuntime.framework + Private: Yes + + SharePointManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharePointManagement.framework + Private: Yes + + NewDeviceOutreachMacUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewDeviceOutreachMacUI.framework + Private: Yes + + APFS: + + Version: 2332.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APFS.framework + Private: Yes + + AppleIDAuthSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework + Private: Yes + + DeviceSpecSupport: + + Version: 5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceSpecSupport.framework + Private: Yes + + WeatherData: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherData.framework + Private: Yes + + AdID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdID.framework + Private: Yes + + OnDeviceStorageInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorageInternal.framework + Private: Yes + + SoftwareUpdateCoreSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework + Private: Yes + + MapsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsUI.framework + Private: Yes + + UVFSXPCService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVFSXPCService.framework + Private: Yes + + FileProvider: + + Version: 2882.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProvider.framework + Private: Yes + + TestFlightCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TestFlightCore.framework + Private: Yes + + MMCSServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MMCSServices.framework + Private: Yes + + SiriUserSegments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUserSegments.framework + Private: Yes + + SensitiveContentAnalysisUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensitiveContentAnalysisUI.framework + Private: Yes + + CloudAssets: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAssets.framework + Private: Yes + + DRMFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DRMFoundation.framework + Private: Yes + + SymptomShared: + + Version: 2022.100.26 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomShared.framework + Private: Yes + + ACDEClient: + + Version: 2.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACDEClient.framework + Private: Yes + + SEService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SEService.framework + Private: Yes + + IPTelephony: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IPTelephony.framework + Private: Yes + + SiriTTSTraining: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTSTraining.framework + Private: Yes + + DialogEngine: + + Version: 3404.15.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DialogEngine.framework + Private: Yes + + GeoAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoAnalytics.framework + Private: Yes + + CoreCDPInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDPInternal.framework + Private: Yes + + SiriMessageBus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessageBus.framework + Private: Yes + + HumanUnderstandingFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUnderstandingFoundation.framework + Private: Yes + + GenerativeAssistantActions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantActions.framework + Private: Yes + + SiriInformationSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInformationSearch.framework + Private: Yes + + MorphunSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorphunSwift.framework + Private: Yes + + Recount: + + Version: 36 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Recount.framework + Private: Yes + + ProactiveDaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveDaemonSupport.framework + Private: Yes + + ProofReader: + + Version: 2.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProofReader.framework + Private: Yes + + SiriSuggestionsBaseModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsBaseModel.framework + Private: Yes + + TextInputTestingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputTestingKit.framework + Private: Yes + + FindMyCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCommon.framework + Private: Yes + + SiriOrchestration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOrchestration.framework + Private: Yes + + FMFCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMFCore.framework + Private: Yes + + PerformanceAnalysis: + + Version: 1.385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceAnalysis.framework + Private: Yes + + UniversalDrag: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalDrag.framework + Private: Yes + + SpatialConnect: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpatialConnect.framework + Private: Yes + + DiskImages: + + Version: 671.100.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskImages.framework + Private: Yes + + RemoteViewServices: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteViewServices.framework + Private: Yes + + LighthouseBitacoraFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseBitacoraFramework.framework + Private: Yes + + SafariFoundation: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariFoundation.framework + Private: Yes + + CoreRecents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRecents.framework + Private: Yes + + NewsURLResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsURLResolution.framework + Private: Yes + + Dyld: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Dyld.framework + Private: Yes + + IntelligenceFlowShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowShared.framework + Private: Yes + + FusionTracker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FusionTracker.framework + Private: Yes + + UserActivity: + + Version: 551 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserActivity.framework + Private: Yes + + HIDAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDAnalytics.framework + Private: Yes + + OAHSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OAHSoftwareUpdate.framework + Private: Yes + + WatchdogServiceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchdogServiceManagement.framework + Private: Yes + + ASRBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ASRBridge.framework + Private: Yes + + AppleIDSSOAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework + Private: Yes + + LearnedFeatures: + + Version: 7.63.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LearnedFeatures.framework + Private: Yes + + NetworkServiceProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkServiceProxy.framework + Private: Yes + + ContactsUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsUIMacHelper.framework + Private: Yes + + PersonalIntelligenceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalIntelligenceCore.framework + Private: Yes + + TimeMachine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeMachine.framework + Private: Yes + + MathTypesetting: + + Version: 3.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MathTypesetting.framework + Private: Yes + + PowerlogControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogControl.framework + Private: Yes + + MIL: + + Version: 3404.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MIL.framework + Private: Yes + + BusinessServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessServices.framework + Private: Yes + + UserManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserManagement.framework + Private: Yes + + EmailDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailDaemon.framework + Private: Yes + + UXKit: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UXKit.framework + Private: Yes + + AppleNVMe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleNVMe.framework + Private: Yes + + SiriNLUOverrides: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNLUOverrides.framework + Private: Yes + + CTBlastDoorSupport: + + Version: 12322 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CTBlastDoorSupport.framework + Private: Yes + + MediaRemote: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaRemote.framework + Private: Yes + + PersistentConnection: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersistentConnection.framework + Private: Yes + + iCalendar: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCalendar.framework + Private: Yes + + PrivateSearchCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchCore.framework + Private: Yes + + NotesUI: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesUI.framework + Private: Yes + + SignpostCollection: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostCollection.framework + Private: Yes + + core80211DriverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/core80211DriverKit.framework + Private: Yes + + CoreRecognition: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRecognition.framework + Private: Yes + + SiriSuggestionsIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsIntelligence.framework + Private: Yes + + SiriEntityMatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriEntityMatcher.framework + Private: Yes + + USTBridgeConnection: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USTBridgeConnection.framework + Private: Yes + + HearingUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingUtilities.framework + Private: Yes + + nt: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/nt.framework + Private: Yes + + SearchUICardKitProviderSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchUICardKitProviderSupport.framework + Private: Yes + + GenerativeFunctions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctions.framework + Private: Yes + + Morpheus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Morpheus.framework + Private: Yes + + ChronoUIServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoUIServices.framework + Private: Yes + + FeedbackService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackService.framework + Private: Yes + + CalculateUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalculateUI.framework + Private: Yes + + IMDaemonCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDaemonCore.framework + Private: Yes + + CoreAccessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAccessibility.framework + Private: Yes + + SiriHomeAccessoryFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriHomeAccessoryFramework.framework + Private: Yes + + HelpData: + + Version: 2.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Copyright 2000-2021, Apple Computer, Inc. + Location: /System/Library/PrivateFrameworks/HelpData.framework + Private: Yes + + BehaviorMiner: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BehaviorMiner.framework + Private: Yes + + SystemMigrationUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigrationUtils.framework + Private: Yes + + MediaAnalysisBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisBlastDoorSupport.framework + Private: Yes + + CoreNavigation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNavigation.framework + Private: Yes + + UnifiedMessagingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UnifiedMessagingKit.framework + Private: Yes + + PostSiriEngagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PostSiriEngagement.framework + Private: Yes + + lighthouse_runtime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/lighthouse_runtime.framework + Private: Yes + + AppleGVA: + + Version: 113.56 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleGVA.framework + Private: Yes + + FaceTimeTouchBarSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeTouchBarSupport.framework + Private: Yes + + AppNotificationsLoggingClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppNotificationsLoggingClient.framework + Private: Yes + + GPUToolsTransport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUToolsTransport.framework + Private: Yes + + FMCoreLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCoreLite.framework + Private: Yes + + PowerUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerUI.framework + Private: Yes + + SecureTransactionService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureTransactionService.framework + Private: Yes + + MediaServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaServices.framework + Private: Yes + + ProactiveMagicalMoments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveMagicalMoments.framework + Private: Yes + + MapsSuggestions: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSuggestions.framework + Private: Yes + + _JetEngine_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_JetEngine_SwiftUI.framework + Private: Yes + + CPMLBestShim: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPMLBestShim.framework + Private: Yes + + WorkflowUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUICore.framework + Private: Yes + + GenerativeAssistantCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantCommon.framework + Private: Yes + + AVFCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFCapture.framework + Private: Yes + + CoreSpeechUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechUtils.framework + Private: Yes + + RecapPerformanceTesting: + + Version: 50 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RecapPerformanceTesting.framework + Private: Yes + + WellnessUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WellnessUI.framework + Private: Yes + + CoreSuggestionsML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsML.framework + Private: Yes + + ODDIFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ODDIFramework.framework + Private: Yes + + XprotectFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XprotectFramework.framework + Private: Yes + + AccountsUISettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsUISettings.framework + Private: Yes + + iPodUpdater: + + Version: 308 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iPodUpdater.framework + Private: Yes + + PrototypeTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrototypeTools.framework + Private: Yes + + TVAppServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVAppServices.framework + Private: Yes + + FindMyPairing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyPairing.framework + Private: Yes + + CalendarUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUIKit.framework + Private: Yes + + MetalTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetalTools.framework + Private: Yes + + CryptexKit: + + Version: 493.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptexKit.framework + Private: Yes + + OpenAPIRuntimeInternal: + + Version: 1.8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenAPIRuntimeInternal.framework + Private: Yes + + SiriPlaybackControlIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPlaybackControlIntents.framework + Private: Yes + + ContactsPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsPersistence.framework + Private: Yes + + IntlPreferences: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntlPreferences.framework + Private: Yes + + SpectroKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpectroKit.framework + Private: Yes + + SensingPredictServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensingPredictServices.framework + Private: Yes + + AppleMediaServicesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework + Private: Yes + + PlatformSSO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSO.framework + Private: Yes + + TranslationAPISupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationAPISupport.framework + Private: Yes + + SnippetUI_Proto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetUI_Proto.framework + Private: Yes + + BrailleSymbology: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BrailleSymbology.framework + Private: Yes + + AutoFillCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoFillCore.framework + Private: Yes + + CoreEmoji: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreEmoji.framework + Private: Yes + + MobileObliteration: + + Version: 320.100.15 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileObliteration.framework + Private: Yes + + AppleDepth: + + Version: 137.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDepth.framework + Private: Yes + + AppStoreKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreKit.framework + Private: Yes + + DeviceDiscoveryUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceDiscoveryUICore.framework + Private: Yes + + IntentsUICardKitProviderSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsUICardKitProviderSupport.framework + Private: Yes + + SiriKitFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitFlow.framework + Private: Yes + + FaceTimeNotificationServiceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationServiceCore.framework + Private: Yes + + ContextualUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualUnderstanding.framework + Private: Yes + + BiomePubSub: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomePubSub.framework + Private: Yes + + APConfigurationSystem: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APConfigurationSystem.framework + Private: Yes + + AppleDeviceQuerySupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDeviceQuerySupport.framework + Private: Yes + + AvailabilityKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvailabilityKit.framework + Private: Yes + + AXCoreUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXCoreUtilities.framework + Private: Yes + + URLFormatting: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/URLFormatting.framework + Private: Yes + + acfs: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/acfs.framework + Private: Yes + + QOSToolkit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QOSToolkit.framework + Private: Yes + + VisualIntelligence: + + Version: 0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualIntelligence.framework + Private: Yes + + WiFiPeerToPeer: + + Version: 725.36.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiPeerToPeer.framework + Private: Yes + + ProactiveML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveML.framework + Private: Yes + + OSASubmissionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSASubmissionClient.framework + Private: Yes + + MobileActivationMacOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileActivationMacOS.framework + Private: Yes + + AppleSystemInfo: + + Version: 3.1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSystemInfo.framework + Private: Yes + + KeychainCircle: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeychainCircle.framework + Private: Yes + + SoftwareUpdateCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCore.framework + Private: Yes + + UserNotificationsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsCore.framework + Private: Yes + + CoreSVG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSVG.framework + Private: Yes + + SiriRequestDispatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriRequestDispatcher.framework + Private: Yes + + TextInputUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputUI.framework + Private: Yes + + BiomeFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeFoundation.framework + Private: Yes + + MorpheusExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorpheusExtensions.framework + Private: Yes + + MicroLocation: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocation.framework + Private: Yes + + DFRBrightness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRBrightness.framework + Private: Yes + + SiriCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCore.framework + Private: Yes + + SetupAssistantSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantSupport.framework + Private: Yes + + HIDDisplay: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDDisplay.framework + Private: Yes + + MultitouchSupport: + + Version: 8440.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MultitouchSupport.framework + Private: Yes + + DeepThought: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepThought.framework + Private: Yes + + CoreSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestions.framework + Private: Yes + + SyncedDefaultsDaemon: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedDefaultsDaemon.framework + Private: Yes + + SearchFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchFoundation.framework + Private: Yes + + FlightUtilitiesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlightUtilitiesCore.framework + Private: Yes + + EmailAddressing: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailAddressing.framework + Private: Yes + + SystemStatusUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatusUI.framework + Private: Yes + + AudioSession: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioSession.framework + Private: Yes + + PassKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitServices.framework + Private: Yes + + CPMS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPMS.framework + Private: Yes + + NeighborhoodActivityConduit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeighborhoodActivityConduit.framework + Private: Yes + + AdPlatformsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatformsInternal.framework + Private: Yes + + SecurityTokend: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecurityTokend.framework + Private: Yes + + HomeAutomationUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAutomationUIFramework.framework + Private: Yes + + PromotedContentPrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentPrediction.framework + Private: Yes + + ToneLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToneLibrary.framework + Private: Yes + + PhotosPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosPlayer.framework + Private: Yes + + NewsAnalyticsUpload: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsAnalyticsUpload.framework + Private: Yes + + QuickLookSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookSupport.framework + Private: Yes + + IO80211: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IO80211.framework + Private: Yes + + PreviewsServices: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsServices.framework + Private: Yes + + UAUPlugin: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UAUPlugin.framework + Private: Yes + + CoreCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCapture.framework + Private: Yes + + ScreenSharingKit: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharingKit.framework + Private: Yes + + VisualPairing: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualPairing.framework + Private: Yes + + PhotosUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIFoundation.framework + Private: Yes + + IPConfiguration: + + Version: 1.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1,21 + Location: /System/Library/PrivateFrameworks/IPConfiguration.framework + Private: Yes + + AVKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVKitCore.framework + Private: Yes + + SentencePieceInternal: + + Version: 52.206 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SentencePieceInternal.framework + Private: Yes + + AppPredictionUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionUI.framework + Private: Yes + + CharacterPicker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CharacterPicker.framework + Private: Yes + + CoreSpotlightImportDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpotlightImportDaemon.framework + Private: Yes + + ALDataTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ALDataTypes.framework + Private: Yes + + DeviceTreeKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceTreeKit.framework + Private: Yes + + HealthDomainsTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDomainsTools.framework + Private: Yes + + PoirotSQLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotSQLite.framework + Private: Yes + + StoreJavaScript: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreJavaScript.framework + Private: Yes + + StoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreUI.framework + Private: Yes + + Human: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Human.framework + Private: Yes + + DASDelegate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DASDelegate.framework + Private: Yes + + FaceTimeMessageStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeMessageStore.framework + Private: Yes + + TimeSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeSync.framework + Private: Yes + + GeoKit: + + Version: 2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoKit.framework + Private: Yes + + PassKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitCore.framework + Private: Yes + + AOSUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSUI.framework + Private: Yes + + DeviceActivityConductor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceActivityConductor.framework + Private: Yes + + SiriSettingsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSettingsIntents.framework + Private: Yes + + CoreSuggestionsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsUI.framework + Private: Yes + + CalendarUIKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUIKitInternal.framework + Private: Yes + + DendriteIngest: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DendriteIngest.framework + Private: Yes + + AppleMediaServicesKitSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesKitSupport.framework + Private: Yes + + DirectoryServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryServer.framework + Private: Yes + + CFDirectoryServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirectoryServer.framework + Private: Yes + + NetworkMenusCommon: + + Version: 2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkMenusCommon.framework + Private: Yes + + AppleIDSetupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetupUI.framework + Private: Yes + + PreviewsOSSupport: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsOSSupport.framework + Private: Yes + + ExposureNotificationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExposureNotificationDaemon.framework + Private: Yes + + SiriDailyBriefingInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriDailyBriefingInternal.framework + Private: Yes + + CorePhotogrammetry: + + Version: 2.59.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePhotogrammetry.framework + Private: Yes + + MetricKitSource: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitSource.framework + Private: Yes + + GridDataServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GridDataServices.framework + Private: Yes + + LiveFS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveFS.framework + Private: Yes + + DisplayTransportServices: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DisplayTransportServices.framework + Private: Yes + + CoreEmbeddedSpeechRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework + Private: Yes + + MetricMeasurement: + + Version: 0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricMeasurement.framework + Private: Yes + + MDMClientLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MDMClientLibrary.framework + Private: Yes + + EAP8021X: + + Version: 14.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EAP8021X.framework + Private: Yes + + CVNLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CVNLP.framework + Private: Yes + + AudioPasscode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioPasscode.framework + Private: Yes + + TrialServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrialServer.framework + Private: Yes + + AppleMediaServicesUIDynamic: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUIDynamic.framework + Private: Yes + + AppleVPA: + + Version: 3.30.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVPA.framework + Private: Yes + + SiriCrossDeviceArbitration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCrossDeviceArbitration.framework + Private: Yes + + IOMobileFramebuffer: + + Version: 343.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework + Private: Yes + + LocalAuthenticationCoreUI: + + Version: 1656.100.223 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationCoreUI.framework + Private: Yes + + AppleAccountUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAccountUI.framework + Private: Yes + + MobileAsset: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAsset.framework + Private: Yes + + IMTransferServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferServices.framework + Private: Yes + + RuntimeInternal: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RuntimeInternal.framework + Private: Yes + + JoinRequests: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JoinRequests.framework + Private: Yes + + VDAF: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VDAF.framework + Private: Yes + + QuickLookIosmac: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/PrivateFrameworks/QuickLookIosmac.framework + Private: Yes + + SyncServicesUI: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework + Private: Yes + + SiriMailOntology: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailOntology.framework + Private: Yes + + SiriInformationTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInformationTypes.framework + Private: Yes + + AskToDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskToDaemon.framework + Private: Yes + + SiriSuggestionsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsKit.framework + Private: Yes + + ActionPredictionHeuristicsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionPredictionHeuristicsInternal.framework + Private: Yes + + HumanUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUI.framework + Private: Yes + + UVCFrameProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCFrameProcessor.framework + Private: Yes + + WidgetRenderer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WidgetRenderer.framework + Private: Yes + + TextToSpeechMauiSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechMauiSupport.framework + Private: Yes + + SiriObservation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriObservation.framework + Private: Yes + + FMF: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMF.framework + Private: Yes + + TCCInterface: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCCInterface.framework + Private: Yes + + PhotosUIPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIPrivate.framework + Private: Yes + + SystemAdministrationInterface: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemAdministrationInterface.framework + Private: Yes + + BackgroundSystemTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackgroundSystemTasks.framework + Private: Yes + + CloudSubscriptionFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSubscriptionFeatures.framework + Private: Yes + + SocialAppsCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialAppsCore.framework + Private: Yes + + BoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BoardServices.framework + Private: Yes + + ContainerManagerCommon: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerCommon.framework + Private: Yes + + FaceTimeNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotification.framework + Private: Yes + + ConfigurationProfilesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationProfilesUI.framework + Private: Yes + + SiriMailUIModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailUIModel.framework + Private: Yes + + TextToSpeechBundleSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechBundleSupport.framework + Private: Yes + + SignalCompression: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignalCompression.framework + Private: Yes + + LinkMetadata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkMetadata.framework + Private: Yes + + SiriPrivateLearningInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningInference.framework + Private: Yes + + IntentsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsFoundation.framework + Private: Yes + + TipsUI: + + Version: 778.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsUI.framework + Private: Yes + + CloudKitDaemon: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitDaemon.framework + Private: Yes + + TeaFoundation: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaFoundation.framework + Private: Yes + + NearField: + + Version: 354.27 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearField.framework + Private: Yes + + SAML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SAML.framework + Private: Yes + + IdleTimerServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IdleTimerServices.framework + Private: Yes + + CalendarMigration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarMigration.framework + Private: Yes + + WalletBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WalletBlastDoorSupport.framework + Private: Yes + + EcosystemAnalytics: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EcosystemAnalytics.framework + Private: Yes + + WritingToolsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WritingToolsUI.framework + Private: Yes + + LocalAuthenticationCore: + + Version: 1656.100.223 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationCore.framework + Private: Yes + + UnifiedAssetFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UnifiedAssetFramework.framework + Private: Yes + + SiriTimeInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeInternal.framework + Private: Yes + + Quagga: + + Version: 177 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Quagga.framework + Private: Yes + + ManagedClient: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedClient.framework + Private: Yes + + SpotlightResources: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightResources.framework + Private: Yes + + iWorkXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iWorkXPC.framework + Private: Yes + + AssistantServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantServices.framework + Private: Yes + + MobileSoftwareUpdate: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSoftwareUpdate.framework + Private: Yes + + Ensemble: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Ensemble.framework + Private: Yes + + WorkflowUIServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUIServices.framework + Private: Yes + + HomeKitEventRouter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitEventRouter.framework + Private: Yes + + StreamingExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StreamingExtractor.framework + Private: Yes + + CoreLSKD: + + Version: 19.18.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreLSKD.framework + Private: Yes + + UIKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitMacHelper.framework + Private: Yes + + UpdatePreboot: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: UpdatePreboot version 1.0, Copyright © 2021 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/UpdatePreboot.framework + Private: Yes + + ClassKitUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassKitUI.framework + Private: Yes + + SharingXPCServices: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharingXPCServices.framework + Private: Yes + + MediaAgnosticUSB: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAgnosticUSB.framework + Private: Yes + + NotesUIServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesUIServices.framework + Private: Yes + + VideoToolboxParavirtualizationSupport: + + Version: 40.5.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework + Private: Yes + + AAAFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AAAFoundation.framework + Private: Yes + + SiriInferenceFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInferenceFlow.framework + Private: Yes + + CollectionsInternal: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CollectionsInternal.framework + Private: Yes + + SiriTaskEngagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTaskEngagement.framework + Private: Yes + + RemindersIntentsFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersIntentsFramework.framework + Private: Yes + + FeatureStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureStore.framework + Private: Yes + + SiriXShimTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriXShimTools.framework + Private: Yes + + DistributedTimers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedTimers.framework + Private: Yes + + iCloudSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudSettings.framework + Private: Yes + + _AppIntentsServices_AppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_AppIntentsServices_AppIntents.framework + Private: Yes + + Espresso: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Espresso.framework + Private: Yes + + AccessibilityUtilities: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityUtilities.framework + Private: Yes + + IMSharedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMSharedUI.framework + Private: Yes + + ktrace: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ktrace.framework + Private: Yes + + JetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetUI.framework + Private: Yes + + IMFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMFoundation.framework + Private: Yes + + AppleMobileFileIntegrity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework + Private: Yes + + TeaSettings: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaSettings.framework + Private: Yes + + Heimdal: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Heimdal.framework + Private: Yes + + DirectoryEditor: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryEditor.framework + Private: Yes + + EventKitUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventKitUICore.framework + Private: Yes + + SiriMessagesFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesFlow.framework + Private: Yes + + ProtoDataExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtoDataExtractor.framework + Private: Yes + + ApplePhotonDetectorServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePhotonDetectorServices.framework + Private: Yes + + PegasusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusKit.framework + Private: Yes + + DiagnosticRequestService: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticRequestService.framework + Private: Yes + + MDSChannel: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MDSChannel.framework + Private: Yes + + Symptoms: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Symptoms.framework + Private: Yes + + SymptomEvaluator: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomEvaluator.framework + Private: Yes + + SymptomAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework + Private: Yes + + SymptomPresentationLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationLite.framework + Private: Yes + + SymptomPresentationFeed: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework + Private: Yes + + ManagedEvent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/ManagedEvent.framework + Private: Yes + + IDSFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSFoundation.framework + Private: Yes + + SiriPhoneIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPhoneIntents.framework + Private: Yes + + CryptoKitPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptoKitPrivate.framework + Private: Yes + + TrustedPeers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustedPeers.framework + Private: Yes + + SiriFindMy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFindMy.framework + Private: Yes + + MetricsFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricsFramework.framework + Private: Yes + + SoftwareUpdateMacController: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateMacController.framework + Private: Yes + + CloudFamilyRestrictionsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudFamilyRestrictionsDaemon.framework + Private: Yes + + IOKitten: + + Version: 300.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOKitten.framework + Private: Yes + + CoreHandwriting: + + Version: 161 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHandwriting.framework + Private: Yes + + CloudPhotoLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework + Private: Yes + + TokenGenerationInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGenerationInference.framework + Private: Yes + + SemanticPerception: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SemanticPerception.framework + Private: Yes + + PlatformSSOCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSOCore.framework + Private: Yes + + FindMyServerInteraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyServerInteraction.framework + Private: Yes + + SecurityUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecurityUICore.framework + Private: Yes + + Coherence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Coherence.framework + Private: Yes + + TipsCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsCore.framework + Private: Yes + + SharedWebCredentials: + + Version: 1001 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharedWebCredentials.framework + Private: Yes + + UVCExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCExtension.framework + Private: Yes + + MailUI: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailUI.framework + Private: Yes + + AdaptiveVoiceShortcuts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdaptiveVoiceShortcuts.framework + Private: Yes + + Cards: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Cards.framework + Private: Yes + + CommerceKit: + + Version: 1.2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommerceKit.framework + Private: Yes + + CommerceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommerceKit.framework/Frameworks/CommerceCore.framework + Private: Yes + + MorphunAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorphunAssets.framework + Private: Yes + + CMPhoto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMPhoto.framework + Private: Yes + + NewsTransport: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsTransport.framework + Private: Yes + + SmartRepliesServer: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartRepliesServer.framework + Private: Yes + + AppleJPEG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleJPEG.framework + Private: Yes + + SensitiveContentAnalysisML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensitiveContentAnalysisML.framework + Private: Yes + + CSExattrCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CSExattrCrypto.framework + Private: Yes + + CloudAttestation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAttestation.framework + Private: Yes + + BookKit: + + Version: 2247 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookKit.framework + Private: Yes + + MediaAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysis.framework + Private: Yes + + HomeKitEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitEvents.framework + Private: Yes + + EmailFoundation: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailFoundation.framework + Private: Yes + + ScreenTimeSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeSwift.framework + Private: Yes + + ExchangeNotes: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeNotes.framework + Private: Yes + + IntelligentRoutingDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingDaemon.framework + Private: Yes + + CoreBrightness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreBrightness.framework + Private: Yes + + PhotosSwiftUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosSwiftUICore.framework + Private: Yes + + RecoveryOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RecoveryOS.framework + Private: Yes + + kperfdata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/kperfdata.framework + Private: Yes + + TVRemoteCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVRemoteCore.framework + Private: Yes + + ProactiveContextClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveContextClient.framework + Private: Yes + + PhotosUIEdit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIEdit.framework + Private: Yes + + Catalyst: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Catalyst.framework + Private: Yes + + ContactsDonation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsDonation.framework + Private: Yes + + DarwinDirectoryQuery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectoryQuery.framework + Private: Yes + + MobileInstallation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileInstallation.framework + Private: Yes + + InstalledContentLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstalledContentLibrary.framework + Private: Yes + + BluetoothServicesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothServicesUI.framework + Private: Yes + + SiriTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTasks.framework + Private: Yes + + RemoteCoreML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteCoreML.framework + Private: Yes + + FindMyDaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDaemonSupport.framework + Private: Yes + + FeedbackCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackCore.framework + Private: Yes + + EnhancedLoggingState: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EnhancedLoggingState.framework + Private: Yes + + AssetCacheServicesExtensions: + + Version: 135.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework + Private: Yes + + JavaScriptOSA: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaScriptOSA.framework + Private: Yes + + BridgeOSObliteration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSObliteration.framework + Private: Yes + + AssertionServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssertionServices.framework + Private: Yes + + FaceTimeNotificationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationCore.framework + Private: Yes + + HeadphoneSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneSettingsUI.framework + Private: Yes + + LocalAuthenticationRecoveryUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationRecoveryUI.framework + Private: Yes + + ControlCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ControlCenter.framework + Private: Yes + + UserNotificationsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsKit.framework + Private: Yes + + StorageKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageKit.framework + Private: Yes + + SignpostNotification: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostNotification.framework + Private: Yes + + MediaGroupsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaGroupsDaemon.framework + Private: Yes + + perfdata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/perfdata.framework + Private: Yes + + AppleScript: + + Version: 2.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleScript.framework + Private: Yes + + GenerativeAssistantEnablementFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantEnablementFlow.framework + Private: Yes + + CalDAV: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalDAV.framework + Private: Yes + + PhotosIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosIntelligence.framework + Private: Yes + + ScreenTimeUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeUI.framework + Private: Yes + + PerformanceControlKit: + + Version: 1175.100.103 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceControlKit.framework + Private: Yes + + WiFiVelocity: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiVelocity.framework + Private: Yes + + CoreDuetContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetContext.framework + Private: Yes + + AutoLoop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoLoop.framework + Private: Yes + + SystemAdministration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: SystemAdministration Framework + Location: /System/Library/PrivateFrameworks/SystemAdministration.framework + Private: Yes + + Timeline: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Timeline.framework + Private: Yes + + NetworkInfo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkInfo.framework + Private: Yes + + ShortcutDropletServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShortcutDropletServices.framework + Private: Yes + + vCard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/vCard.framework + Private: Yes + + SiriTranslationIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTranslationIntents.framework + Private: Yes + + MultiverseSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MultiverseSupport.framework + Private: Yes + + VideoSubscriberAccountUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoSubscriberAccountUI.framework + Private: Yes + + AXAssetLoader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXAssetLoader.framework + Private: Yes + + LinkPresentationStyleSheetParsing: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkPresentationStyleSheetParsing.framework + Private: Yes + + MetricKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitCore.framework + Private: Yes + + VoiceControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceControl.framework + Private: Yes + + AppSupportUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSupportUI.framework + Private: Yes + + GCoreFramework: + + Version: 1026.100.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GCoreFramework.framework + Private: Yes + + FTServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTServices.framework + Private: Yes + + InAppMessagesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InAppMessagesCore.framework + Private: Yes + + CoreOC: + + Version: 10.13.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOC.framework + Private: Yes + + FrontBoard: + + Version: 943.5.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FrontBoard.framework + Private: Yes + + AppleJPEGXL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleJPEGXL.framework + Private: Yes + + SystemStatus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatus.framework + Private: Yes + + CoreThreadCommissionerService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThreadCommissionerService.framework + Private: Yes + + EDPSecurity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EDPSecurity.framework + Private: Yes + + WebFilterDNS: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebFilterDNS.framework + Private: Yes + + ImagePlaygroundInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ImagePlaygroundInternal.framework + Private: Yes + + OAuth: + + Version: 25 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OAuth.framework + Private: Yes + + iCloudQuotaUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudQuotaUI.framework + Private: Yes + + ShimGameServices: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShimGameServices.framework + Private: Yes + + AmbientDisplay: + + Version: 149 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AmbientDisplay.framework + Private: Yes + + DiagnosticLogCollection: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework + Private: Yes + + GameServicesCore: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameServicesCore.framework + Private: Yes + + SpeechDictionary: + + Version: 9.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 9.0.4 + Location: /System/Library/PrivateFrameworks/SpeechDictionary.framework + Private: Yes + + SiriReferenceResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolution.framework + Private: Yes + + WindowManager: + + Version: 278.4.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WindowManager.framework + Private: Yes + + FindMyMac: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyMac.framework + Private: Yes + + CMCaptureDevice: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCaptureDevice.framework + Private: Yes + + JavaLaunching: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaLaunching.framework + Private: Yes + + GenerativeModelsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeModelsFoundation.framework + Private: Yes + + WiFiPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiPolicy.framework + Private: Yes + + CoreRoutine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRoutine.framework + Private: Yes + + QuickLookThumbnailGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailGeneration.framework + Private: Yes + + PowerlogHelperdOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogHelperdOperators.framework + Private: Yes + + MobileContainerManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileContainerManager.framework + Private: Yes + + BrightnessControl: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BrightnessControl.framework + Private: Yes + + AltruisticBodyPoseKit: + + Version: 5.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AltruisticBodyPoseKit.framework + Private: Yes + + ANEClientSignals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANEClientSignals.framework + Private: Yes + + PrivateFederatedLearning: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateFederatedLearning.framework + Private: Yes + + HomeAppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAppIntents.framework + Private: Yes + + ExtensionKit: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionKit.framework + Private: Yes + + AppleDepthCore: + + Version: 137.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDepthCore.framework + Private: Yes + + ExchangeSync: + + Version: 2007 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeSync.framework + Private: Yes + + LighthouseCoreMLModelAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLModelAnalysis.framework + Private: Yes + + Geometry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Geometry.framework + Private: Yes + + PassKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitMacHelper.framework + Private: Yes + + IntelligencePlatformCompute: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformCompute.framework + Private: Yes + + CoordinationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoordinationCore.framework + Private: Yes + + InternationalSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternationalSupport.framework + Private: Yes + + SiriUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUIFoundation.framework + Private: Yes + + VFXBase: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/VFXBase.framework + Private: Yes + + NewsFoundation: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsFoundation.framework + Private: Yes + + AppAttestInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppAttestInternal.framework + Private: Yes + + CVAMatrix: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CVAMatrix.framework + Private: Yes + + GameCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterUI.framework + Private: Yes + + DiagnosticRequest: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticRequest.framework + Private: Yes + + SwiftUIAccessibility: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftUIAccessibility.framework + Private: Yes + + MailWebProcessSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailWebProcessSupport.framework + Private: Yes + + IntelligenceFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlow.framework + Private: Yes + + GameCenterUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterUICore.framework + Private: Yes + + Jet: + + Version: 11.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Jet.framework + Private: Yes + + MLAssetIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLAssetIO.framework + Private: Yes + + DFRFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRFoundation.framework + Private: Yes + + ContextKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKit.framework + Private: Yes + + GraphKit: + + Version: 1.0.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GraphKit.framework + Private: Yes + + AppleNeuralEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleNeuralEngine.framework + Private: Yes + + StocksKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StocksKit.framework + Private: Yes + + CloudAssetDaemon: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAssetDaemon.framework + Private: Yes + + SiriMailUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailUI.framework + Private: Yes + + ProDisplayLibrary: + + Version: 9.4.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProDisplayLibrary.framework + Private: Yes + + BackBoardHIDEventFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackBoardHIDEventFoundation.framework + Private: Yes + + ProactiveBlendingLayer_macOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveBlendingLayer_macOS.framework + Private: Yes + + PodcastServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastServices.framework + Private: Yes + + AssistantSettingsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantSettingsFoundation.framework + Private: Yes + + CoreCDP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDP.framework + Private: Yes + + RemoteManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagement.framework + Private: Yes + + ACIAdapter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACIAdapter.framework + Private: Yes + + LiveExecutionResultsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsFoundation.framework + Private: Yes + + HIDRMKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMKit.framework + Private: Yes + + SiriInstrumentation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInstrumentation.framework + Private: Yes + + InputAccessoriesSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAccessoriesSettings.framework + Private: Yes + + WatchdogClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchdogClient.framework + Private: Yes + + FuseBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FuseBoardServices.framework + Private: Yes + + MetricKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitServices.framework + Private: Yes + + MailCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailCore.framework + Private: Yes + + EFILogin: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EFILogin.framework + Private: Yes + + PhotoLibraryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoLibraryServices.framework + Private: Yes + + RESync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RESync.framework + Private: Yes + + NotesEditor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesEditor.framework + Private: Yes + + oncrpc: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/oncrpc.framework + Private: Yes + + PhotosUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUICore.framework + Private: Yes + + DistributedTimersDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedTimersDaemon.framework + Private: Yes + + VisualUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualUnderstanding.framework + Private: Yes + + OSIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSIntelligence.framework + Private: Yes + + Mondrian: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mondrian.framework + Private: Yes + + SidecarUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SidecarUI.framework + Private: Yes + + SiriReferenceResolver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolver.framework + Private: Yes + + ProtectedCloudStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework + Private: Yes + + ASOctaneSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ASOctaneSupport.framework + Private: Yes + + ConversationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConversationKit.framework + Private: Yes + + EmbeddedAcousticRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework + Private: Yes + + RTCReporting: + + Version: 13.1.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTCReporting.framework + Private: Yes + + LLMCache: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LLMCache.framework + Private: Yes + + MailService: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailService.framework + Private: Yes + + NotesHTML: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesHTML.framework + Private: Yes + + PersonalizationPortrait: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizationPortrait.framework + Private: Yes + + RemoteManagementModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementModel.framework + Private: Yes + + SiriMASPFLTraining: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMASPFLTraining.framework + Private: Yes + + PacketFilter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PacketFilter.framework + Private: Yes + + SpotlightLinguistics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightLinguistics.framework + Private: Yes + + AppleAppSupport: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAppSupport.framework + Private: Yes + + OSInstaller: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSInstaller.framework + Private: Yes + + SAObjects: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SAObjects.framework + Private: Yes + + XQuery: + + Version: 1.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: XQuery version 1.3.1, Copyright (c) 2004-2012 Apple Inc. + Location: /System/Library/PrivateFrameworks/XQuery.framework + Private: Yes + + VideosUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideosUICore.framework + Private: Yes + + WatchListKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchListKit.framework + Private: Yes + + FinderKit: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinderKit.framework + Private: Yes + + MapsSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSync.framework + Private: Yes + + PackageUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageUIKit.framework + Private: Yes + + HTTPTypesInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HTTPTypesInternal.framework + Private: Yes + + AboutSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AboutSettings.framework + Private: Yes + + AppleMediaServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServices.framework + Private: Yes + + IncomingCallFilter: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IncomingCallFilter.framework + Private: Yes + + IMAVCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAVCore.framework + Private: Yes + + MiniSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MiniSoftwareUpdate.framework + Private: Yes + + LocalStatusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalStatusKit.framework + Private: Yes + + PassKitMacHelperTemp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitMacHelperTemp.framework + Private: Yes + + PhotosKnowledgeGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosKnowledgeGraph.framework + Private: Yes + + IOCEC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOCEC.framework + Private: Yes + + CoreSymbolication: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSymbolication.framework + Private: Yes + + SiriTTS: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTS.framework + Private: Yes + + VoiceShortcutClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceShortcutClient.framework + Private: Yes + + GenerationalStorage: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerationalStorage.framework + Private: Yes + + MusicUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicUI.framework + Private: Yes + + StoreServices: + + Version: 1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/StoreServices.framework + Private: Yes + + SnippetCommands: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetCommands.framework + Private: Yes + + SyncedDefaults: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedDefaults.framework + Private: Yes + + AppleFlatBuffers: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFlatBuffers.framework + Private: Yes + + SiriVideoIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVideoIntents.framework + Private: Yes + + SecureChannel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureChannel.framework + Private: Yes + + IMSharedUtilities: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMSharedUtilities.framework + Private: Yes + + PnROnDeviceFramework: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PnROnDeviceFramework.framework + Private: Yes + + BiometricSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricSupport.framework + Private: Yes + + TelephonyBlastDoorSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TelephonyBlastDoorSupport.framework + Private: Yes + + ParsingInternal: + + Version: 0.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsingInternal.framework + Private: Yes + + MediaExperience: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaExperience.framework + Private: Yes + + DVD: + + Version: 4.1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DVD.framework + Private: Yes + + GameCenterServerClient: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterServerClient.framework + Private: Yes + + StickerFoundationInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StickerFoundationInternal.framework + Private: Yes + + CoreRealityIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRealityIO.framework + Private: Yes + + SiriCorrections: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCorrections.framework + Private: Yes + + AppPredictionInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionInternal.framework + Private: Yes + + PerformanceTrace: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceTrace.framework + Private: Yes + + HDAInterface: + + Version: 600.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: HDAInterface 600.2, Copyright © 2000-2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/HDAInterface.framework + Private: Yes + + FindMyCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCrypto.framework + Private: Yes + + GameControllerSettings: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameControllerSettings.framework + Private: Yes + + NumberAdder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NumberAdder.framework + Private: Yes + + AppPredictionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionClient.framework + Private: Yes + + CoreDuetSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetSync.framework + Private: Yes + + DMCApps: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCApps.framework + Private: Yes + + ContactsFoundation: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsFoundation.framework + Private: Yes + + FMCoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCoreUI.framework + Private: Yes + + AccessibilitySettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySettingsUI.framework + Private: Yes + + AlgosScoreFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AlgosScoreFramework.framework + Private: Yes + + MTLCompiler: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLCompiler.framework + Private: Yes + + SafariShared: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariShared.framework + Private: Yes + + OpenAPIURLSessionInternal: + + Version: 1.0.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenAPIURLSessionInternal.framework + Private: Yes + + PlugInKitDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlugInKitDaemon.framework + Private: Yes + + UARPiCloud: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UARPiCloud.framework + Private: Yes + + DebugSymbols: + + Version: 216 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DebugSymbols.framework + Private: Yes + + InputAnalyticsServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAnalyticsServer.framework + Private: Yes + + CardKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CardKit.framework + Private: Yes + + ConsoleKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConsoleKit.framework + Private: Yes + + VoiceControlUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceControlUI.framework + Private: Yes + + SocialUI: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialUI.framework + Private: Yes + + AutoBugCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoBugCaptureCore.framework + Private: Yes + + DTXConnectionServices: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DTXConnectionServices.framework + Private: Yes + + ManagedSettingsSupport: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedSettingsSupport.framework + Private: Yes + + MobileTimer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileTimer.framework + Private: Yes + + CoreKDL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreKDL.framework + Private: Yes + + InternationalTextSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternationalTextSearch.framework + Private: Yes + + CinematicFraming: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CinematicFraming.framework + Private: Yes + + HMFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HMFoundation.framework + Private: Yes + + APTransport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APTransport.framework + Private: Yes + + FileProviderDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProviderDaemon.framework + Private: Yes + + SuggestionsSpotlightMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SuggestionsSpotlightMetrics.framework + Private: Yes + + FRC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FRC.framework + Private: Yes + + DataDetectors: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectors.framework + Private: Yes + + LockoutUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LockoutUI.framework + Private: Yes + + CascadeSets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CascadeSets.framework + Private: Yes + + EasyConfig: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EasyConfig.framework + Private: Yes + + ChronoKit: + + Version: 537.5.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoKit.framework + Private: Yes + + CDMFoundation: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDMFoundation.framework + Private: Yes + + SleepHealthUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SleepHealthUI.framework + Private: Yes + + ContextualSuggestionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualSuggestionClient.framework + Private: Yes + + NexusDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NexusDaemon.framework + Private: Yes + + DiagnosticsKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DiagnosticsKit.framework + Private: Yes + + MediaAnalysisServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisServices.framework + Private: Yes + + iCloudNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudNotification.framework + Private: Yes + + OnBoardingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnBoardingKit.framework + Private: Yes + + RoomScanCore: + + Version: 20.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RoomScanCore.framework + Private: Yes + + _Coherence_CloudKit_Private: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_Coherence_CloudKit_Private.framework + Private: Yes + + MatrixKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MatrixKit.framework + Private: Yes + + InputTranscoder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputTranscoder.framework + Private: Yes + + IDSKVStore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSKVStore.framework + Private: Yes + + HearingCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingCore.framework + Private: Yes + + RemoteTextInput: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteTextInput.framework + Private: Yes + + CalendarWidget: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarWidget.framework + Private: Yes + + SiriAppLaunchUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppLaunchUIFramework.framework + Private: Yes + + PIP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PIP.framework + Private: Yes + + PerfPowerMetricMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerMetricMonitor.framework + Private: Yes + + CascadeEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CascadeEngine.framework + Private: Yes + + AccessibilitySharedUISupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySharedUISupport.framework + Private: Yes + + MTLSimImplementation: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLSimImplementation.framework + Private: Yes + + IDSBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSBlastDoorSupport.framework + Private: Yes + + WallpaperFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WallpaperFoundation.framework + Private: Yes + + StocksCore: + + Version: 7.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StocksCore.framework + Private: Yes + + TransparencyUI: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TransparencyUI.framework + Private: Yes + + AggregateDictionary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AggregateDictionary.framework + Private: Yes + + Marrs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Marrs.framework + Private: Yes + + TextInputUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputUIMacHelper.framework + Private: Yes + + ScreenTimeServiceUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeServiceUI.framework + Private: Yes + + DEPClientLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DEPClientLibrary.framework + Private: Yes + + CoreServicesStore: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreServicesStore.framework + Private: Yes + + XGBoostFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XGBoostFramework.framework + Private: Yes + + LighthouseDataProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseDataProcessor.framework + Private: Yes + + AtomicsInternal: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AtomicsInternal.framework + Private: Yes + + SpotlightServerKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightServerKit.framework + Private: Yes + + DiskSpaceDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskSpaceDiagnostics.framework + Private: Yes + + FaceTimeNotificationViewBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationViewBridge.framework + Private: Yes + + MobileKeyBag: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileKeyBag.framework + Private: Yes + + MTLSimDriver: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLSimDriver.framework + Private: Yes + + H13ISPServices: + + Version: 9.500 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/H13ISPServices.framework + Private: Yes + + AudioAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalytics.framework + Private: Yes + + OctagonTrust: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OctagonTrust.framework + Private: Yes + + SetupAssistantFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantFramework.framework + Private: Yes + + RapidResourceDelivery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RapidResourceDelivery.framework + Private: Yes + + _MusicKitInternal_MediaPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_MusicKitInternal_MediaPlayer.framework + Private: Yes + + SiriIntentEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriIntentEvents.framework + Private: Yes + + IntelligenceFlowAppIntentsPreviewToolSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowAppIntentsPreviewToolSupport.framework + Private: Yes + + Sharing: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sharing.framework + Private: Yes + + RunningBoard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RunningBoard.framework + Private: Yes + + SiriUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUICore.framework + Private: Yes + + Feedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Feedback.framework + Private: Yes + + CalendarLink: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarLink.framework + Private: Yes + + SPOwner: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPOwner.framework + Private: Yes + + ContentKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContentKit.framework + Private: Yes + + XOJIT: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XOJIT.framework + Private: Yes + + TextInputCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputCore.framework + Private: Yes + + SafeEjectGPU: + + Version: 44 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafeEjectGPU.framework + Private: Yes + + BatteryUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryUIKit.framework + Private: Yes + + DoNotDisturbServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturbServer.framework + Private: Yes + + AppleVirtualPlatform: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVirtualPlatform.framework + Private: Yes + + TailspinSymbolication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TailspinSymbolication.framework + Private: Yes + + AppSSOUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOUI.framework + Private: Yes + + AppPlaceholderSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPlaceholderSync.framework + Private: Yes + + TextInputCJK: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputCJK.framework + Private: Yes + + EfiSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EfiSupport.framework + Private: Yes + + ManagedConfigurationFiles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedConfigurationFiles.framework + Private: Yes + + SiriPowerInstrumentation: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework + Private: Yes + + LoggingSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoggingSupport.framework + Private: Yes + + Engram: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Engram.framework + Private: Yes + + AttentionAwareness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AttentionAwareness.framework + Private: Yes + + LighthouseBackground: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseBackground.framework + Private: Yes + + CoreAudioOrchestration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAudioOrchestration.framework + Private: Yes + + AirPlayReceiverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayReceiverKit.framework + Private: Yes + + PhotoEditing: + + Version: 751.0.104 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoEditing.framework + Private: Yes + + CoreIK: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreIK.framework + Private: Yes + + RemoteManagementUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementUI.framework + Private: Yes + + OSUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSUpdate.framework + Private: Yes + + WorkflowEditor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowEditor.framework + Private: Yes + + PhoneNumberResolver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneNumberResolver.framework + Private: Yes + + BusinessFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessFoundation.framework + Private: Yes + + OSPersonalization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSPersonalization.framework + Private: Yes + + PassKitUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitUIFoundation.framework + Private: Yes + + RTTUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTTUtilities.framework + Private: Yes + + SiriEmergencyIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriEmergencyIntents.framework + Private: Yes + + ClockUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClockUIFramework.framework + Private: Yes + + iCloudDriveCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudDriveCore.framework + Private: Yes + + GroupKitCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GroupKitCrypto.framework + Private: Yes + + IMDPersistence: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDPersistence.framework + Private: Yes + + ModelManagerServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelManagerServices.framework + Private: Yes + + PhysicsKit: + + Version: 41.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhysicsKit.framework + Private: Yes + + SiriAudioInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioInternal.framework + Private: Yes + + SafariSwift: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSwift.framework + Private: Yes + + IntentsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsCore.framework + Private: Yes + + H16ISPServices: + + Version: 3.512 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/H16ISPServices.framework + Private: Yes + + EventKitExternalSync: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventKitExternalSync.framework + Private: Yes + + TokenGenerationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGenerationCore.framework + Private: Yes + + CalendarUI: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUI.framework + Private: Yes + + AlarmUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AlarmUIFramework.framework + Private: Yes + + SettingsHostUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SettingsHostUI.framework + Private: Yes + + AssistantStateProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantStateProxy.framework + Private: Yes + + SCEP: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SCEP.framework + Private: Yes + + ZeoliteFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZeoliteFramework.framework + Private: Yes + + GenerativeAssistantUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantUI.framework + Private: Yes + + CoreOCModules: + + Version: 10.13.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOCModules.framework + Private: Yes + + DarwinDirectory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectory.framework + Private: Yes + + PassKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKit.framework + Private: Yes + + DeauthorizationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeauthorizationKit.framework + Private: Yes + + QuickLookThumbnailingDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailingDaemon.framework + Private: Yes + + CryptoKitCBridging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptoKitCBridging.framework + Private: Yes + + ActionPredictionHeuristics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionPredictionHeuristics.framework + Private: Yes + + CloudKitCode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitCode.framework + Private: Yes + + SafariSharedUI: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSharedUI.framework + Private: Yes + + PhotosensitivityProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosensitivityProcessing.framework + Private: Yes + + MediaCoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaCoreUI.framework + Private: Yes + + FaceTimeTouchBarProtocols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeTouchBarProtocols.framework + Private: Yes + + MobileSpotlightIndex: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework + Private: Yes + + ANEServices: + + Version: 8.510 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANEServices.framework + Private: Yes + + StreamingZip: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StreamingZip.framework + Private: Yes + + CloudTelemetryTools: + + Version: 13.1.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudTelemetryTools.framework + Private: Yes + + OmniSearchTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OmniSearchTypes.framework + Private: Yes + + AudioServerApplication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerApplication.framework + Private: Yes + + CommunicationSafetySettingsUI: + + Version: 30.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommunicationSafetySettingsUI.framework + Private: Yes + + Apple80211: + + Version: 17.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 17.0, Copyright © 2000–2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/Apple80211.framework + Private: Yes + + MediaStream: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaStream.framework + Private: Yes + + SwiftSQLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftSQLite.framework + Private: Yes + + XPCSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XPCSupport.framework + Private: Yes + + Uninstall: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Uninstall.framework + Private: Yes + + BookKitFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookKitFoundation.framework + Private: Yes + + WeatherFoundation: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherFoundation.framework + Private: Yes + + TVLibrary: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVLibrary.framework + Private: Yes + + ContainerManagerSystem: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerSystem.framework + Private: Yes + + VideosUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideosUI.framework + Private: Yes + + RemoteUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteUI.framework + Private: Yes + + PrivateSearchClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchClient.framework + Private: Yes + + PodcastsFoundation: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastsFoundation.framework + Private: Yes + + FamilyControlsObjC: + + Version: 1204.4.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyControlsObjC.framework + Private: Yes + + GamePolicyServices: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GamePolicyServices.framework + Private: Yes + + SiriOntology: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOntology.framework + Private: Yes + + MLIR_ML: + + Version: 1.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLIR_ML.framework + Private: Yes + + Navigation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Navigation.framework + Private: Yes + + BackBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackBoardServices.framework + Private: Yes + + CoreChineseEngine: + + Version: 104 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreChineseEngine.framework + Private: Yes + + AppleMediaServicesUIPaymentSheets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUIPaymentSheets.framework + Private: Yes + + TipsDaemon: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsDaemon.framework + Private: Yes + + TextToSpeechVoiceBankingUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingUI.framework + Private: Yes + + UIKitSystemAppServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitSystemAppServices.framework + Private: Yes + + AvatarPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarPersistence.framework + Private: Yes + + BiomeStreams: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeStreams.framework + Private: Yes + + BiomeSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeSync.framework + Private: Yes + + CollectionViewCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CollectionViewCore.framework + Private: Yes + + SiriMessagesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesUI.framework + Private: Yes + + BluetoothAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothAudio.framework + Private: Yes + + Sleep: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sleep.framework + Private: Yes + + SessionFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SessionFoundation.framework + Private: Yes + + FlexMusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlexMusicKit.framework + Private: Yes + + BiomeDSL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeDSL.framework + Private: Yes + + IntelligenceEngine: + + Version: 3402.2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceEngine.framework + Private: Yes + + MSUDataAccessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MSUDataAccessor.framework + Private: Yes + + BridgeOSInstall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSInstall.framework + Private: Yes + + IMTransferAgentClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferAgentClient.framework + Private: Yes + + DASDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DASDaemon.framework + Private: Yes + + DCERPC: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DCERPC.framework + Private: Yes + + BulkSymbolication: + + Version: 1.385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BulkSymbolication.framework + Private: Yes + + MetalSerializer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetalSerializer.framework + Private: Yes + + CipherML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CipherML.framework + Private: Yes + + ScreenReaderCore: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReaderCore.framework + Private: Yes + + TemplateKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TemplateKit.framework + Private: Yes + + DeviceManagementTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceManagementTools.framework + Private: Yes + + iLifeMediaBrowser: + + Version: 2.19.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework + Private: Yes + + HomeDataModel: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeDataModel.framework + Private: Yes + + AppState: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppState.framework + Private: Yes + + RemindersUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersUICore.framework + Private: Yes + + SwiftASN1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftASN1.framework + Private: Yes + + MobileAccessoryUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework + Private: Yes + + TranslationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationDaemon.framework + Private: Yes + + SystemStatusServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatusServer.framework + Private: Yes + + HelloWorldMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HelloWorldMacHelper.framework + Private: Yes + + Planks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Planks.framework + Private: Yes + + BlastDoor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BlastDoor.framework + Private: Yes + + PodcastsKit: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastsKit.framework + Private: Yes + + ComputationalGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ComputationalGraph.framework + Private: Yes + + LimitAdTracking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LimitAdTracking.framework + Private: Yes + + Netrb: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Netrb.framework + Private: Yes + + VFXAssets: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VFXAssets.framework + Private: Yes + + SiriContactsCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsCommon.framework + Private: Yes + + MusicLibrary: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicLibrary.framework + Private: Yes + + CallstackAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallstackAnalysis.framework + Private: Yes + + DeepVideoProcessingCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepVideoProcessingCore.framework + Private: Yes + + IntelligenceFlowContextRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowContextRuntime.framework + Private: Yes + + ParsecSubscriptionServiceSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework + Private: Yes + + FlightUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlightUtilities.framework + Private: Yes + + FramePacing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FramePacing.framework + Private: Yes + + CoreSDB: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSDB.framework + Private: Yes + + AIMLInstrumentationStreams: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AIMLInstrumentationStreams.framework + Private: Yes + + HomeKitDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitDaemon.framework + Private: Yes + + CoreDuetDaemonProtocol: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework + Private: Yes + + PromotedContentSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentSupport.framework + Private: Yes + + NearFieldPrivateServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearFieldPrivateServices.framework + Private: Yes + + SMBClient: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SMBClient.framework + Private: Yes + + MCCKitCategorization_macOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MCCKitCategorization_macOS.framework + Private: Yes + + SymptomReporter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomReporter.framework + Private: Yes + + InternalSwiftProtobuf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework + Private: Yes + + AppleShareClientCore: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Low Level AppleShare Client Framework, Copyright © 2000 - 2024, Apple Inc. + Location: /System/Library/PrivateFrameworks/AppleShareClientCore.framework + Private: Yes + + HomeKitMatter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitMatter.framework + Private: Yes + + CloudKitDistributedSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitDistributedSync.framework + Private: Yes + + WorkflowKit: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowKit.framework + Private: Yes + + CoreCaptureDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0, Copyright © 2015 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreCaptureDaemon.framework + Private: Yes + + SiriIdentityInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriIdentityInternal.framework + Private: Yes + + HeadphoneManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneManager.framework + Private: Yes + + CTLazuliSupport: + + Version: 12322 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CTLazuliSupport.framework + Private: Yes + + KnowledgeMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KnowledgeMonitor.framework + Private: Yes + + STSXPCHelperClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/STSXPCHelperClient.framework + Private: Yes + + PerfPowerServicesMetadata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerServicesMetadata.framework + Private: Yes + + SleepHealth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SleepHealth.framework + Private: Yes + + SiriAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAnalytics.framework + Private: Yes + + DSExternalDisplay: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSExternalDisplay 3.1 + Location: /System/Library/PrivateFrameworks/DSExternalDisplay.framework + Private: Yes + + Trial: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Trial.framework + Private: Yes + + TextGenerationInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextGenerationInference.framework + Private: Yes + + IntelligentRoutingMediaBundles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingMediaBundles.framework + Private: Yes + + BluetoothServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothServices.framework + Private: Yes + + NewsDaemon: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsDaemon.framework + Private: Yes + + ManagedOrganizationContacts: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedOrganizationContacts.framework + Private: Yes + + AccessibilitySupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework + Private: Yes + + AccessibilityKit: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityKit.framework + Private: Yes + + AccessibilityEvents: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityEvents.framework + Private: Yes + + AccessibilityVisuals: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityVisuals.framework + Private: Yes + + AccessibilityFoundation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityFoundation.framework + Private: Yes + + AccountsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsUI.framework + Private: Yes + + SiriSignals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSignals.framework + Private: Yes + + StatusKitAgentCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StatusKitAgentCore.framework + Private: Yes + + CoreThread: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThread.framework + Private: Yes + + SummarizationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SummarizationKit.framework + Private: Yes + + LibraryRepair: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LibraryRepair.framework + Private: Yes + + CoreRepairKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Frameworks/CoreRepairKit.framework + Private: No + + Python: + + Version: 3.13.3, (c) 2001-2024 Python Software Foundation. + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Get Info String: Python Runtime and Library + Location: /Library/Frameworks/Python.framework + Private: No + + CoreRepairCore: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Frameworks/CoreRepairCore.framework + Private: No + + iTunesLibrary: + + Version: 13.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /Library/Frameworks/iTunesLibrary.framework + Private: No + +Graphics/Displays: + + Apple M3: + + Chipset Model: Apple M3 + Type: GPU + Bus: Built-In + Total Number of Cores: 8 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina Display + Resolution: 2560 x 1664 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: Yes + Connection Type: Internal + Acer G235H: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported + +Hardware: + + Hardware Overview: + + Model Name: MacBook Air + Model Identifier: Mac15,12 + Model Number: MC8J4LL/A + Chip: Apple M3 + Total Number of Cores: 8 (4 performance and 4 efficiency) + Memory: 16 GB + System Firmware Version: 11881.101.1 + OS Loader Version: 11881.101.1 + Serial Number (system): F992X00WRJ + Hardware UUID: EBBBA7A3-C701-55D7-9490-A651759B5894 + Provisioning UDID: 00008122-0009384A11EA801C + Activation Lock Status: Enabled + +Installations: + + macOS 15.2: + + Version: 15,2 + Source: Apple + Install Date: 21.02.2025, 07:34 + + MAContent10_AssetPack_0048_AlchemyPadsDigitalHolyGhost: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0310_UB_DrumMachineDesignerGB: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0312_UB_UltrabeatKitsGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0314_AppleLoopsHipHop1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0315_AppleLoopsElectroHouse1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0316_AppleLoopsDubstep1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0317_AppleLoopsModernRnB1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0320_AppleLoopsChillwave1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0321_AppleLoopsIndieDisco: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0322_AppleLoopsDiscoFunk1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0323_AppleLoopsVintageBreaks: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0324_AppleLoopsBluesGarage: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0325_AppleLoopsGarageBand1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0354_EXS_PianoSteinway: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0357_EXS_BassAcousticUprightJazz: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0358_EXS_BassElectricFingerStyle: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0371_EXS_GuitarsAcoustic: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0375_EXS_GuitarsVintageStrat: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0482_EXS_OrchWoodwindAltoSax: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0484_EXS_OrchWoodwindClarinetSolo: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0487_EXS_OrchWoodwindFluteSolo: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0491_EXS_OrchBrass: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0509_EXS_StringsEnsemble: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0536_DrummerClapsCowbell: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0537_DrummerShaker: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0538_DrummerSticks: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0539_DrummerTambourine: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0540_PlugInSettingsGB: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0554_AppleLoopsDiscoFunk2: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0557_IRsSharedAUX: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0560_LTPBasicPiano1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0593_DrummerSoCalGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0597_LTPChordTrainer: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0598_LTPBasicGuitar1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0615_GBLogicAlchemyEssentials: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0637_AppleLoopsDrummerKyle: + + Version: 3.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0646_AppleLoopsDrummerElectronic: + + Version: 3.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0806_PlugInSettingsGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MobileAssets: + + Source: Apple + Install Date: 21.02.2025, 07:38 + + Keynote: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + Pages: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + Numbers: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + iMovie: + + Version: 10.4.2 + Source: Apple + Install Date: 21.02.2025, 07:39 + + GarageBand: + + Version: 10.4.11 + Source: Apple + Install Date: 21.02.2025, 07:39 + + XProtectCloudKitUpdate: + + Version: 5293 + Source: Apple + Install Date: 09.04.2025, 00:23 + + XProtectPlistConfigData: + + Version: 5293 + Source: Apple + Install Date: 09.04.2025, 00:34 + + MRTConfigData: + + Version: 1,93 + Source: Apple + Install Date: 09.04.2025, 00:34 + + Gatekeeper Compatibility Data: + + Version: 1,0 + Source: Apple + Install Date: 09.04.2025, 00:34 + + XProtectPayloads: + + Version: 151 + Source: Apple + Install Date: 09.04.2025, 00:34 + + ‎WhatsApp: + + Version: 25.10.72 + Source: 3rd Party + Install Date: 09.04.2025, 00:45 + + V2BOX: + + Version: 9.5.1 + Source: 3rd Party + Install Date: 09.04.2025, 00:45 + + Xcode: + + Version: 16,3 + Source: Apple + Install Date: 09.04.2025, 00:53 + + Telegram: + + Version: 11,8 + Source: 3rd Party + Install Date: 09.04.2025, 00:56 + + SF Symbols: + + Source: Apple + Install Date: 09.04.2025, 12:09 + + RosettaUpdateAuto: + + Source: Apple + Install Date: 09.04.2025, 20:54 + + Python: + + Source: 3rd Party + Install Date: 12.04.2025, 13:50 + + Command Line Tools for Xcode: + + Version: 16,3 + Source: Apple + Install Date: 12.04.2025, 13:56 + + XProtectCloudKitUpdate: + + Version: 5295 + Source: Apple + Install Date: 16.04.2025, 12:18 + + XProtectPlistConfigData: + + Version: 5295 + Source: Apple + Install Date: 16.04.2025, 13:45 + + XProtectPlistConfigData: + + Version: 5296 + Source: Apple + Install Date: 23.04.2025, 12:19 + + macOS 15.4.1: + + Version: 15.4.1 + Source: Apple + Install Date: 25.04.2025, 20:17 + + RosettaUpdateAuto: + + Source: Apple + Install Date: 25.04.2025, 20:17 + +Language & Region: + + User Settings: + + Requested Linguistic Assets: ru, ru_RU, en, en_RU, bg, uk, fr, de, fi + Siri Language: ru-RU + Siri Voice Gender: Female + Siri Voice Language: ru-RU + Calendar: Gregorian + Country Code: RU + Current Input Source: com.apple.keylayout.ABC + Language Code: ru + Locale: ru_RU + Preferred Interface Languages: ru-RU + Uses Metric System: Yes + + System Settings: + + Country Code: RU + OS Interface Languages: en, en-GB, en-AU, en-IN, zh-Hans, zh-Hant, zh-HK, ja, es, es-US, es-419, fr, fr-CA, de, ru, pt-BR, pt-PT, it, ko, tr, nl, ar, th, sv, da, vi, nb, pl, fi, id, he, el, ro, hu, cs, ca, sk, uk, hr, ms, hi, sl + System Preferred Interface Languages: ru-RU + Locale: ru_RU + Text Direction: Left-To-Right + Uses Metric System: No + + Recovery Partition Settings: + + Keyboard Code: 252 + Locale: ru + +Locations: + + Automatic: + + Active Location: Yes + Services: + Ethernet Adapter (en3): + Type: Ethernet + BSD Device Name: en3 + Hardware (MAC) Address: 12:c3:4f:96:68:ab + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Ethernet Adapter (en4): + Type: Ethernet + BSD Device Name: en4 + Hardware (MAC) Address: 12:c3:4f:96:68:ac + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Thunderbolt Bridge: + Type: Bridge + BSD Device Name: bridge0 + Hardware (MAC) Address: 36:bf:29:b6:65:c0 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Wi-Fi: + Type: IEEE80211 + BSD Device Name: en0 + Hardware (MAC) Address: c4:84:fc:05:95:19 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + IEEE80211: + Join Mode: Automatic + V2BOX: + Type: VPN + IPv4: + Configuration Method: VPN + IPv6: + Configuration Method: Automatic + VPN: + AuthenticationMethod: Password + DesignatedRequirement: (anchor apple generic and certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = "5AC5438XDR") and identifier "hossin.asaadi.V2Box.PacketTunnel" + Disconnect on Fast User Switch: No + Disconnect on Idle: No + Disconnect on Idle Timer: 0 + Disconnect on Logout: No + Disconnect on Sleep: No + DisconnectOnWake: 0 + DisconnectOnWakeTimer: 0 + NEProviderBundleIdentifier: hossin.asaadi.V2Box.PacketTunnel + OnDemandEnabled: 0 + RemoteAddress: localhost + +Logs: + + Apple System Log (ASL) Messages: + + Source: /var/log/asl + Size: 133 KB (132 931 bytes) + Last Modified: 09.05.2025, 22:24 + Recent Contents: ... +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:40:31 bootlog[0]: BOOT_TIME 1740112831 776000 +8 апр. 2025 г., 18:24:59 bootlog[0]: BOOT_TIME 1744125899 324371 +8 апр. 2025 г., 18:34:40 shutdown[389]: SHUTDOWN_TIME: 1744126480 29885 +9 апр. 2025 г., 00:15:30 bootlog[0]: BOOT_TIME 1744146930 858489 +9 апр. 2025 г., 00:15:47 loginwindow[133]: USER_PROCESS: 133 console +9 апр. 2025 г., 00:15:51 loginwindow[133]: DEAD_PROCESS: 133 console +9 апр. 2025 г., 00:15:51 loginwindow[133]: USER_PROCESS: 133 console +9 апр. 2025 г., 00:17:11 loginwindow[761]: USER_PROCESS: 761 console +9 апр. 2025 г., 01:03:08 sessionlogoutd[2556]: DEAD_PROCESS: 761 console +9 апр. 2025 г., 01:03:08 shutdown[2559]: SHUTDOWN_TIME: 1744149788 331947 +9 апр. 2025 г., 01:03:23 bootlog[0]: BOOT_TIME 1744149803 128356 +9 апр. 2025 г., 01:03:36 loginwindow[150]: USER_PROCESS: 150 console +9 апр. 2025 г., 20:55:50 login[16948]: USER_PROCESS: 16948 ttys000 +9 апр. 2025 г., 20:56:06 login[16948]: DEAD_PROCESS: 16948 ttys000 +12 апр. 2025 г., 13:47:13 login[48639]: USER_PROCESS: 48639 ttys003 +12 апр. 2025 г., 13:52:15 login[48639]: DEAD_PROCESS: 48639 ttys003 +12 апр. 2025 г., 13:52:16 login[48964]: USER_PROCESS: 48964 ttys003 +12 апр. 2025 г., 14:51:36 login[48964]: DEAD_PROCESS: 48964 ttys003 +12 апр. 2025 г., 14:51:38 login[54411]: USER_PROCESS: 54411 ttys003 +14 апр. 2025 г., 12:23:10 login[54411]: DEAD_PROCESS: 54411 ttys003 +22 апр. 2025 г., 22:22:14 login[45929]: USER_PROCESS: 45929 ttys002 +22 апр. 2025 г., 22:24:25 login[45929]: DEAD_PROCESS: 45929 ttys002 +22 апр. 2025 г., 22:24:29 login[46101]: USER_PROCESS: 46101 ttys002 +25 апр. 2025 г., 20:11:30 login[46101]: DEAD_PROCESS: 46101 ttys002 +25 апр. 2025 г., 20:11:32 sessionlogoutd[89089]: DEAD_PROCESS: 150 console +25 апр. 2025 г., 20:11:32 loginwindow[89097]: USER_PROCESS: 89097 console +25 апр. 2025 г., 20:12:56 reboot[89162]: SHUTDOWN_TIME: 1745601176 139065 +25 апр. 2025 г., 20:16:10 bootlog[0]: BOOT_TIME 1745601370 306733 +25 апр. 2025 г., 20:17:12 loginwindow[448]: USER_PROCESS: 448 console +25 апр. 2025 г., 20:17:41 login[1184]: USER_PROCESS: 1184 ttys000 +26 апр. 2025 г., 17:08:22 login[1184]: DEAD_PROCESS: 1184 ttys000 +2 мая 2025 г., 00:12:54 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 00:22:56 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 00:38:03 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:38:03 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +2 мая 2025 г., 00:54:13 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 01:11:54 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 01:23:50 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 01:40:19 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 01:56:10 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 02:11:42 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 02:24:50 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 02:40:11 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 02:52:20 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 03:08:58 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 03:26:54 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 03:43:12 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 04:00:19 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 04:17:02 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 04:32:52 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 04:49:53 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 05:07:49 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 05:24:36 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 05:39:57 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 05:55:10 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 06:05:53 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 06:17:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 06:34:23 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 06:50:05 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 07:07:30 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 07:22:56 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 07:39:37 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 07:56:54 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 08:12:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 08:34:15 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 08:51:08 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 09:07:56 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 09:19:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 09:37:02 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 09:52:18 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 10:08:50 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 10:20:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 10:37:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 10:54:02 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 11:11:56 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 11:38:36 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 11:54:38 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 12:10:45 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 12:22:29 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 12:39:53 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 12:56:57 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 13:12:05 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 13:22:45 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 13:37:20 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 13:53:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 14:10:36 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 14:35:10 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 14:52:23 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 15:07:36 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 15:25:24 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 15:42:23 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 15:54:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 16:09:49 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 16:24:58 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 16:42:23 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 16:55:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 17:11:54 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 17:27:51 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 17:43:10 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 17:56:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 18:13:19 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 18:30:19 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 18:46:49 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 18:57:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 19:12:34 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 19:29:58 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 19:45:35 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 19:58:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 20:15:55 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 20:33:48 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 20:49:33 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 20:59:33 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 21:16:38 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 21:33:41 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 21:50:27 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 22:00:27 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 22:16:44 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 22:31:53 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 22:48:11 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 23:01:25 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 23:17:44 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 23:33:30 syslogd[410]: ASL Sender Statistics +2 мая 2025 г., 23:50:45 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 00:02:25 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 00:20:15 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 00:35:46 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:35:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +3 мая 2025 г., 00:52:57 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 01:03:25 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 01:19:14 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 01:36:11 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 01:53:08 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 02:04:25 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 02:22:01 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 02:39:34 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 02:50:23 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 03:05:25 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 03:21:35 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 03:37:48 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 03:54:41 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 04:10:58 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 04:28:05 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 04:43:07 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 05:00:00 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 05:15:08 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 05:30:11 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 05:47:16 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 06:04:36 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 06:20:31 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 06:36:12 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 06:57:15 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 07:12:42 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 07:29:13 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 07:44:33 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 08:01:24 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 08:18:19 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 08:33:47 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 08:51:30 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 09:15:38 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 09:32:31 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 09:50:32 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 10:16:12 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 10:32:16 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 10:47:50 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 11:00:15 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 11:15:28 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 11:32:53 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 11:49:52 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 12:01:15 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 12:16:35 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 12:31:40 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 12:48:03 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 13:02:15 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 13:29:12 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 13:39:34 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 13:55:07 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 14:17:33 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 14:28:43 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 14:45:45 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 14:57:53 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 15:14:30 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 15:36:41 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 15:52:02 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 16:07:41 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 16:23:17 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 16:46:41 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 17:01:46 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 17:19:12 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 17:35:48 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 17:51:34 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 18:09:35 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 18:29:33 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 18:46:20 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 19:02:48 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 19:19:30 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 19:37:37 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 19:54:39 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 20:20:45 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 20:40:43 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 21:01:05 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 21:11:09 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 21:31:06 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 21:41:13 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 21:58:33 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 22:22:35 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 22:40:51 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 22:55:51 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 23:10:51 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 23:22:52 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 23:39:57 syslogd[410]: ASL Sender Statistics +3 мая 2025 г., 23:55:32 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 00:12:45 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 00:29:46 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 00:44:55 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 00:44:56 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +4 мая 2025 г., 01:00:18 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 01:17:00 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 01:41:56 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 01:58:04 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 02:15:56 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 02:40:27 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 02:56:58 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 03:18:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 03:43:27 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 04:01:05 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 04:17:13 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 04:34:25 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 04:51:21 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 05:07:51 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 05:25:21 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 05:41:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 05:58:34 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 06:14:01 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 06:30:06 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 06:45:57 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 07:01:54 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 07:18:06 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 07:40:16 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 07:56:58 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 08:13:03 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 08:28:53 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 08:46:12 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 09:04:11 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 09:19:07 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 09:35:57 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 09:51:53 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 10:09:29 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 10:20:07 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 10:37:40 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 10:54:31 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 11:12:33 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 11:36:37 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 11:52:12 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 12:08:54 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 12:22:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 12:38:15 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 12:53:44 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 13:10:57 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 13:23:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 13:40:12 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 13:56:47 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 14:13:12 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 14:24:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 14:46:38 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 15:04:33 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 15:22:18 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 15:36:55 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 15:54:50 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 16:11:04 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 16:26:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 16:43:48 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 17:01:36 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 17:18:48 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 17:44:38 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 18:01:38 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 18:19:03 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 18:45:32 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 19:00:37 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 19:16:15 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 19:29:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 19:44:55 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 20:02:50 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 20:18:55 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 20:30:08 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 20:45:46 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 21:02:05 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 21:17:35 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 21:30:29 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 21:42:57 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 21:54:51 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 22:09:57 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 22:27:35 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 22:45:31 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 23:01:28 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 23:19:01 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 23:36:02 syslogd[410]: ASL Sender Statistics +4 мая 2025 г., 23:49:55 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 00:12:42 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 00:28:35 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 00:45:06 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:45:06 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +5 мая 2025 г., 00:56:51 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 01:12:51 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 01:28:33 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 01:46:30 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 01:57:51 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 02:15:58 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 02:32:59 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 02:49:06 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 03:16:23 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 03:32:35 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 03:50:32 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 04:05:59 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 04:23:03 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 04:40:08 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 04:55:13 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 05:13:12 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 05:29:20 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 05:46:06 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 06:03:42 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 06:21:35 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 06:39:07 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 06:49:12 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 07:06:00 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 07:21:40 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 07:38:54 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 07:55:20 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 07:55:20 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 08:19:08 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 08:36:43 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 08:50:12 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 09:07:08 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 09:24:14 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 09:41:41 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 10:06:19 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 10:23:31 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 10:39:40 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 10:52:12 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 11:10:10 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 11:25:51 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 11:42:11 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 11:53:12 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 12:10:13 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 12:26:44 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 12:43:33 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 13:02:00 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 13:21:53 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 13:37:34 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 13:53:46 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 14:10:15 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 14:26:32 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 14:44:24 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 14:54:29 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 15:09:29 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 15:20:36 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 15:33:52 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 15:44:50 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 15:55:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 16:13:44 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 16:26:11 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 16:38:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 16:51:46 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 17:14:34 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 17:31:58 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 17:49:26 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 18:04:59 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 18:20:40 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 18:37:29 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 18:51:58 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 19:07:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 19:17:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 19:39:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 19:54:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 20:04:38 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 20:24:26 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 20:41:18 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 20:57:30 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 21:12:40 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 21:29:05 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 21:39:23 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 21:57:24 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 22:14:25 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 22:31:30 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 22:48:40 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 23:04:50 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 23:22:43 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 23:38:31 syslogd[410]: ASL Sender Statistics +5 мая 2025 г., 23:56:41 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 00:11:51 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 00:27:00 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 00:42:33 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:42:33 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +6 мая 2025 г., 00:58:08 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 01:15:09 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 01:30:29 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 01:43:33 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 02:01:10 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 02:16:50 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 02:33:59 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 02:49:14 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 03:06:53 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 03:23:02 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 03:41:01 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 03:58:41 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 04:14:21 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 04:31:18 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 04:47:31 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 05:05:01 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 05:23:02 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 05:39:24 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 05:56:32 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 06:15:51 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 06:31:26 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 06:48:20 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 07:00:43 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 07:16:12 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 07:31:21 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 07:48:05 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 08:01:43 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 08:18:58 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 08:35:41 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 08:59:40 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 09:18:03 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 09:36:01 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 09:53:37 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 10:03:43 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 10:19:31 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 10:37:21 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 10:53:03 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 11:04:43 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 11:20:58 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 11:36:11 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 11:54:09 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 12:05:43 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 12:22:36 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 12:35:44 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 12:48:19 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 13:06:16 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 13:20:28 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 13:44:41 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 13:58:40 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 14:09:13 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 14:22:19 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 14:34:23 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 14:46:47 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 15:05:22 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 15:21:20 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 15:38:03 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 15:55:16 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 16:10:46 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 16:26:37 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 16:44:25 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 16:54:58 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 17:12:30 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 17:30:34 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 17:47:54 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 18:09:55 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 18:27:03 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 18:45:21 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 19:08:46 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 19:24:37 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 19:41:30 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 19:54:07 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 20:12:12 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 20:30:33 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 20:48:09 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 21:11:22 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 21:28:00 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 21:45:31 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 21:56:08 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 22:13:29 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 22:30:02 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 22:46:35 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 23:07:24 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 23:23:29 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 23:40:04 syslogd[410]: ASL Sender Statistics +6 мая 2025 г., 23:55:13 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 00:12:35 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 00:28:30 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 00:46:17 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 00:46:17 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +7 мая 2025 г., 01:07:58 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 01:25:57 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 01:42:23 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 02:08:12 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 02:24:14 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 02:39:32 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 02:52:41 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 03:09:17 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 03:27:11 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 03:43:56 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 04:01:33 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 04:18:23 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 04:34:05 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 04:50:42 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 05:06:18 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 05:23:40 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 05:41:35 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 05:58:01 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 06:14:51 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 06:32:20 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 06:44:04 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 06:59:56 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 07:15:14 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 07:31:40 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 07:48:25 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 08:03:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 08:16:40 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 08:32:10 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 08:45:04 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 09:03:09 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 09:19:37 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 09:37:02 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 10:01:48 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 10:19:50 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 10:36:06 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 10:47:06 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 11:04:15 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 11:21:40 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 11:39:30 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 11:59:35 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 12:10:04 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 12:21:46 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 12:41:12 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 12:53:07 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 13:09:05 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 13:23:32 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 13:33:36 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 13:43:39 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 14:01:26 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 14:19:38 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 14:30:27 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 14:48:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 15:05:54 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 15:23:34 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 15:39:56 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 15:56:45 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 16:14:26 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 16:38:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 16:49:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 17:07:14 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 17:24:40 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 17:50:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 18:06:17 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 18:23:06 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 18:40:14 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 18:51:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 19:09:46 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 19:26:26 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 19:43:00 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 20:10:51 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 20:25:54 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 20:43:48 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 20:53:48 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 21:09:58 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 21:25:30 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 21:42:08 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 21:54:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 22:12:17 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 22:28:06 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 22:45:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 22:55:47 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 23:12:08 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 23:27:28 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 23:44:11 syslogd[410]: ASL Sender Statistics +7 мая 2025 г., 23:56:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:11:55 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:29:02 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:46:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:57:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:15:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:32:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:46:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:58:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:14:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:29:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:45:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:59:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:16:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:33:07 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:48:09 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:05:10 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:21:31 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:36:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:53:09 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:10:51 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:26:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:44:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:02:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:19:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:35:10 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:51:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:11:32 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:29:12 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:46:52 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:02:17 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:18:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:35:05 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:51:12 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:10:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:26:34 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:41:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:55:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:15:31 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:30:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:47:51 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:12:26 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:29:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:45:53 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:57:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:14:11 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:30:52 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:46:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:58:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:14:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:30:23 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:47:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:59:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:16:30 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:34:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:54:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:16:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:32:29 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:47:40 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:01:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:17:13 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:32:56 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:50:27 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:02:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:18:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:35:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:52:08 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:03:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:13:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:29:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:53:04 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:10:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:27:22 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:44:48 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:00:30 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:13:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:29:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:47:26 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:03:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:14:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:31:57 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:48:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:04:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:15:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:32:19 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:43:48 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:57:06 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:04:58 login[91366]: USER_PROCESS: 91366 ttys000 +8 мая 2025 г., 23:08:16 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:18:44 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:29:32 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:41:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:52:23 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:58:48 login[91366]: DEAD_PROCESS: 91366 ttys000 +8 мая 2025 г., 23:58:49 login[93756]: USER_PROCESS: 93756 ttys000 +9 мая 2025 г., 00:02:33 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:12:37 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:22:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:32:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:43:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:53:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:17:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:37:12 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:53:59 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:10:55 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:25:58 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:41:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:59:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:17:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:37:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:56:12 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:13:42 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:31:15 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:49:01 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:05:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:21:40 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:39:05 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:56:51 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:15:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:31:47 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:49:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:07:58 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:33:45 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:50:21 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:08:15 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:26:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:44:28 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:02:07 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:17:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:35:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:52:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:09:02 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:19:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:35:31 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:57:37 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:15:40 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:37:47 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:54:08 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:12:30 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:37:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:56:11 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:10:11 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:21:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:23:56 login[95621]: USER_PROCESS: 95621 ttys003 +9 мая 2025 г., 13:32:02 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:44:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:57:22 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: (null) +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: (null) +9 мая 2025 г., 14:01:58 login[97541]: USER_PROCESS: 97541 ttys007 +9 мая 2025 г., 14:02:22 login[97541]: DEAD_PROCESS: 97541 ttys007 +9 мая 2025 г., 14:08:08 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:21:34 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:34:56 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:47:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:57:54 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:08:50 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:32:32 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:50:17 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:57:10 login[93756]: DEAD_PROCESS: 93756 ttys000 +9 мая 2025 г., 16:01:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:11:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: (null) +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: (null) +9 мая 2025 г., 16:21:43 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:34:31 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:45:01 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:56:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:06:35 login[3938]: USER_PROCESS: 3938 ttys000 +9 мая 2025 г., 17:06:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:18:14 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: (null) +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: (null) +9 мая 2025 г., 17:31:18 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:42:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:52:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:02:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:12:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:24:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:34:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:44:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: (null) +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: (null) +9 мая 2025 г., 18:54:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:04:27 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:14:38 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:24:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:39:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:49:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:59:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:11:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:26:57 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:37:26 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:47:28 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:57:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:08:09 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:18:27 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:33:20 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:50:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:02:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:06:02 login[3938]: DEAD_PROCESS: 3938 ttys000 +9 мая 2025 г., 22:11:30 login[18488]: USER_PROCESS: 18488 ttys000 +9 мая 2025 г., 22:13:00 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:24:38 syslogd[410]: ASL Sender Statistics + + Installer log: + + Source: /var/log/install.log + Size: 3,6 MB (3 567 852 bytes) + Last Modified: 09.05.2025, 22:20 + Recent Contents: ... +2025-05-07 02:24:15+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-07 02:24:15+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-07 02:24:15+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-07 08:16:41+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-07 08:16:41+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-07 08:16:41+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-07 08:16:41+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-07 11:59:35+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 11:59:35+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 11:59:35+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 11:59:35+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 11:59:35+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 11:59:35+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 11:59:35+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-07 12:41:56+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-07 12:41:56+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 12:41:56+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:23:32+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:23:32+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:23:32+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:23:32+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:23:32+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:23:32+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:23:32+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-07 13:31:11+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:31:11+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:33:23+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:33:23+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:39:01+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 13:39:01+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 13:39:01+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-07 14:28:27+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:28:27+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:28:27+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:28:27+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:28:27+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:28:27+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:28:27+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-07 14:31:25+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:31:25+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:34:10+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:34:10+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:34:10+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-07 14:36:19+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:36:19+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:36:19+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-07 14:38:41+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:38:41+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:48:47+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-07 14:48:47+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-07 14:48:47+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-07 16:20:10+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-07 16:20:10+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-07 16:20:10+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-07 16:20:10+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-07 20:25:54+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-07 20:25:54+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-07 20:25:54+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-07 20:25:55+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-08 02:29:54+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-08 02:29:54+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-08 02:29:54+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-08 02:29:54+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-08 08:18:41+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-08 08:18:41+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-08 08:18:41+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-08 08:18:41+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-08 14:16:30+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-08 14:16:30+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-08 14:16:30+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-08 14:16:30+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-08 18:12:02+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 18:12:02+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 18:12:02+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 18:12:02+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 18:12:02+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 18:12:02+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 18:12:03+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-08 18:12:38+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-08 18:12:38+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 18:12:38+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:43:48+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 22:43:48+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:43:48+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 22:43:48+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:43:48+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 22:43:48+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:43:49+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-08 22:45:28+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=49105, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XProtectUpdateService.xpc/Contents/MacOS/XProtectUpdateService) +2025-05-08 22:45:40+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-08 22:45:40+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 22:45:40+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:49:26+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 22:49:26+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 22:49:26+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-08 22:50:24+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-08 22:50:24+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-08 22:50:24+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-08 22:50:24+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-08 22:59:57+03 Mac system_installd[90979]: installd: Starting +2025-05-08 22:59:57+03 Mac installd[90978]: installd: Starting +2025-05-08 22:59:57+03 Mac system_installd[90979]: installd: uid=0, euid=0 +2025-05-08 22:59:57+03 Mac installd[90978]: installd: uid=0, euid=0 +2025-05-08 23:01:09+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=47860, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/keybagd) +2025-05-08 23:12:38+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 23:12:38+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 23:23:24+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 23:23:24+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 23:23:24+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 23:23:24+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-08 23:25:29+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Untracked client connected: SoftwareUpdateSubscriber (type = untracked, pid = 92677, uid = 277, path = /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SoftwareUpdateSubscriber.xpc/Contents/MacOS/SoftwareUpdateSubscriber) +2025-05-08 23:25:29+03 Mac softwareupdated[8580]: -[SUOSUManagedServiceDaemon allDeclarationsRemovingInvalidDeclarations:]_block_invoke: Removed 0 invalid declarations +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: BackgroundActivity: Starting Background Check Activity +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: BackgroundActivity: Starting background actions now. +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: BackgroundActions: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: SoftwareUpdate: Should Check=YES. Next check=04.05.2025, 17:01 (interval=86280.000000, A/C=YES +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: SoftwareUpdate: Fire periodic check for interval +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: BackgroundActions: checking for updates +2025-05-08 23:25:39+03 Mac softwareupdated[8580]: SUScan: Scan for client pid 8580 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-08 23:25:40+03 Mac softwareupdated[8580]: Got status 200 +2025-05-08 23:25:46+03 Mac softwareupdated[8580]: SUScan: Using catalog https://swscan.apple.com/content/catalogs/others/index-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz +2025-05-08 23:25:52+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:53+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:53+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:25:53+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:25:54+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:54+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:57+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:57+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'system.ioregistry.fromPath('IODeviceTree:/rom\@0').version') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:25:59+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:00+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:00+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:00+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:00+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:00+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:01+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:09+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:10+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:16+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:16+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:16+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: JS: 15.4.1 +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:19+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:23+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:25+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:25+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:27+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:27+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:28+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:28+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:28+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:32+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:33+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:34+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:34+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:26:34+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:26:34+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-08 23:27:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:04+03 Mac softwareupdated[8580]: JS: No bundle at/Applications/SafeView.app +2025-05-08 23:27:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: SUScan: Elapsed scan time = 90.1 +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: Refreshing available updates from scan +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: Scan (f=1, d=1) completed +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: 0 updates found: +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: SUOSNotificationBundleHandler: Should notify? NO (Notification pending=0, bundle exists=0, mdmInitiatedNotificationBundleInstall=0) +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActions: Legacy scan completed +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActions: 0 user-visible product(s): +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActions: 0 enabled config-data product(s): (want active updates only) +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActions: 0 firmware product(s): +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActions: 0 Critical product(s) - [download and install now: ], [download and queue for post logout now: ], [download only: ], [no action: ] +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActivity: Starting background download now. +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: DO MSU BACKGROUND ACTIONS! +2025-05-08 23:27:09+03 Mac softwareupdated[8580]: BackgroundActivity: Finished Background Check Activity +2025-05-08 23:27:10+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: Perform background scan +2025-05-08 23:27:10+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-08 23:27:10+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-08 23:27:10+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-08 23:27:10+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: minorPrimaryDescriptor: (null) +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + ) +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: No products. +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: softwareupdated: Posting com.apple.softwareupdate.AutoBackgroundScanFinished notification +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: SUOSUInactivityPredictor: Predicting an inactivity between Thu May 8 23:27:42 2025 and Fri May 9 23:27:42 2025 +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: int main(int, const char **)_block_invoke: Removed old declarations upon successful update +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Predicted inactivity is in the past, posting now +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Posting com.apple.SoftwareUpdate.updatesAvailable notification +2025-05-08 23:27:42+03 Mac softwareupdated[8580]: -[SUOSUManagedServiceDaemon invalidAndRemoveOldDeclarations]_block_invoke: Removed 0 invalid declarations +2025-05-08 23:30:28+03 Mac nbagent[54440]: NBUpdateController: Using catalog URL: https://swscan.apple.com/content/catalogs/others/index-noticeboard-10.10-noticeboard-10.9-noticeboard.merged-1.sucatalog +2025-05-08 23:30:30+03 Mac nbagent[54440]: MiniSoftwareUpdate: using pinning policy for swscan.apple.com: MacSoftwareUpdate (included with OS) +2025-05-08 23:30:35+03 Mac nbagent[54440]: MiniSoftwareUpdate: using pinning policy for swdist.apple.com: MacSoftwareUpdate (included with OS) +2025-05-08 23:30:51+03 Mac nbagent[54440]: NBUpdateController: Filtered installable products: ( + ) +2025-05-09 00:15:18+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 00:15:18+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 00:18:20+03 MacBook-Air--Main systemmigrationd[94128]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-09 00:18:21+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=94128, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 00:18:24+03 MacBook-Air--Main systemmigrationd[94128]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-09 00:19:29+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=94128, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 01:00:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:00:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:00:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:00:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:00:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:00:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:00:08+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:00:08+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:01:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 01:01:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:01:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:01:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 01:01:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 01:01:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:01:33+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:18:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:18:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:18:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:18:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:18:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:18:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:18:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 01:18:59+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:18:59+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:19:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 01:19:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 01:19:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 01:19:12+03 MacBook-Air--Main systemmigrationd[94839]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-09 01:19:13+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=94839, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 01:37:39+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=94839, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 02:25:58+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-09 02:25:58+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-09 02:25:58+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 02:25:58+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-09 08:26:25+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-09 08:26:25+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-09 08:26:25+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 08:26:25+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-09 08:26:43+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=95081, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XProtectUpdateService.xpc/Contents/MacOS/XProtectUpdateService) +2025-05-09 13:10:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:10:11+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:10:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:10:11+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:10:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:10:11+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:10:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 13:16:24+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=94009, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/keybagd) +2025-05-09 13:31:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:31:22+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:41:30+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:41:30+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:41:30+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 13:41:30+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 13:57:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Untracked client disconnected: SoftwareUpdateSubscriber (type = untracked, pid = 92677, uid = 277, path = /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SoftwareUpdateSubscriber.xpc/Contents/MacOS/SoftwareUpdateSubscriber) +2025-05-09 13:57:43+03 MacBook-Air--Main nbagent[54440]: NBStateController: Connection interrupted +2025-05-09 14:01:33+03 MacBook-Air--Main Xcode[97512]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 14:01:33+03 MacBook-Air--Main Xcode[97512]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 14:16:26+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-09 14:16:26+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-09 14:16:26+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 48024, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 14:16:26+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-09 14:24:15+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 14:24:15+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 14:24:15+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 14:34:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 14:34:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 14:34:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 14:34:57+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 14:34:57+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 14:52:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 14:52:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 14:52:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 14:53:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 15:00:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 15:00:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 15:00:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 15:00:07+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 15:02:18+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 15:02:18+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 15:05:56+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=95081, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XPCServices/XProtectUpdateService.xpc/Contents/MacOS/XProtectUpdateService) +2025-05-09 15:07:09+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=94009, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/keybagd) +2025-05-09 15:16:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 15:16:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 15:16:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 15:56:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 15:56:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 15:56:16+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 15:56:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 15:56:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 16:17:39+03 MacBook-Air--Main system_installd[2039]: installd: Starting +2025-05-09 16:17:39+03 MacBook-Air--Main system_installd[2039]: installd: uid=0, euid=0 +2025-05-09 16:17:40+03 MacBook-Air--Main installd[2041]: installd: Starting +2025-05-09 16:17:40+03 MacBook-Air--Main installd[2041]: installd: uid=0, euid=0 +2025-05-09 16:17:54+03 MacBook-Air--Main Xcode[2082]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 16:17:54+03 MacBook-Air--Main Xcode[2082]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 16:18:27+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=48024, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 16:18:27+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=48024, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 16:18:27+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=48024, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 16:23:54+03 MacBook-Air--Main system_installd[2431]: installd: Starting +2025-05-09 16:23:54+03 MacBook-Air--Main system_installd[2431]: installd: uid=0, euid=0 +2025-05-09 16:23:54+03 MacBook-Air--Main installd[2437]: installd: Starting +2025-05-09 16:23:54+03 MacBook-Air--Main installd[2437]: installd: uid=0, euid=0 +2025-05-09 17:02:38+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=3652, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/mobileassetd) +2025-05-09 17:05:30+03 MacBook-Air--Main installd[3742]: installd: Starting +2025-05-09 17:05:30+03 MacBook-Air--Main installd[3742]: installd: uid=0, euid=0 +2025-05-09 17:05:30+03 MacBook-Air--Main system_installd[3746]: installd: Starting +2025-05-09 17:05:30+03 MacBook-Air--Main system_installd[3746]: installd: uid=0, euid=0 +2025-05-09 17:26:48+03 MacBook-Air--Main Xcode[4782]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 17:26:48+03 MacBook-Air--Main Xcode[4782]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 17:35:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 17:35:24+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 17:35:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 17:35:51+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: BackgroundActivity: Starting Background Check Activity +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: BackgroundActivity: Starting background actions now. +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: BackgroundActions: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SoftwareUpdate: Fired early. Next check=09.05.2025, 23:25 (interval=86280.000000, A/C=YES) +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: BackgroundActivity: Starting background download now. +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: DO MSU BACKGROUND ACTIONS! +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: BackgroundActivity: Finished Background Check Activity +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: Perform background scan +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-09 17:37:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-09 17:37:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-09 17:37:35+03 MacBook-Air--Main softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-09 17:37:35+03 MacBook-Air--Main softwareupdated[8580]: minorPrimaryDescriptor: (null) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + ) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: No products. +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: softwareupdated: Posting com.apple.softwareupdate.AutoBackgroundScanFinished notification +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUInactivityPredictor: Predicting an inactivity between Fri May 9 17:37:36 2025 and Sat May 10 17:37:36 2025 +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: int main(int, const char **)_block_invoke: Removed old declarations upon successful update +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 5152, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Scheduling for Fri May 9 22:07:36 2025 (16199 seconds) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUManagedServiceDaemon invalidAndRemoveOldDeclarations]_block_invoke: Removed 0 invalid declarations +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Updating additionalUpdateMetricEventFields: { + autoUpdate = false; + buddy = false; + commandLine = false; + installTonight = false; + mdm = false; + notification = true; + settings = false; + } +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-09 17:37:36+03 MacBook-Air--Main accessoryupdaterd[5088]: SUOSUExternalUpdateProvider: Sent available updates with ( + ) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 5152, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 17:37:36+03 MacBook-Air--Main softwareupdated[8580]: Set available third party update infos to: ( + ) +2025-05-09 17:37:38+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-09 17:37:38+03 MacBook-Air--Main softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-09 17:37:38+03 MacBook-Air--Main softwareupdated[8580]: minorPrimaryDescriptor: (null) +2025-05-09 17:37:38+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + ) +2025-05-09 17:37:38+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Scan for client pid 8580 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-09 17:37:39+03 MacBook-Air--Main softwareupdated[8580]: Got status 200 +2025-05-09 17:37:39+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Using catalog https://swscan.apple.com/content/catalogs/others/index-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'system.ioregistry.fromPath('IODeviceTree:/rom\@0').version') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:40+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: JS: 15.4.1 +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: JS: No bundle at/Applications/SafeView.app +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:41+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:42+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:42+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Untracked client connected: SoftwareUpdateSubscriber (type = untracked, pid = 5189, uid = 277, path = /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SoftwareUpdateSubscriber.xpc/Contents/MacOS/SoftwareUpdateSubscriber) +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUManagedServiceDaemon allDeclarationsRemovingInvalidDeclarations:]_block_invoke: Removed 0 invalid declarations +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 17:37:44+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Elapsed scan time = 5.6 +2025-05-09 17:37:44+03 MacBook-Air--Main softwareupdated[8580]: Refreshing available updates from scan +2025-05-09 17:37:44+03 MacBook-Air--Main softwareupdated[8580]: Scan (f=1, d=0) completed +2025-05-09 17:37:44+03 MacBook-Air--Main softwareupdated[8580]: 0 updates found: +2025-05-09 17:38:29+03 MacBook-Air--Main system_installd[5214]: installd: Starting +2025-05-09 17:38:29+03 MacBook-Air--Main system_installd[5214]: installd: uid=0, euid=0 +2025-05-09 17:38:29+03 MacBook-Air--Main installd[5215]: installd: Starting +2025-05-09 17:38:29+03 MacBook-Air--Main installd[5215]: installd: uid=0, euid=0 +2025-05-09 17:38:34+03 MacBook-Air--Main nbagent[5218]: NBUpdateController: Using catalog URL: https://swscan.apple.com/content/catalogs/others/index-noticeboard-10.10-noticeboard-10.9-noticeboard.merged-1.sucatalog +2025-05-09 17:38:34+03 MacBook-Air--Main nbagent[5218]: MiniSoftwareUpdate: using pinning policy for swscan.apple.com: MacSoftwareUpdate (included with OS) +2025-05-09 17:38:34+03 MacBook-Air--Main nbagent[5218]: MiniSoftwareUpdate: using pinning policy for swdist.apple.com: MacSoftwareUpdate (included with OS) +2025-05-09 17:38:34+03 MacBook-Air--Main nbagent[5218]: NBUpdateController: Filtered installable products: ( + ) +2025-05-09 17:52:30+03 MacBook-Air--Main systemmigrationd[5309]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-09 17:52:30+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=5309, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 17:52:32+03 MacBook-Air--Main systemmigrationd[5309]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-09 17:53:41+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=5309, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 17:57:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 17:57:36+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 18:12:20+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 18:12:20+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 18:12:20+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 18:12:20+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 18:32:54+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 5152, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 18:33:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Untracked client disconnected: SoftwareUpdateSubscriber (type = untracked, pid = 5189, uid = 277, path = /System/Library/PrivateFrameworks/RemoteManagement.framework/XPCServices/SoftwareUpdateSubscriber.xpc/Contents/MacOS/SoftwareUpdateSubscriber) +2025-05-09 18:33:17+03 MacBook-Air--Main nbagent[5218]: NBStateController: Connection interrupted +2025-05-09 18:39:54+03 MacBook-Air--Main system_installd[7618]: installd: Starting +2025-05-09 18:39:54+03 MacBook-Air--Main system_installd[7618]: installd: uid=0, euid=0 +2025-05-09 18:39:54+03 MacBook-Air--Main installd[7616]: installd: Starting +2025-05-09 18:39:54+03 MacBook-Air--Main installd[7616]: installd: uid=0, euid=0 +2025-05-09 18:41:22+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 18:41:22+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 18:41:22+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=5152, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 18:46:25+03 MacBook-Air--Main installd[8195]: installd: Starting +2025-05-09 18:46:25+03 MacBook-Air--Main installd[8195]: installd: uid=0, euid=0 +2025-05-09 18:46:25+03 MacBook-Air--Main system_installd[8197]: installd: Starting +2025-05-09 18:46:25+03 MacBook-Air--Main system_installd[8197]: installd: uid=0, euid=0 +2025-05-09 18:48:19+03 MacBook-Air--Main Xcode[8498]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 18:48:19+03 MacBook-Air--Main Xcode[8498]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-09 18:56:06+03 MacBook-Air--Main installd[8894]: installd: Starting +2025-05-09 18:56:06+03 MacBook-Air--Main installd[8894]: installd: uid=0, euid=0 +2025-05-09 18:56:06+03 MacBook-Air--Main system_installd[8898]: installd: Starting +2025-05-09 18:56:06+03 MacBook-Air--Main system_installd[8898]: installd: uid=0, euid=0 +2025-05-09 19:13:44+03 MacBook-Air--Main installd[10008]: installd: Starting +2025-05-09 19:13:44+03 MacBook-Air--Main installd[10008]: installd: uid=0, euid=0 +2025-05-09 19:13:44+03 MacBook-Air--Main system_installd[10007]: installd: Starting +2025-05-09 19:13:44+03 MacBook-Air--Main system_installd[10007]: installd: uid=0, euid=0 +2025-05-09 19:13:44+03 MacBook-Air--Main systemmigrationd[10014]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-09 19:13:46+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=10014, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 19:13:49+03 MacBook-Air--Main systemmigrationd[10014]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-09 19:14:38+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=10014, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 19:23:51+03 MacBook-Air--Main systemmigrationd[10204]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-09 19:23:52+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=10204, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 19:23:54+03 MacBook-Air--Main systemmigrationd[10204]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-09 19:24:46+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=10204, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-09 19:28:26+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 19:28:26+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 19:28:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 19:39:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 19:39:06+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 19:39:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 19:39:06+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 19:39:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 20:09:08+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 20:09:08+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 20:09:08+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 20:09:08+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 20:11:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 20:11:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 20:11:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 20:18:35+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 20:18:35+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Posting com.apple.SoftwareUpdateNotificationManager.wakeup notification +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Waiting 5s for clients to wake up +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 13379, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:35+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Done waiting for clients to wake up +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 13379, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Hello 2AE1448B-1701-4820-B0F5-935698D2D4BC +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Updating additionalUpdateMetricEventFields: { + autoUpdate = false; + buddy = false; + commandLine = false; + installTonight = false; + mdm = false; + notification = true; + settings = false; + } +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-09 20:18:41+03 MacBook-Air--Main accessoryupdaterd[11470]: SUOSUExternalUpdateProvider: Sent available updates with ( + ) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 13379, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:41+03 MacBook-Air--Main softwareupdated[8580]: Set available third party update infos to: ( + ) +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: minorPrimaryDescriptor: (null) +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + ) +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Scan for client pid 8580 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-09 20:18:42+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Got status 200 +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Using catalog https://swscan.apple.com/content/catalogs/others/index-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'system.ioregistry.fromPath('IODeviceTree:/rom\@0').version') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:43+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: JS: 15.4.1 +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: JS: No bundle at/Applications/SafeView.app +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:44+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:45+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:45+03 MacBook-Air--Main softwareupdated[8580]: Failed to get bridge device +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: SUScan: Elapsed scan time = 4.3 +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Refreshing available updates from scan +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: Scan (f=1, d=0) completed +2025-05-09 20:18:46+03 MacBook-Air--Main softwareupdated[8580]: 0 updates found: +2025-05-09 20:37:37+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 20:37:37+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 20:37:38+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 20:38:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 20:43:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 13379, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 21:11:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:11:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:11:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 21:14:18+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 21:16:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:16:28+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:16:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 21:18:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 21:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-09 21:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:35:13+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:55:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:55:28+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:55:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:55:28+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:55:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-09 21:55:28+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-09 21:55:29+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-09 22:14:51+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 22:14:51+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 22:14:51+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=13379, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-09 22:20:37+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=3652, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/mobileassetd) +2025-05-09 22:20:37+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=19097, uid=0, installAuth=NO rights=(), transactions=0 (/usr/libexec/mobileassetd) +2025-05-09 22:20:49+03 MacBook-Air--Main installd[19133]: installd: Starting +2025-05-09 22:20:49+03 MacBook-Air--Main installd[19133]: installd: uid=0, euid=0 +2025-05-09 22:20:50+03 MacBook-Air--Main system_installd[19135]: installd: Starting +2025-05-09 22:20:50+03 MacBook-Air--Main system_installd[19135]: installd: uid=0, euid=0 + + + Disc recording log: + + Source: /Users/main/Library/Logs/DiscRecording.log + Size: 354 bytes + Last Modified: 08.05.2025, 23:03 + Recent Contents: + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk11s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk11s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk9s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk9s1) failed + + + Filesystem repair log: + + Source: /var/log/fsck_hfs.log + Size: 11 KB (11 361 bytes) + Last Modified: 09.05.2025, 18:31 + Recent Contents: +/dev/rdisk4: fsck_hfs started at Thu Feb 20 20:36:18 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Thu Feb 20 20:36:18 2025 + + +/dev/rdisk4: fsck_hfs started at Thu Feb 20 20:40:43 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Thu Feb 20 20:40:43 2025 + + +/dev/rdisk4: fsck_hfs started at Tue Apr 8 14:15:48 2025 +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Tue Apr 8 14:15:48 2025 + + +/dev/rdisk4s1: fsck_hfs started at Wed Apr 9 00:52:56 2025 +/dev/rdisk4s1: Can't open /dev/rdisk4s1: Permission denied +/dev/rdisk4s1: /dev/rdisk4s1: ** /dev/rdisk4s1 (NO WRITE) +/dev/rdisk4s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4s1: fsck_hfs completed at Wed Apr 9 00:52:56 2025 + + +/dev/rdisk5s1: fsck_hfs started at Wed Apr 9 00:53:20 2025 +/dev/rdisk5s1: Can't open /dev/rdisk5s1: Permission denied +/dev/rdisk5s1: /dev/rdisk5s1: ** /dev/rdisk5s1 (NO WRITE) +/dev/rdisk5s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk5s1: fsck_hfs completed at Wed Apr 9 00:53:20 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4s1: fsck_hfs started at Wed Apr 9 01:10:14 2025 +/dev/rdisk4s1: Can't open /dev/rdisk4s1: Permission denied +/dev/rdisk4s1: /dev/rdisk4s1: ** /dev/rdisk4s1 (NO WRITE) +/dev/rdisk4s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4s1: fsck_hfs completed at Wed Apr 9 01:10:14 2025 + + +/dev/rdisk5s1: fsck_hfs started at Wed Apr 9 01:10:18 2025 +/dev/rdisk5s1: Can't open /dev/rdisk5s1: Permission denied +/dev/rdisk5s1: /dev/rdisk5s1: ** /dev/rdisk5s1 (NO WRITE) +/dev/rdisk5s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk5s1: fsck_hfs completed at Wed Apr 9 01:10:18 2025 + + +/dev/rdisk10s2: fsck_hfs started at Wed Apr 9 12:07:45 2025 +/dev/rdisk10s2: Can't open /dev/rdisk10s2: Permission denied +/dev/rdisk10s2: /dev/rdisk10s2: ** /dev/rdisk10s2 (NO WRITE) +/dev/rdisk10s2: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk10s2: fsck_hfs completed at Wed Apr 9 12:07:45 2025 + + +/dev/rdisk14s1: fsck_hfs started at Sat Apr 12 13:15:07 2025 +/dev/rdisk14s1: Can't open /dev/rdisk14s1: Permission denied +/dev/rdisk14s1: /dev/rdisk14s1: ** /dev/rdisk14s1 (NO WRITE) +/dev/rdisk14s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk14s1: fsck_hfs completed at Sat Apr 12 13:15:07 2025 + + +/dev/rdisk15s1: fsck_hfs started at Tue Apr 15 19:34:11 2025 +/dev/rdisk15s1: Can't open /dev/rdisk15s1: Permission denied +/dev/rdisk15s1: /dev/rdisk15s1: ** /dev/rdisk15s1 (NO WRITE) +/dev/rdisk15s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk15s1: fsck_hfs completed at Tue Apr 15 19:34:11 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:12 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:12 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:13 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:13 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:24 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:24 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:24 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:24 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 20:55:41 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 20:55:41 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 20:55:41 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 20:55:41 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:25 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:25 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:25 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:25 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:29 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:29 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:29 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:29 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 13:22:46 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 13:22:46 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 13:22:46 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 13:22:46 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:07 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:07 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:08 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:08 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:09 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:09 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:09 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:09 2025 + + + + User filesystem repair log: + + Source: /Users/main/Library/logs/fsck_hfs.log + Size: 1 KB (1 094 bytes) + Last Modified: 09.05.2025, 18:31 + Recent Contents: +fsck_hfs started at Sat Apr 26 22:23:12 2025 +Can't open /dev/rdisk12s1: Permission denied +** /dev/rdisk12s1 (NO WRITE) + Executing fsck_hfs (version hfs-683.100.9). +** Checking non-journaled HFS Plus Volume. + The volume name is Yandex +** Checking extents overflow file. +** Checking catalog file. +** Checking multi-linked files. +** Checking catalog hierarchy. +** Checking extended attributes file. +** Checking volume bitmap. +** Checking volume information. +** The volume Yandex appears to be OK. +fsck_hfs completed at Sat Apr 26 22:23:12 2025 + + +fsck_hfs started at Fri May 9 18:31:07 2025 +Can't open /dev/rdisk12s1: Permission denied +** /dev/rdisk12s1 (NO WRITE) + Executing fsck_hfs (version hfs-683.100.9). +** Checking non-journaled HFS Plus Volume. + The volume name is Yandex +** Checking extents overflow file. +** Checking catalog file. +** Checking multi-linked files. +** Checking catalog hierarchy. +** Checking extended attributes file. +** Checking volume bitmap. +** Checking volume information. +** The volume Yandex appears to be OK. +fsck_hfs completed at Fri May 9 18:31:08 2025 + + + + Kernel log: + + Source: /var/log/asl + Size: Zero KB + Recent Contents: + + Wi-Fi log: + + Source: /var/log/wifi.log + Size: 1,3 MB (1 295 529 bytes) + Last Modified: 09.05.2025, 22:25 + Recent Contents: ... +Fri May 9 21:56:19.176 [airport]/484 @[1215617.840309] (CWXPCSubsystem.m:10260) WoW DISABLED (assert=no, pref=no activity=no, ps=battery (83), icloud=yes, tcpka=enabled, pno=enabled, lpas=yes) +Fri May 9 21:56:26.135 Usb Host Notification hostNotificationUSBDeviceInserted USB2.1 Hub isApple N seqNum 3757 Total 1 +Fri May 9 21:56:26.141 Usb Host Notification hostNotificationUSBDeviceInserted USB3.1 Hub isApple N seqNum 3757 Total 2 +Fri May 9 21:56:26.148 Usb Host Notification Apple80211Set: seqNum 3757 Total 2 chg 1 en0 +Fri May 9 21:56:26.149 Usb Host Notification metrics: usbChange=1, count=2, noiseDelta=-94 +Fri May 9 21:56:26.153 [airport]/484 @[1215624.817279] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215624.817221], took 0.000050 +Fri May 9 21:56:26.154 [airport]/484 @[1215624.818192] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.817981], took 0.000202 +Fri May 9 21:56:26.154 [airport]/484 @[1215624.818312] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.818286], took 0.000020 +Fri May 9 21:56:26.154 [airport]/484 @[1215624.818671] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.818647], took 0.000018 +Fri May 9 21:56:26.154 [airport]/484 @[1215624.818812] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.818793], took 0.000014 +Fri May 9 21:56:26.154 [airport]/484 @[1215624.819060] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.819039], took 0.000016 +Fri May 9 21:56:26.155 [airport]/484 @[1215624.819268] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215624.819237], took 0.000026 +Fri May 9 21:56:26.155 [airport]/484 @[1215624.819603] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.819395], took 0.000202 +Fri May 9 21:56:26.155 [airport]/484 @[1215624.819719] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.819698], took 0.000016 +Fri May 9 21:56:26.155 [airport]/484 @[1215624.820013] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.819988], took 0.000020 +Fri May 9 21:56:26.159 [airport]/484 @[1215624.823685] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215624.820603], took 0.003073 +Fri May 9 21:56:26.159 [airport]/484 @[1215624.823801] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.823766], took 0.000028 +Fri May 9 21:56:26.159 [airport]/484 @[1215624.823994] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.823964], took 0.000023 +Fri May 9 21:56:26.159 [airport]/484 @[1215624.824066] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.824032], took 0.000027 +Fri May 9 21:56:26.160 [airport]/484 @[1215624.824222] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.824094], took 0.000120 +Fri May 9 21:56:26.160 [airport]/484 @[1215624.824277] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215624.824251], took 0.000019 +Fri May 9 21:56:26.357 Usb Host Notification hostNotificationUSBDeviceInserted G102 LIGHTSYNC Gaming Mouse isApple N seqNum 3758 Total 3 +Fri May 9 21:56:26.363 Usb Host Notification Apple80211Set: seqNum 3758 Total 3 chg 1 en0 +Fri May 9 21:56:26.363 Usb Host Notification metrics: usbChange=1, count=3, noiseDelta=-94 +Fri May 9 21:56:42.329 [airport]/484 @[1215640.993323] (CWXPCSubsystem.m:10260) WoW ENABLED (assert=yes, pref=no activity=no, ps=battery (83), icloud=yes, tcpka=enabled, pno=enabled, lpas=no) +Fri May 9 21:56:42.366 [airport]/484 @[1215641.030062] (CWXPCSubsystem.m:10260) WoW DISABLED (assert=no, pref=no activity=no, ps=battery (83), icloud=yes, tcpka=enabled, pno=enabled, lpas=yes) +Fri May 9 21:56:46.379 [airport]/484 @[1215645.043373] (airportdMain.m:1730) Health check alive, checkin@[1215645.043322], count[4347] +Fri May 9 21:57:16.479 [airport]/484 @[1215675.143632] (airportdMain.m:1730) Health check alive, checkin@[1215675.143567], count[4348] +Fri May 9 21:57:39.311 [airport]/484 @[1215697.975388] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.975309], took 0.000071 +Fri May 9 21:57:39.312 [airport]/484 @[1215697.976475] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.976419], took 0.000043 +Fri May 9 21:57:39.312 [airport]/484 @[1215697.976641] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.976545], took 0.000074 +Fri May 9 21:57:39.313 [airport]/484 @[1215697.977158] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.977113], took 0.000038 +Fri May 9 21:57:39.313 [airport]/484 @[1215697.977277] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.977207], took 0.000064 +Fri May 9 21:57:39.313 [airport]/484 @[1215697.977630] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.977606], took 0.000019 +Fri May 9 21:57:39.313 [airport]/484 @[1215697.977706] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.977686], took 0.000015 +Fri May 9 21:57:39.313 [airport]/484 @[1215697.977984] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.977961], took 0.000018 +Fri May 9 21:57:39.314 [airport]/484 @[1215697.978322] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.978261], took 0.000054 +Fri May 9 21:57:39.314 [airport]/484 @[1215697.978436] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.978417], took 0.000014 +Fri May 9 21:57:39.315 [airport]/484 @[1215697.979419] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.978510], took 0.000901 +Fri May 9 21:57:39.315 [airport]/484 @[1215697.979541] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.979520], took 0.000016 +Fri May 9 21:57:39.316 [airport]/484 @[1215697.980053] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.979566], took 0.000013 +Fri May 9 21:57:39.316 [airport]/484 @[1215697.980705] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.980671], took 0.000026 +Fri May 9 21:57:39.316 [airport]/484 @[1215697.980755] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.980735], took 0.000015 +Fri May 9 21:57:39.316 [airport]/484 @[1215697.980879] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.980775], took 0.000012 +Fri May 9 21:57:39.317 [airport]/484 @[1215697.981596] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.981563], took 0.000027 +Fri May 9 21:57:39.317 [airport]/484 @[1215697.981936] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.981904], took 0.000026 +Fri May 9 21:57:39.318 [airport]/484 @[1215697.982152] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.982127], took 0.000020 +Fri May 9 21:57:39.318 [airport]/484 @[1215697.982660] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.982627], took 0.000027 +Fri May 9 21:57:39.319 [airport]/484 @[1215697.982839] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.982818], took 0.000016 +Fri May 9 21:57:39.320 [airport]/484 @[1215697.984549] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.984258], took 0.000282 +Fri May 9 21:57:39.320 [airport]/484 @[1215697.984717] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.984687], took 0.000023 +Fri May 9 21:57:39.325 [airport]/484 @[1215697.989703] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.989649], took 0.000045 +Fri May 9 21:57:39.326 [airport]/484 @[1215697.990293] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.990190], took 0.000095 +Fri May 9 21:57:39.326 [airport]/484 @[1215697.990515] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.990488], took 0.000020 +Fri May 9 21:57:39.327 [airport]/484 @[1215697.991663] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215697.990748], took 0.000908 +Fri May 9 21:57:39.327 [airport]/484 @[1215697.991803] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.991774], took 0.000024 +Fri May 9 21:57:39.327 [airport]/484 @[1215697.991854] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.991831], took 0.000016 +Fri May 9 21:57:39.327 [airport]/484 @[1215697.991898] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.991877], took 0.000015 +Fri May 9 21:57:39.327 [airport]/484 @[1215697.992081] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.992045], took 0.000029 +Fri May 9 21:57:39.328 [airport]/484 @[1215697.992211] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215697.992185], took 0.000021 +Fri May 9 21:57:46.579 [airport]/484 @[1215705.243273] (airportdMain.m:1730) Health check alive, checkin@[1215705.243204], count[4349] +Fri May 9 21:58:16.679 [airport]/484 @[1215735.344074] (airportdMain.m:1730) Health check alive, checkin@[1215735.343916], count[4350] +Fri May 9 21:58:46.780 [airport]/484 @[1215765.444955] (airportdMain.m:1730) Health check alive, checkin@[1215765.444905], count[4351] +Fri May 9 21:59:16.882 [airport]/484 @[1215795.546226] (airportdMain.m:1730) Health check alive, checkin@[1215795.546157], count[4352] +Fri May 9 21:59:46.982 [airport]/484 @[1215825.647050] (airportdMain.m:1730) Health check alive, checkin@[1215825.646770], count[4353] +Fri May 9 22:00:17.083 [airport]/484 @[1215855.747944] (airportdMain.m:1730) Health check alive, checkin@[1215855.747895], count[4354] +Fri May 9 22:00:47.185 [airport]/484 @[1215885.849517] (airportdMain.m:1730) Health check alive, checkin@[1215885.849477], count[4355] +Fri May 9 22:01:15.392 [airport]/484 @[1215914.057169] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.057087], took 0.000068 +Fri May 9 22:01:15.393 [airport]/484 @[1215914.057670] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.057604], took 0.000051 +Fri May 9 22:01:15.394 [airport]/484 @[1215914.058364] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.058335], took 0.000024 +Fri May 9 22:01:15.394 [airport]/484 @[1215914.058449] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.058431], took 0.000013 +Fri May 9 22:01:15.394 [airport]/484 @[1215914.058907] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.058876], took 0.000026 +Fri May 9 22:01:15.395 [airport]/484 @[1215914.059705] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.059104], took 0.000594 +Fri May 9 22:01:15.395 [airport]/484 @[1215914.060090] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.060064], took 0.000020 +Fri May 9 22:01:15.396 [airport]/484 @[1215914.060309] (airportProcessCommand.m:1715) Processed events, count[ 3], @[1215914.060279], took 0.000025 +Fri May 9 22:01:15.396 [airport]/484 @[1215914.060601] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.060504], took 0.000092 +Fri May 9 22:01:15.396 [airport]/484 @[1215914.060734] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.060708], took 0.000020 +Fri May 9 22:01:15.399 [airport]/484 @[1215914.064127] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.063675], took 0.000438 +Fri May 9 22:01:15.406 [airport]/484 @[1215914.071128] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.064390], took 0.006729 +Fri May 9 22:01:15.407 [airport]/484 @[1215914.071472] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.071260], took 0.000206 +Fri May 9 22:01:15.407 [airport]/484 @[1215914.071719] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.071542], took 0.000170 +Fri May 9 22:01:15.407 [airport]/484 @[1215914.071832] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.071800], took 0.000026 +Fri May 9 22:01:15.407 [airport]/484 @[1215914.071891] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.071864], took 0.000022 +Fri May 9 22:01:15.407 [airport]/484 @[1215914.071937] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.071915], took 0.000016 +Fri May 9 22:01:15.408 [airport]/484 @[1215914.072531] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.072500], took 0.000025 +Fri May 9 22:01:15.408 [airport]/484 @[1215914.072986] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1215914.072932], took 0.000048 +Fri May 9 22:01:15.408 [airport]/484 @[1215914.073069] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.073042], took 0.000021 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076457] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.073261], took 0.003185 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076650] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.076605], took 0.000037 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076704] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.076680], took 0.000018 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076750] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.076728], took 0.000016 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076794] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.076773], took 0.000015 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.076859] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.076831], took 0.000021 +Fri May 9 22:01:15.412 [airport]/484 @[1215914.077044] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1215914.077015], took 0.000022 +Fri May 9 22:01:17.284 [airport]/484 @[1215915.948930] (airportdMain.m:1730) Health check alive, checkin@[1215915.948897], count[4356] +Fri May 9 22:01:47.384 [airport]/484 @[1215946.048782] (airportdMain.m:1730) Health check alive, checkin@[1215946.048746], count[4357] +Fri May 9 22:02:17.482 [airport]/484 @[1215976.147182] (airportdMain.m:1730) Health check alive, checkin@[1215976.147152], count[4358] +Fri May 9 22:02:47.562 [airport]/484 @[1216006.227252] (airportdMain.m:1730) Health check alive, checkin@[1216006.227208], count[4359] +Fri May 9 22:03:17.675 [airport]/484 @[1216036.339668] (airportdMain.m:1730) Health check alive, checkin@[1216036.336118], count[4360] +Fri May 9 22:03:47.687 [airport]/484 @[1216066.352405] (airportdMain.m:1730) Health check alive, checkin@[1216066.352354], count[4361] +Fri May 9 22:04:17.786 [airport]/484 @[1216096.450883] (airportdMain.m:1730) Health check alive, checkin@[1216096.450816], count[4362] +Fri May 9 22:04:47.840 [airport]/484 @[1216126.504556] (airportdMain.m:1730) Health check alive, checkin@[1216126.504524], count[4363] +Fri May 9 22:05:17.842 [airport]/484 @[1216156.507357] (airportdMain.m:1730) Health check alive, checkin@[1216156.507254], count[4364] +Fri May 9 22:05:47.940 [airport]/484 @[1216186.605192] (airportdMain.m:1730) Health check alive, checkin@[1216186.605159], count[4365] +Fri May 9 22:06:17.942 [airport]/484 @[1216216.607172] (airportdMain.m:1730) Health check alive, checkin@[1216216.607137], count[4366] +Fri May 9 22:06:48.040 [airport]/484 @[1216246.705379] (airportdMain.m:1730) Health check alive, checkin@[1216246.705324], count[4367] +Fri May 9 22:07:18.143 [airport]/484 @[1216276.808163] (airportdMain.m:1730) Health check alive, checkin@[1216276.807983], count[4368] +Fri May 9 22:07:48.244 [airport]/484 @[1216306.909433] (airportdMain.m:1730) Health check alive, checkin@[1216306.909308], count[4369] +Fri May 9 22:08:18.345 [airport]/484 @[1216337.010001] (airportdMain.m:1730) Health check alive, checkin@[1216337.009929], count[4370] +Fri May 9 22:08:27.477 [airport]/484 @[1216346.142503] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.142386], took 0.000098 +Fri May 9 22:08:27.478 [airport]/484 @[1216346.142715] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216346.142627], took 0.000059 +Fri May 9 22:08:27.478 [airport]/484 @[1216346.143092] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.143006], took 0.000068 +Fri May 9 22:08:27.478 [airport]/484 @[1216346.143579] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.143436], took 0.000137 +Fri May 9 22:08:27.479 [airport]/484 @[1216346.143702] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.143683], took 0.000014 +Fri May 9 22:08:27.479 [airport]/484 @[1216346.143887] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.143858], took 0.000023 +Fri May 9 22:08:27.479 [airport]/484 @[1216346.144030] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.144011], took 0.000015 +Fri May 9 22:08:27.479 [airport]/484 @[1216346.144181] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.144162], took 0.000014 +Fri May 9 22:08:27.479 [airport]/484 @[1216346.144489] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.144439], took 0.000038 +Fri May 9 22:08:27.480 [airport]/484 @[1216346.144956] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.144821], took 0.000128 +Fri May 9 22:08:27.480 [airport]/484 @[1216346.145083] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.145060], took 0.000017 +Fri May 9 22:08:27.481 [airport]/484 @[1216346.145955] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.145223], took 0.000723 +Fri May 9 22:08:27.481 [airport]/484 @[1216346.146280] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.146032], took 0.000187 +Fri May 9 22:08:27.481 [airport]/484 @[1216346.146395] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.146368], took 0.000021 +Fri May 9 22:08:27.481 [airport]/484 @[1216346.146457] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.146422], took 0.000029 +Fri May 9 22:08:27.482 [airport]/484 @[1216346.146964] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.146882], took 0.000074 +Fri May 9 22:08:27.486 [airport]/484 @[1216346.151041] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.150501], took 0.000516 +Fri May 9 22:08:27.486 [airport]/484 @[1216346.151500] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.151431], took 0.000058 +Fri May 9 22:08:27.489 [airport]/484 @[1216346.153950] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216346.153885], took 0.000055 +Fri May 9 22:08:27.489 [airport]/484 @[1216346.154285] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.154241], took 0.000032 +Fri May 9 22:08:27.489 [airport]/484 @[1216346.154465] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.154421], took 0.000034 +Fri May 9 22:08:27.492 [airport]/484 @[1216346.157538] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.154994], took 0.002446 +Fri May 9 22:08:27.494 [airport]/484 @[1216346.158677] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.158632], took 0.000037 +Fri May 9 22:08:27.494 [airport]/484 @[1216346.159058] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.159030], took 0.000022 +Fri May 9 22:08:27.494 [airport]/484 @[1216346.159137] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.159114], took 0.000017 +Fri May 9 22:08:27.494 [airport]/484 @[1216346.159448] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.159411], took 0.000018 +Fri May 9 22:08:27.496 [airport]/484 @[1216346.161384] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.161287], took 0.000090 +Fri May 9 22:08:27.497 [airport]/484 @[1216346.161861] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216346.161819], took 0.000035 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.162740] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.161972], took 0.000758 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.162850] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.162821], took 0.000021 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.162923] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.162891], took 0.000021 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.162997] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.162958], took 0.000020 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.163186] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216346.163105], took 0.000075 +Fri May 9 22:08:27.498 [airport]/484 @[1216346.163508] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216346.163462], took 0.000038 +Fri May 9 22:08:48.350 [airport]/484 @[1216367.015198] (airportdMain.m:1730) Health check alive, checkin@[1216367.015128], count[4371] +Fri May 9 22:09:18.454 [airport]/484 @[1216397.119096] (airportdMain.m:1730) Health check alive, checkin@[1216397.119051], count[4372] +Fri May 9 22:09:48.552 [airport]/484 @[1216427.217351] (airportdMain.m:1730) Health check alive, checkin@[1216427.217301], count[4373] +Fri May 9 22:10:11.828 [airport]/484 @[1216450.493250] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1216450.395427], took 0.097808 +Fri May 9 22:10:11.839 [airport]/484 @[1216450.504662] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1216450.496073], took 0.008574 +Fri May 9 22:10:11.846 [airport]/484 @[1216450.511485] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1216450.505918], took 0.005558 +Fri May 9 22:10:11.847 [airport]/484 @[1216450.512386] (airportProcessCommand.m:1715) Processed events, count[ 19], @[1216450.511908], took 0.000472 +Fri May 9 22:10:14.189 [airport]/484 @[1216452.853991] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Fri May 9 22:10:14.189 [airport]/484 @[1216452.854077] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Fri May 9 22:10:14.189 [airport]/484 @[1216452.854169] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Fri May 9 22:10:14.189 [airport]/484 @[1216452.854393] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216452.853949], took 0.000434 +Fri May 9 22:10:18.557 [airport]/484 @[1216457.222451] (airportdMain.m:1730) Health check alive, checkin@[1216457.222360], count[4374] +Fri May 9 22:10:33.750 [airport]/484 @[1216472.415627] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1216472.409413], took 0.006201 +Fri May 9 22:10:48.560 [airport]/484 @[1216487.225240] (airportdMain.m:1730) Health check alive, checkin@[1216487.225175], count[4375] +Fri May 9 22:11:18.643 [airport]/484 @[1216517.325062] (airportdMain.m:1730) Health check alive, checkin@[1216517.325008], count[4376] +Fri May 9 22:11:48.739 [airport]/484 @[1216547.425226] (airportdMain.m:1730) Health check alive, checkin@[1216547.425184], count[4377] +Fri May 9 22:12:18.839 [airport]/484 @[1216577.525327] (airportdMain.m:1730) Health check alive, checkin@[1216577.525270], count[4378] +Fri May 9 22:12:48.939 [airport]/484 @[1216607.625215] (airportdMain.m:1730) Health check alive, checkin@[1216607.625162], count[4379] +Fri May 9 22:13:19.038 [airport]/484 @[1216637.724383] (airportdMain.m:1730) Health check alive, checkin@[1216637.724356], count[4380] +Fri May 9 22:13:49.136 [airport]/484 @[1216667.822896] (airportdMain.m:1730) Health check alive, checkin@[1216667.822847], count[4381] +Fri May 9 22:14:19.404 [airport]/484 @[1216698.090606] (airportdMain.m:1730) Health check alive, checkin@[1216698.090570], count[4382] +Fri May 9 22:14:49.579 [airport]/484 @[1216728.266502] (airportdMain.m:1730) Health check alive, checkin@[1216728.266468], count[4383] +Fri May 9 22:15:20.496 [airport]/484 @[1216759.183027] (airportdMain.m:1730) Health check alive, checkin@[1216759.182999], count[4384] +Fri May 9 22:15:50.625 [airport]/484 @[1216789.312571] (airportdMain.m:1730) Health check alive, checkin@[1216789.312506], count[4385] +Fri May 9 22:16:20.725 [airport]/484 @[1216819.413106] (airportdMain.m:1730) Health check alive, checkin@[1216819.413032], count[4386] +Fri May 9 22:16:50.826 [airport]/484 @[1216849.514000] (airportdMain.m:1730) Health check alive, checkin@[1216849.513966], count[4387] +Fri May 9 22:17:20.927 [airport]/484 @[1216879.614617] (airportdMain.m:1730) Health check alive, checkin@[1216879.614499], count[4388] +Fri May 9 22:17:46.139 [airport]/484 @[1216904.826680] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.826616], took 0.000055 +Fri May 9 22:17:46.139 [airport]/484 @[1216904.827071] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.826942], took 0.000121 +Fri May 9 22:17:46.139 [airport]/484 @[1216904.827473] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.827196], took 0.000269 +Fri May 9 22:17:46.140 [airport]/484 @[1216904.827607] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.827528], took 0.000066 +Fri May 9 22:17:46.140 [airport]/484 @[1216904.828392] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.828357], took 0.000028 +Fri May 9 22:17:46.141 [airport]/484 @[1216904.828880] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.828851], took 0.000022 +Fri May 9 22:17:46.141 [airport]/484 @[1216904.829235] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.829209], took 0.000021 +Fri May 9 22:17:46.141 [airport]/484 @[1216904.829497] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.829461], took 0.000030 +Fri May 9 22:17:46.143 [airport]/484 @[1216904.830747] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.830702], took 0.000039 +Fri May 9 22:17:46.147 [airport]/484 @[1216904.834637] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.831106], took 0.002439 +Fri May 9 22:17:46.147 [airport]/484 @[1216904.835135] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.834724], took 0.000397 +Fri May 9 22:17:46.149 [airport]/484 @[1216904.837118] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.837021], took 0.000028 +Fri May 9 22:17:46.150 [airport]/484 @[1216904.838560] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.838529], took 0.000026 +Fri May 9 22:17:46.152 [airport]/484 @[1216904.839650] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.839624], took 0.000021 +Fri May 9 22:17:46.152 [airport]/484 @[1216904.840392] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.840357], took 0.000030 +Fri May 9 22:17:46.153 [airport]/484 @[1216904.840962] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.840920], took 0.000036 +Fri May 9 22:17:46.154 [airport]/484 @[1216904.841814] (airportProcessCommand.m:1715) Processed events, count[ 3], @[1216904.841648], took 0.000160 +Fri May 9 22:17:46.154 [airport]/484 @[1216904.842025] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842004], took 0.000016 +Fri May 9 22:17:46.154 [airport]/484 @[1216904.842112] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842093], took 0.000015 +Fri May 9 22:17:46.154 [airport]/484 @[1216904.842397] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842377], took 0.000015 +Fri May 9 22:17:46.154 [airport]/484 @[1216904.842583] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842563], took 0.000014 +Fri May 9 22:17:46.155 [airport]/484 @[1216904.842819] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842799], took 0.000015 +Fri May 9 22:17:46.155 [airport]/484 @[1216904.842908] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.842886], took 0.000018 +Fri May 9 22:17:46.155 [airport]/484 @[1216904.843094] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.843064], took 0.000025 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.843997] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.843244], took 0.000595 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.844085] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.844063], took 0.000016 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.844135] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1216904.844108], took 0.000022 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.844175] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.844156], took 0.000013 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.844210] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.844193], took 0.000012 +Fri May 9 22:17:46.156 [airport]/484 @[1216904.844404] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1216904.844385], took 0.000014 +Fri May 9 22:17:50.931 [airport]/484 @[1216909.618716] (airportdMain.m:1730) Health check alive, checkin@[1216909.616977], count[4389] +Fri May 9 22:18:21.028 [airport]/484 @[1216939.716427] (airportdMain.m:1730) Health check alive, checkin@[1216939.716396], count[4390] +Fri May 9 22:18:51.127 [airport]/484 @[1216969.814997] (airportdMain.m:1730) Health check alive, checkin@[1216969.814960], count[4391] +Fri May 9 22:19:21.230 [airport]/484 @[1216999.918753] (airportdMain.m:1730) Health check alive, checkin@[1216999.914874], count[4392] +Fri May 9 22:19:51.561 [airport]/484 @[1217030.249199] (airportdMain.m:1730) Health check alive, checkin@[1217030.249173], count[4393] +Fri May 9 22:20:21.793 [airport]/484 @[1217060.481513] (airportdMain.m:1730) Health check alive, checkin@[1217060.481482], count[4394] +Fri May 9 22:20:52.180 [airport]/484 @[1217090.868936] (airportdMain.m:1730) Health check alive, checkin@[1217090.865899], count[4395] +Fri May 9 22:21:22.286 [airport]/484 @[1217120.974993] (airportdMain.m:1730) Health check alive, checkin@[1217120.974947], count[4396] +Fri May 9 22:21:38.168 [airport]/484 @[1217136.857027] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1217136.736366], took 0.120633 +Fri May 9 22:21:38.176 [airport]/484 @[1217136.865482] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1217136.861234], took 0.004232 +Fri May 9 22:21:38.187 [airport]/484 @[1217136.875656] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1217136.869970], took 0.005668 +Fri May 9 22:21:38.202 [airport]/484 @[1217136.891490] (airportProcessCommand.m:1715) Processed events, count[ 19], @[1217136.876518], took 0.014959 +Fri May 9 22:21:39.763 [airport]/484 @[1217138.452567] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Fri May 9 22:21:39.763 [airport]/484 @[1217138.452653] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Fri May 9 22:21:39.764 [airport]/484 @[1217138.452792] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Fri May 9 22:21:39.764 [airport]/484 @[1217138.453025] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1217138.452461], took 0.000552 +Fri May 9 22:21:52.287 [airport]/484 @[1217150.976155] (airportdMain.m:1730) Health check alive, checkin@[1217150.976090], count[4397] +Fri May 9 22:22:22.322 [airport]/484 @[1217181.011601] (airportdMain.m:1730) Health check alive, checkin@[1217181.011564], count[4398] +Fri May 9 22:22:52.419 [airport]/484 @[1217211.108476] (airportdMain.m:1730) Health check alive, checkin@[1217211.108438], count[4399] +Fri May 9 22:23:22.463 [airport]/484 @[1217241.153096] (airportdMain.m:1730) Health check alive, checkin@[1217241.149969], count[4400] +Fri May 9 22:23:52.560 [airport]/484 @[1217271.249677] (airportdMain.m:1730) Health check alive, checkin@[1217271.249594], count[4401] +Fri May 9 22:24:22.635 [airport]/484 @[1217301.325211] (airportdMain.m:1730) Health check alive, checkin@[1217301.325179], count[4402] +Fri May 9 22:24:52.736 [airport]/484 @[1217331.426169] (airportdMain.m:1730) Health check alive, checkin@[1217331.426114], count[4403] +Fri May 9 22:25:22.737 [airport]/484 @[1217361.427473] (airportdMain.m:1730) Health check alive, checkin@[1217361.427165], count[4404] + + + NVRAM contents: + + Source: /usr/sbin/nvram -xp + Size: 4 KB (3 932 bytes) + Last Modified: 09.05.2025, 22:25 + Recent Contents: + + + + BluetoothInfo + + DwA= + + BluetoothUHEDevices + + xIT8CzypAAQ= + + IDInstallerDataV2 + + 4AticGxpc3QwMKEB1QIDBAUGBwIICQpRMVMxMDMABOAVMFE2UTBWMjRDMTAxVnBhc3Nl + ZF8QD3NvZnR3YXJlIHVwZGF0ZQAg4ABFMjYzCAoVFxsfISMqMUMAEAHOAQEA8p4LAPbj + AABKBgAAAAAAAAA= + + LocationServicesEnabled + + AQ== + + SystemAudioVolume + + gA== + + SystemAudioVolumeExtension + + /38= + + auto-boot + + dHJ1ZQ== + + bluetoothExternalDongleFailed + + AA== + + bluetoothInternalControllerInfo + + AAAAAAAAAADEhPwLPKk= + + boot-volume + + RUY1NzM0N0MtMDAwMC1BQTExLUFBMTEtMDAzMDY1NDNFQ0FDOjU1RTAyQzBELTU1OTEt + NUY0Ri1CREY0LUMzQTQyNTE5MEZGRTpDNkFEQjg0MS0yOTA3LTQyMUYtQjMzRS1GNzYz + M0MwNjQyOEQ= + + bootdelay + + MA== + + display-crossbar0 + + AAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + fmm-computer-name + + TWFjQm9vayBBaXLCoOKAlCBNYWlu + + fmm-mobileme-token-FMM + + YnBsaXN0MDDeAQIDBAUGBwgJCgsMDQ4PEBcYDxkaDxscHR4fIV8QD3VucmVnaXN0ZXJT + dGF0ZVh1c2VySW5mb1lhdXRoVG9rZW5ecm9vdFZvbHVtZVVVSUReZGlzYWJsZUNvbnRl + eHRWdXNlcmlkXxAQbGFzdElkZW50aXR5VGltZV1lbmFibGVDb250ZXh0WHVzZXJuYW1l + WHBlcnNvbklEV2FkZFRpbWVUZ3VpZF8QEmVuYWJsZWREYXRhY2xhc3Nlc18QE2RhdGFj + bGFzc1Byb3BlcnRpZXMQANMREhMUFRZfEBVJblVzZU93bmVyRGlzcGxheU5hbWVfEBNJ + blVzZU93bmVyRmlyc3ROYW1lXxASSW5Vc2VPd25lckxhc3ROYW1lbAQUBDAEPQQ4BDsA + IAQaBDAEPwQ9BDgEOmUEFAQwBD0EOAQ7ZgQaBDAEPwQ9BDgEOl8QzEVBQUdBQUFBQkx3 + SUFBQUFBR2YxbldjUkRtZHpMbWxqYkc5MVpDNWhkWFJvdlFEWS1va29UTE9fMk4xSExS + NlFEMW43ZFltbm9uZUc5V2ZaWDdWNTRVY2RCY29oRk9sanZheXJPU0VDbTR0bWVVM1ln + TDk1VG5zeEkxYmtLTkhjcU1VNlZMWnE0MWQ5SGVRMEVEN1BlMFhqLS1FWjVkWEFtSi0w + Q0VfVmp2NHVJUmZMZFRMZ1FqSDFPWURoRGhmUnhJQTZwQWp2ZWd+fl8QJEQ5NDJBNjc3 + LUREMTYtNDNDNC04MjNCLUU5OTVFNDRDRDZBRBEB9SNB2f8EjASq+F8QFGthcG5pay5k + YW5AZ21haWwuY29tWzIxODQ2NTk2NjUwI0HZ/Wdh8OQ2XxAkOUE5MzNDN0EtODdBNC00 + RkY0LThBQjctNjg5NkUyMEU5RjA0oSBfECFjb20uYXBwbGUuRGF0YWNsYXNzLkRldmlj + ZUxvY2F0b3LRICLVIyQlJicoKSorLFZhcHNFbnZYaG9zdG5hbWVdaWRzSWRlbnRpZmll + clZzY2hlbWVdYXV0aE1lY2hhbmlzbVpwcm9kdWN0aW9uXxAUcDEwMS1mbWlwLmljbG91 + ZC5jb21fECREMDU4NzAxQy1GMEY2LTQzNjItQTVCRS00MDcyQzQ4OUMzQThVaHR0cHNV + dG9rZW4ACAAlADcAQABKAFkAaABvAIIAkACZAKIAqgCvAMQA2gDcAOMA+wERASYBPwFK + AVcCJgJNAlACWQJwAnwChQKsAq4C0gLVAuAC5wLwAv4DBQMTAx4DNQNcA2IAAAAAAAAC + AQAAAAAAAAAtAAAAAAAAAAAAAAAAAAADaA== + + fmm-mobileme-token-FMM-BridgeHasAccount + + QnJpZGdlSGFzQWNjb3VudFZhbHVl + + lts-persistance + + AwAAAE4FAAABAAAAAwAAAFq1kFFrkkpBnKlnKAG5SkGCJTDWfaVCQQAAAAAAAAAAAAAA + AA== + + ota-updateType + + aW5jcmVtZW50YWw= + + prev-lang:kbd + + cnU6MjUy + + upgrade-boot-volume + + RUY1NzM0N0MtMDAwMC1BQTExLUFBMTEtMDAzMDY1NDNFQ0FDOjU1RTAyQzBELTU1OTEt + NUY0Ri1CREY0LUMzQTQyNTE5MEZGRTo1RjkyMzRDRi1DN0Y0LTQ5NkYtQjVGNC02NDZD + QTI1MzcxNTc= + + usbc,version,rid0 + + AGMwAAoA + + usbc,version,rid5 + + AGMwAAgA + + wlancprops + + AQF1BFdMTVQIJBEAAAAAAAACQzAHZG5pZXBlcgM0LjcGUUVmAAHo + + + + + + IORegistry contents: + + Source: /usr/sbin/ioreg -lxw550 + Size: 2,4 MB (2 403 116 bytes) + Last Modified: 09.05.2025, 22:25 + Recent Contents: +-o Root + | { + | "IOKitBuildVersion" = "Darwin Kernel Version 24.4.0: Fri Apr 11 18:34:14 PDT 2025; root:xnu-11417.101.15~117/RELEASE_ARM64_T8122" + | "OS Build Version" = "24E263" + | "OSKernelCPUSubtype" = 0xffffffffc0000002 + | "OSKernelCPUType" = 0x100000c + | "OSPrelinkKextCount" = 0x5 + | "IORegistryPlanes" = {"IOPort"="IOPort","IOPower"="IOPower","IOService"="IOService","IOAccessory"="IOAccessory","IOUSB"="IOUSB","CoreCapture"="CoreCapture","WiFiDKCoreCapture"="WiFiDKCoreCapture","IODeviceTree"="IODeviceTree"} + | "IOConsoleLocked" = No + | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kSCSecuritySessionID"=0x186ab,"kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionIDKey"=0x101,"kCGSSessionUserNameKey"="test","kCGSSessionGroupIDKey"=0x14,"CGSSessionUniqueSessionUUID"="2378D763-CF6F-469B-90F8-CABA378BE3A9","kCGSessionLongUserNameKey"="main","kCGSSessionAuditIDKey"=0x186ab,"kCGSSessionLoginwindowSafeLogin"=No,"kCGSSessionUserIDKey"=0x1f5}) + | "IOKitDiagnostics" = {"Instance allocation"=0x16835a0,"Container allocation"=0x1500ce9,"Pageable allocation"=0x1e11b0000,"Classes"={"AppleJPEGWrapperControlV8"=0x2,"KDISecondaryEncoding"=0x0,"RTBuddyFirmwareBundle"=0x0,"ApplePMPThermal"=0x0,"IOSkywalkPacketPoller"=0x0,"IOGPUKernelMappedMemory"=0x1,"IOPMPowerStateQueue"=0x1,"IOAVBStreamCaptureUserClient"=0x0,"AppleSPUVD6287"=0x0,"IOPMServiceInterestNotifier"=0xad,"IosaEnhancementPipeUnitMSR9"=0x0,"AppleConvergedIPCDevice"=0x1,"IOPerfControlWorkContext"=0x7b,"IOAVService"=0x0,"IOBlockStora$ + | } + | + +-o J613AP + | { + | "IOPolledInterface" = "AppleARMWatchdogTimerHibernateHandler is not serializable" + | "#address-cells" = <02000000> + | "AAPL,phandle" = <01000000> + | "serial-number" = <4639393258303057524a00000000000000000000000000000000000000000000> + | "IOBusyInterest" = "IOCommand is not serializable" + | "target-type" = <4a36313300> + | "country-of-origin" = <43484e> + | "platform-name" = <7438313232000000000000000000000000000000000000000000000000000000> + | "name" = <6465766963652d7472656500> + | "secure-root-prefix" = <6d6400> + | "manufacturer" = <4170706c6520496e632e00> + | "region-info" = <4c4c2f4100000000000000000000000000000000000000000000000000000000> + | "target-sub-type" = <4a363133415000> + | "compatible" = <4a3631334150004d616331352c3132004170706c6541524d00> + | "config-number" = <00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | "IOPlatformSerialNumber" = "F992X00WRJ" + | "regulatory-model-number" = <4133313133000000000000000000000000000000000000000000000000000000> + | "time-stamp" = <467269204170722031312031383a32343a313920504454203230323500> + | "clock-frequency" = <00366e01> + | "model" = <4d616331352c313200> + | "mlb-serial-number" = <4330324844563030315133303030304641510000000000000000000000000000> + | "model-number" = <4d43384a34000000000000000000000000000000000000000000000000000000> + | "device-tree-tag" = <456d62656464656444657669636554726565732d393734372e3130312e3200> + | "IOConsoleSecurityInterest" = "IOCommand is not serializable" + | "IONWInterrupts" = "IONWInterrupts" + | "model-config" = <4943543b4d6f5045443d307838463234424439364132343830363645364438434332394434414539344543333243384544413737> + | "device_type" = <626f6f74726f6d00> + | "#size-cells" = <02000000> + | "IOPlatformUUID" = "EBBBA7A3-C701-55D7-9490-A651759B5894" + | } + | + +-o options + | | { + | | "BluetoothInfo" = <0f00> + | | "fmm-mobileme-token-FMM" = <62706c6973743030de0102030405060708090a0b0c0d0e0f1017180f191a0f1b1c1d1e1f215f100f756e726567697374657253746174655875736572496e666f5961757468546f6b656e5e726f6f74566f6c756d65555549445e64697361626c65436f6e74657874567573657269645f10106c6173744964656e7469747954696d655d656e61626c65436f6e7465787458757365726e616d6558706572736f6e49445761646454696d6554677569645f1012656e61626c656444617461636c61737365735f101364617461636c61737350726f706572746965731000d31112131415165f1015496e5573654f776e6572446973706c61794e616d655f1013496$ + | | "IDInstallerDataV2" = + | | "prev-lang:kbd" = <72753a323532> + | | "LocationServicesEnabled" = <01> + | | "fmm-mobileme-token-FMM-BridgeHasAccount" = <4272696467654861734163636f756e7456616c7565> + | | "boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a43364144423834312d323930372d343231462d423333452d463736333343303634323844> + | | "lts-persistance" = <030000004e05000001000000030000005ab590516b924a419ca9672801b94a41822530d67da54241000000000000000000000000> + | | "usbc,version,rid5" = <006330000800> + | | "upgrade-boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a35463932333443462d433746342d343936462d423546342d363436434132353337313537> + | | "fmm-computer-name" = <4d6163426f6f6b20416972c2a0e28094204d61696e> + | | "SystemAudioVolumeExtension" = + | | "bluetoothExternalDongleFailed" = <00> + | | "wlancprops" = <01017504574c4d5408241100000000000002433007646e696570657203342e37065145660001e8> + | | "auto-boot" = <74727565> + | | "BluetoothUHEDevices" = + | | "ota-updateType" = <696e6372656d656e74616c> + | | "display-crossbar0" = <0000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | "bootdelay" = <30> + | | "SystemAudioVolume" = <80> + | | "usbc,version,rid0" = <006330000a00> + | | "bluetoothInternalControllerInfo" = <0000000000000000c484fc0b3ca9> + | | } + | | + | +-o IODTNVRAMDiags + | | { + | | "SystemUsed" = 0x135d + | | "Version" = 0x3 + | | "Generation" = 0x335 + | | "Stats" = {"02:LocationServicesEnabled"={"Read"=0x3,"Init"=0xfffffe7b063e030f,"Size"=0xfffffe7b063e030f,"Present"=Yes},"02:IOPlatformSleepAction"={"Present"=No,"Read"=0x2},"02:BaseSystemAccessibilityFeatures"={"Present"=No,"Read"=0x1},"02:ota-retry-uptime"={"Present"=No,"Read"=0xb},"02:restore-retry-warnings"={"Present"=No,"Read"=0xb},"02:usbc,version,rid5"={"Init"=0xfffffe7b063e0eac,"Present"=Yes,"Size"=0xfffffe7b063e0eac},"02:preferred-count"={"Present"=No,"Read"=0x2},"02:usbc,version,rid0"={"Init"=0xfffffe7b063e0e70,"Present"=Ye$ + | | "CommonUsed" = 0x40d + | | } + | | + | +-o IODTNVRAMPlatformNotifier + | | { + | | "IOPlatformWakeAction" = 0x3e8 + | | } + | | + | +-o options-system + | | { + | | "ota-updateType" = <696e6372656d656e74616c> + | | "auto-boot" = <74727565> + | | "lts-persistance" = <030000004e05000001000000030000005ab590516b924a419ca9672801b94a41822530d67da54241000000000000000000000000> + | | "boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a43364144423834312d323930372d343231462d423333452d463736333343303634323844> + | | "wlancprops" = <01017504574c4d5408241100000000000002433007646e696570657203342e37065145660001e8> + | | "fmm-mobileme-token-FMM" = <62706c6973743030de0102030405060708090a0b0c0d0e0f1017180f191a0f1b1c1d1e1f215f100f756e726567697374657253746174655875736572496e666f5961757468546f6b656e5e726f6f74566f6c756d65555549445e64697361626c65436f6e74657874567573657269645f10106c6173744964656e7469747954696d655d656e61626c65436f6e7465787458757365726e616d6558706572736f6e49445761646454696d6554677569645f1012656e61626c656444617461636c61737365735f101364617461636c61737350726f706572746965731000d31112131415165f1015496e5573654f776e6572446973706c61794e616d655f10134$ + | | "BluetoothInfo" = <0f00> + | | "fmm-mobileme-token-FMM-BridgeHasAccount" = <4272696467654861734163636f756e7456616c7565> + | | "bootdelay" = <30> + | | "prev-lang:kbd" = <72753a323532> + | | "SystemAudioVolumeExtension" = + | | "upgrade-boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a35463932333443462d433746342d343936462d423546342d363436434132353337313537> + | | "BluetoothUHEDevices" = + | | "fmm-computer-name" = <4d6163426f6f6b20416972c2a0e28094204d61696e> + | | "SystemAudioVolume" = <80> + | | } + | | + | +-o options-common + | { + | "bluetoothInternalControllerInfo" = <0000000000000000c484fc0b3ca9> + | "IDInstallerDataV2" = + | "usbc,version,rid5" = <006330000800> + | "usbc,version,rid0" = <006330000a00> + | "LocationServicesEnabled" = <01> + | "display-crossbar0" = <0000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | "bluetoothExternalDongleFailed" = <00> + | } + | + +-o AppleARMPE + | | { + | | "IOClass" = "AppleARMPE" + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformExpertDevice" + | | "IOProbeScore" = 0x3e8 + | | "IONameMatch" = "AppleARM" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IOPlatformMaxBusDelay" = (0xffffffffffffffff,0x0) + | | "IONameMatched" = "AppleARM" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "Platform Memory Ranges" = (0x0,0xffffffff) + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOFunctionParent00000001" = <> + | | } + | | + | +-o IOSystemStateNotification + | | { + | | "com.apple.iokit.pm.sleepdescription" = {"com.apple.iokit.pm.sleepreason"="Sleep Service Back to Sleep","com.apple.iokit.pm.hibernatestate"=<00000000>} + | | "com.apple.iokit.pm.wakedescription" = {"com.apple.iokit.pm.wakereason"="smc.70070000 lid SMC.OutboxNotEmpty","com.apple.iokit.pm.wakedescription.continuous-time-offset"=0x0} + | | "com.apple.iokit.pm.powersourcedescription" = {"com.apple.iokit.pm.acattached"=No} + | | } + | | + | +-o IOPMrootDomain + | | | { + | | | "Wake Type" = "UserActivity Assertion" + | | | "IOPMUserTriggeredFullWake" = Yes + | | | "Supported Features" = {"WakeByCalendarDate"=0x1f70007,"MaintenanceWakeCalendarDate"=0x1f80007,"SleepServiceWakeCalendarKey"=0x1f90007,"PowerByCalendarDate"=0x1fa0007,"PowerRelativeToShutdown"=0x1fc0007,"WakeOnMagicPacket"=0x1fe0007,"WakeRelativeToSleep"=0x1fb0007,"AdaptiveDimming"=0x1f60007,"Hibernation"=0x1f50007} + | | | "IOPreviewBuffer" = ({"address"=0xfffffe8090ce4000,"length"=0x1054000}) + | | | "DriverPMAssertionsDetailed" = ({"Assertions"=0x1,"ModifiedTime"=0x681ccf1b000570d8,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f4},{"Assertions"=0x1,"ModifiedTime"=0x680bc35f00080d79,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f5},{"Assertions"=0x1,"ModifiedTime"=0x680bc35f0007da30,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f6},{"Assertions"$ + | | | "IOHibernateState" = <00000000> + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x4,"CurrentPowerState"=0x4,"CapabilityFlags"=0x2,"MaxPowerState"=0x4} + | | | "Standby Enabled" = Yes + | | | "IOPMSystemSleepType" = 0x7 + | | | "IOAppPowerStateInterest" = "IOCommand is not serializable" + | | | "System Capabilities" = 0xf + | | | "BootSessionUUID" = "83423475-C544-4275-84DD-36AC84134231" + | | | "IOUserClientClass" = "RootDomainUserClient" + | | | "Hibernate Mode" = 0x3 + | | | "Hibernate File" = "/var/vm/sleepimage" + | | | "AppleClamshellCausesSleep" = No + | | | "AppleClamshellState" = No + | | | "SleepDisabled" = No + | | | "DestroyFVKeyOnStandby" = No + | | | "Last Sleep Reason" = "Sleep Service Back to Sleep" + | | | "SystemPowerProfileOverrideDict" = {} + | | | "DriverPMAssertions" = 0x4 + | | | "IOPMSystemSleepParameters" = <02000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | | "Hibernate File Min" = 0x40000000 + | | | "IOPMUserIsActive" = Yes + | | | "SleepRequestedByPID" = 0x1c0 + | | | "IOPriorityPowerStateInterest" = "IOCommand is not serializable" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Wake Reason" = "smc.70070000 lid SMC.OutboxNotEmpty" + | | | "SleepWakeUUID" = "65C36C1A-3DCA-4266-B3D2-576B8297E7BA" + | | | "IOSleepSupported" = Yes + | | | } + | | | + | | +-o IORootParent + | | | { + | | | "IOPowerManagement" = {"WQ-CheckForWork"=0x175b88,"WQ-ScanEntries"=0xf4d3d,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"WQ-QueueEmpty"=0x152,"DevicePowerState"=0x1,"WQ-NoWorkDone"=0x3ba,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x1} + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 375, logd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 399, watchdogd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 414, opendirectoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 420, securityd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 484, airportd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 506, symptomsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 440, corebrightnessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 413, thermalmonitord" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 416, apsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 590, systemstats" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 601, locationd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 416, apsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 540, UVCAssistant" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 818, usernoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 854, awdd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 817, rapportd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 861, usernotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 861, usernotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 823, corespeechd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 836, accountsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 818, usernoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 828, identityservices" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 964, imagent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 981, bluetoothuserd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1242, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1344, AirPlayUIAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1153, diagnostics_agen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1673, tipsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 866, familycircled" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 2339, IMAutomaticHisto" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 2659, usbmuxd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 380, mediaremoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 3187, wifivelocityd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 4947, Fork" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 4959, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 53784, Music" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 53786, AMPLibraryAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 63770, com.apple.hiserv" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 75977, netbiosd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 93188, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 93188, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 93445, AppleIDSettings" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 7099, Yandex Helper (P" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8198, amsaccountsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 9957, assistantd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 10114, routined" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 14001, Electron" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17528, Tips" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17528, Tips" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17528, Tips" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17534, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17880, Freeform" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 17884, GroupSessionServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 416, apsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 18680, Ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19079, callservicesd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19081, ScreenTimeAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19122, findmylocateagen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19121, appleaccountd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19114, searchpartyusera" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19190, calaccessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19190, calaccessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19395, nfcd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 19417, cupsd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o cpu0@0 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<41000000>) + | | | "AAPL,phandle" = <18000000> + | | | "cpu-id" = <00000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724500000000> + | | | "cpu-uttdbg-reg" = <0000041002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753000> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <41000000> + | | | "reg-private" = <0000011002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4301000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00000510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000011002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x0 + | | | "reg" = <00000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu1@1 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<44000000>) + | | | "AAPL,phandle" = <19000000> + | | | "cpu-id" = <01000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724501000000> + | | | "cpu-uttdbg-reg" = <0000141002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753100> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <44000000> + | | | "reg-private" = <0000111002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4302000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00001510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000111002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x1 + | | | "reg" = <01000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu2@2 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<47000000>) + | | | "AAPL,phandle" = <1a000000> + | | | "cpu-id" = <02000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724502000000> + | | | "cpu-uttdbg-reg" = <0000241002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753200> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <47000000> + | | | "reg-private" = <0000211002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4304000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00002510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000211002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x2 + | | | "reg" = <02000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu3@3 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<4a000000>) + | | | "AAPL,phandle" = <1b000000> + | | | "cpu-id" = <03000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724503000000> + | | | "cpu-uttdbg-reg" = <0000341002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753300> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <4a000000> + | | | "reg-private" = <0000311002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4308000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00003510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000311002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x3 + | | | "reg" = <03000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu4@100 + | | | { + | | | "fixed-frequency" = <00366e0100000000> + | | | "logical-cluster-id" = 0x1 + | | | "coresight-reg" = <0000011102000000c800030000000000> + | | | "clock-frequency" = <00366e0100000000> + | | | "state" = <72756e6e696e6700> + | | | "l2-cache-size" = <00000001> + | | | "interrupt-parent" = <69000000> + | | | "function-error_handler" = <270000004872724504000000> + | | | "interrupts" = <5c000000> + | | | "timebase-frequency" = <00366e0100000000> + | | | "logical-cpu-id" = 0x4 + | | | "cpu-impl-reg" = <00000511020000001090000000000000> + | | | "function-enable_core" = <8200000065726f4310000000> + | | | "cluster-id" = <01000000> + | | | "l2-cache-id" = <00000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "memory-frequency" = <00366e0100000000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | "cpu-uttdbg-reg" = <0000041102000000c800000000000000> + | | | "peripheral-frequency" = <00366e0100000000> + | | | "AAPL,phandle" = <1c000000> + | | | "cpu-id" = <04000000> + | | | "name" = <6370753400> + | | | "cluster-type" = <5000> + | | | "no-aic-ipi-required" = <> + | | | "device_type" = <63707500> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "reg-private" = <0000011102000000> + | | | "reg" = <00010000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "bus-frequency" = <00366e0100000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "IOInterruptSpecifiers" = (<5c000000>) + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu5@101 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<5f000000>) + | | | "AAPL,phandle" = <1d000000> + | | | "cpu-id" = <05000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724505000000> + | | | "cpu-uttdbg-reg" = <0000141102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753500> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <5f000000> + | | | "reg-private" = <0000111102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4320000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00001511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000111102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x5 + | | | "reg" = <01010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu6@102 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<62000000>) + | | | "AAPL,phandle" = <1e000000> + | | | "cpu-id" = <06000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724506000000> + | | | "cpu-uttdbg-reg" = <0000241102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753600> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <62000000> + | | | "reg-private" = <0000211102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4340000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00002511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000211102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x6 + | | | "reg" = <02010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu7@103 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<65000000>) + | | | "AAPL,phandle" = <1f000000> + | | | "cpu-id" = <07000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724507000000> + | | | "cpu-uttdbg-reg" = <0000341102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753700> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <65000000> + | | | "reg-private" = <0000311102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4380000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00003511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000311102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x7 + | | | "reg" = <03010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpus + | | { + | | "max_cpus" = <08000000> + | | "cpu-cluster-count" = <02000000> + | | "p-core-count" = <04000000> + | | "e-core-count" = <04000000> + | | "#address-cells" = <01000000> + | | "#size-cells" = <00000000> + | | "name" = <6370757300> + | | "AAPL,phandle" = <17000000> + | | } + | | + | +-o pram@E6B98000 + | | { + | | "IODeviceMemory" = (({"address"=0x103e6b98000,"length"=0x188000})) + | | "reg" = <0080b9e6030100000080180000000000> + | | "name" = <7072616d00> + | | "AAPL,phandle" = <22000000> + | | "device_type" = <7072616d00> + | | } + | | + | +-o vram@E1B64000 + | | { + | | "IODeviceMemory" = (({"address"=0x103e1b64000,"length"=0x3f70000})) + | | "reg" = <0040b6e1030100000000f70300000000> + | | "name" = <7672616d00> + | | "AAPL,phandle" = <23000000> + | | "device_type" = <7672616d00> + | | } + | | + | +-o socd-trace-ram@EDE69014 + | | { + | | "IODeviceMemory" = (({"address"=0x2ede69014,"length"=0x39c})) + | | "reg" = <1490e6ed020000009c03000000000000> + | | "name" = <736f63642d74726163652d72616d00> + | | "AAPL,phandle" = <24000000> + | | "device_type" = <736f63642d74726163652d72616d00> + | | } + | | + | +-o hibernate@1 + | | { + | | "reg" = <010000000000000401000000000000001900000098050004cb01000000000000> + | | "hmac-reg-base" = <000005a102000000> + | | "IODeviceMemory" = () + | | "pmgr-aes-offset" = <9002000000000000> + | | "pmgr-reg-base" = <000070d002000000> + | | "device_type" = <68696265726e61746500> + | | "AAPL,phandle" = <25000000> + | | "name" = <68696265726e61746500> + | | } + | | + | +-o amfm + | | | { + | | | "default-options" = <04000000> + | | | "function-pcie_port_control" = <440000004374725045000000> + | | | "function-reg_on" = <9f00000034574b706430506700008000> + | | | "name" = <616d666d00> + | | | "AAPL,phandle" = <26000000> + | | | "device_type" = <616d666d00> + | | | } + | | | + | | +-o AppleMultiFunctionManager + | | { + | | "IOClass" = "AppleMultiFunctionManager" + | | "CFBundleIdentifier" = "com.apple.driver.AppleMultiFunctionManager" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | "forceProbeOnLinkdown" = No + | | "manual_s2r_port_ctrl" = Yes + | | "IONameMatch" = "amfm" + | | "valid_clients" = ("AppleBCMWLANPortInterfacePCIe","AppleOLYHALPortInterfacePCIe","AppleOLYHALPortInterfacePCIeV3","IOService") + | | "IOMatchCategory" = "AppleMultiFunctionManager" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "LoggingBundleName" = "com.apple.driver.AppleMultiFunctionManager" + | | "IONameMatched" = "amfm" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMultiFunctionManager" + | | "constants" = {"wlan_reg_on_on_delay"=0x78,"wlan_reg_on_off_delay"=0x78} + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMultiFunctionManager" + | | "CoreWiFiDriverSuspendedKey" = "false" + | | "CoreWiFiDriverReadyKey" = "true" + | | } + | | + | +-o arm-io@10F00000 + | | | { + | | | "iommu-present" = <> + | | | "AAPL,phandle" = <27000000> + | | | "#address-cells" = <02000000> + | | | "IODeviceMemory" = (({"address"=0x210f00000,"length"=0x2000}),({"address"=0x211f00000,"length"=0x2000}),({"address"=0x210050000,"length"=0x2000}),({"address"=0x210150000,"length"=0x2000}),({"address"=0x210250000,"length"=0x2000}),({"address"=0x210350000,"length"=0x2000}),({"address"=0x211050000,"length"=0x2000}),({"address"=0x211150000,"length"=0x2000}),({"address"=0x211250000,"length"=0x2000}),({"address"=0x211350000,"length"=0x2000})) + | | | "cpm-impl" = <0000e4100200000000800000000000000000e411020000000080000000000000> + | | | "name" = <61726d2d696f00> + | | | "usbphy-frequency" = <00000000> + | | | "acc-impl" = <0000f0100200000000200000000000000000f011020000000020000000000000> + | | | "soc-generation" = <48313500> + | | | "compatible" = <61726d2d696f2c743831323200> + | | | "ranges" = <000000000000000000000010020000000000003001000000000000000700000000000000070000000000008003000000000000000b000000000000000b0000000000008003000000000000000800000000000000080000000000000002000000000000000a000000000000000a0000000000008000000000000000000c000000000000000c0000000000000002000000000000000e000000000000000e0000000000008000000000000000800500000000000080050000000000008000000000000000a005000000000000a0050000000000002000000000000000c005000000000000c0050000000000004000000000000000000600000000000000060000000000008000000$ + | | | "function-power_gate" = <8200000047727770> + | | | "function-clock_gate" = <82000000476b6c63> + | | | "process-node" = <04000000> + | | | "clock-frequencies-regs" = <00366e01000000c400800000000000c4000000000000007401000000000000740000000000000070010000000000007002000000000000700300000000000070040000000000007005000000000000700600000000000070070000000000007008000000000000700000000000000004080024e4020000c9100024e4020000c9140024e4020000c9180024e4020000c9240024e4020000c9280024e4020000c9040024e4020000c90c0024e4020000c92c0024e4020000c9300024e4020000c9340024e4020000c9380024e4020000c93c0024e4020000c9400024e4020000c9440024e4020000c9480024e4020000c94c0024e4020000c9500024e402000$ + | | | "clock-frequencies-nclk" = <00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "die-count" = <01000000> + | | | "clock-frequencies" = <00366e01008000000000dc020000584a00105e5f00c6507fa7a94108006fa12b00d2496b00000000008c8647807c814a5581f20700366e010000dc020000584a00006e0100006e0100006e0100006e0100006e0100006e01000000000000dc0200002c2500002c250000b70000006e0100006e0100006e010000dc020000dc020000584a0000dc020000dc020000dc020000dc020000000000006e01c00c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "chip-revision" = <20000000> + | | | "fuse-revision" = <0a000000> + | | | "device_type" = <74383132322d696f00> + | | | "#size-cells" = <02000000> + | | | "reg" = <0000f0100200000000200000000000000000f0110200000000200000000000000000051002000000002000000000000000001510020000000020000000000000000025100200000000200000000000000000351002000000002000000000000000000511020000000020000000000000000015110200000000200000000000000000251102000000002000000000000000003511020000000020000000000000> + | | | } + | | | + | | +-o AppleH15IO + | | | { + | | | "IOClass" = "AppleH15IO" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "IOFunctionParent00000027" = <> + | | | "IOPlatformActiveAction" = 0x13880 + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"ChildProxyPowerState"=0xffffffffffffffff,"CurrentPowerState"=0x0} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "arm-io,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "arm-io,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o spi2@91108000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "clock-gates" = <45000000> + | | | | "AAPL,phandle" = <28000000> + | | | | "#address-cells" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1108000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "spi-version" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <7370693200> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <7370692d312c7370696d6300> + | | | | "interrupts" = + | | | | "dma-channels" = <18000000000000000000000080000000400000000000000000000000000000001900000000000000000000008000000040000000000000000000000000000000> + | | | | "clock-ids" = <98010000> + | | | | "function-spi_cs0" = <010000006c6c756e> + | | | | "dma-parent" = <95000000> + | | | | "device_type" = <73706900> + | | | | "#size-cells" = <07000000> + | | | | "reg" = <00801091000000000040000000000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleSPIMCController + | | | | { + | | | | "IOClass" = "AppleSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spi-1,spimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "Stats" = {"intrTimeouts"=0x0,"xfer_hist_count"=0x9437,"disb_intrs_active"=0x0,"pollTimeouts"=0x0,"xfer"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x1174,0x7d57,0x3ae,0x92,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"poll"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0$ + | | | | "IONameMatched" = "spi-1,spimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPIMC" + | | | | } + | | | | + | | | +-o mesa@0 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = <29000000> + | | | | "monitor-current-3v0-threshold" = + | | | | "IOReportLegendPublic" = Yes + | | | | "power-on-delay" = <07000000> + | | | | "time-between-scans" = <00000200> + | | | | "mesaType" = <01000000> + | | | | "power-off-delay" = <0a000000> + | | | | "monitor-power-interval" = + | | | | "monitor-current-3v0-count" = <03000000> + | | | | "function-monitor-current-3v0" = <9f0000005279656b52444949> + | | | | "name" = <6d65736100> + | | | | "scan-timer-reset-time" = <99990000> + | | | | "interrupt-parent" = <70000000> + | | | | "monitor-power-avg-count" = <14000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "MesaSelfTest" = "OK" + | | | | "compatible" = <62696f73656e736f722c6d65736100> + | | | | "interrupts" = + | | | | "monitor-current-avg-count" = <01000000> + | | | | "monitor-current-value-type" = <01000000> + | | | | "function-hid_event_dispatch" = <2101000044747542> + | | | | "max-scan-time" = <33330100> + | | | | "spi-frequency" = <00127a00> + | | | | "device_type" = <6d65736100> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "reg" = <00000000f4010000000101080000000014000000000000000000000000000000> + | | | | "function-mesa_pwr" = <720000004f4950471d00000001010000> + | | | | } + | | | | + | | | +-o AppleSandDollar + | | | | { + | | | | "IOClass" = "AppleSandDollar" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "mesaType" = 0x2 + | | | | "spi-freq" = 0x7a1200 + | | | | "IOProbeScore" = 0x64 + | | | | "IOUserClientClass" = "AppleMesaUserClient" + | | | | "SensorID" = 0x3352 + | | | | "IONameMatch" = ("biosensor,mesa") + | | | | "IOCFPlugInTypes" = {"3F3B04CC-A07A-46A5-9DDF-78768C966771"="AppleBiometricSensor.kext/Contents/PlugIns/AppleMesaLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | | | "spi-clock-phase" = 0x3 + | | | | "IONameMatched" = "biosensor,mesa" + | | | | "mesa-state" = 0x6 + | | | | "SerialNumber" = <0219c0794a419f23deac3c96fc0100d0> + | | | | "IOFunctionParent00000029" = <> + | | | | "patch-version" = 0x16 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Mesa","IOReportChannels"=((0x5053544154450000,0x400020002,"Power State")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Mesa Power State"},{"IOReportGroupName"="Mesa","IOReportChannels"=((0x7265736574730000,0x180000001,"Total Resets"),(0x6573647265736574,0x180000001,"ESD Resets"),(0x746f7420696e7400,0x180000001,"Total Interrupts"),(0x7370727320696e74,0x180000001,"Spurious Interrupts"),(0x7370696572726f72,0x180000001,"Total SPI Errors"),(0x$ + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | } + | | | | + | | | +-o AppleMesaShim + | | | | | { + | | | | | "IOClass" = "AppleMesaShim" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProviderClass" = "AppleMesa" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb},{"DeviceUsagePage"=0x20,"DeviceUsage"=0x10}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "HIDServiceSupport" = Yes + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"NotificationCen$ + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x1a90,"NotificationForce"=0x0,"NotificationCount"=0x64,"head"=0x1a90},"EnqueueEventCount"=0x64,"LastEventType"=0x1d,"LastEventTime"=0x1a7799fc841} + | | | | } + | | | | + | | | +-o AppleMesaSEPDriver + | | | | { + | | | | "IOClass" = "AppleMesaSEPDriver" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMesaSEPDriver" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "ScanningState" = 0x0 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "sep-endpoint,sbio" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "com_apple_driver_AppleMesaSEPDriver" + | | | | "MesaCalBlobSource" = "FDR" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "sep-endpoint,sbio" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMesaSEPDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMesaSEPDriver" + | | | | } + | | | | + | | | +-o AppleBiometricServices + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricServices" + | | | | "IOMatchCategory" = "com_apple_driver_AppleBiometricServices" + | | | | "IOClass" = "AppleBiometricServices" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricServices" + | | | | "IOProviderClass" = "AppleMesaSEPDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricServices" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "AppleBiometricServicesUserClient" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | } + | | | | + | | | +-o AppleBiometricServicesUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o spi4@91110000 + | | | | { + | | | | "compatible" = <7370692d312c7370696d6300> + | | | | "function-spi_cs0" = <700000004f4950478800000001000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <01030000> + | | | | "reg" = <00001191000000000040000000000000> + | | | | "clock-gates" = <47000000> + | | | | "clock-ids" = <9a010000> + | | | | "AAPL,phandle" = <2a000000> + | | | | "device_type" = <73706900> + | | | | "#size-cells" = <07000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<01030000>) + | | | | "#address-cells" = <01000000> + | | | | "spi-version" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1110000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <7370693400> + | | | | } + | | | | + | | | +-o AppleSPIMCController + | | | | { + | | | | "IOClass" = "AppleSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spi-1,spimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "Stats" = {"intrTimeouts"=0x0,"xfer_hist_count"=0x0,"disb_intrs_active"=0x0,"pollTimeouts"=0x0,"xfer"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"poll"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0$ + | | | | "IONameMatched" = "spi-1,spimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPIMC" + | | | | } + | | | | + | | | +-o dp855@0 + | | | | { + | | | | "security-level" = <03000000> + | | | | "compatible" = <7061726164652c445038353500> + | | | | "prod-status" = <01000000> + | | | | "AAPL,phandle" = <2b000000> + | | | | "reg" = <0000000053000000000001080000000014000000000000000000000000000000> + | | | | "device-id" = <413431303433> + | | | | "bundle-ver" = <07180000> + | | | | "ecid" = <000000000000000001073406080a1849> + | | | | "nonce" = <79235222a2bd69b2e38a8a5feb737e5aaed967ff1415331d485ac23d66fbdae8> + | | | | "device_type" = <74636f6e00> + | | | | "prod-fuse-value" = <01000000> + | | | | "firmware-ver" = <01220000> + | | | | "firmware" = <01000000> + | | | | "sdom-status" = <01000000> + | | | | "name" = <647038353500> + | | | | "sdom-fuse-value" = <01000000> + | | | | } + | | | | + | | | +-o AppleParadeDP855TCON + | | | | { + | | | | "IOProbeScore" = 0x3a98 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "IOClass" = "AppleParadeDP855TCON" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "parade,DP855" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "parade,DP855" + | | | | "model" = <57030000> + | | | | } + | | | | + | | | +-o lcd-pmicwp + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d706d6963777000> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2c000000> + | | | | "reg" = <4f00000010000000> + | | | | } + | | | | + | | | +-o lcd-pmic + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <02000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d706d696300> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2d000000> + | | | | "reg" = <7400000000010000> + | | | | } + | | | | + | | | +-o lcd-sswp + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d7373777000> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2e000000> + | | | | "reg" = <7100000010000000> + | | | | } + | | | | + | | | +-o lcd-ss + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d737300> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2f000000> + | | | | "reg" = <4000000000010000> + | | | | } + | | | | + | | | +-o tcon-registers + | | | | { + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "reg" = <0000000000010000> + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "name" = <74636f6e2d72656769737465727300> + | | | | "AAPL,phandle" = <30000000> + | | | | "device_type" = <74636f6e2d72656769737465727300> + | | | | } + | | | | + | | | +-o lcd-eeprom + | | | { + | | | "offset-size" = <03000000> + | | | "hi-z" = <01000000> + | | | "data-pol-inv" = <00000000> + | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | "tx-bit-order" = <01000000> + | | | "AAPL,phandle" = <31000000> + | | | "reg" = <0000000000000200> + | | | "multi-io-bit-order" = <00000000> + | | | "verify" = <01000000> + | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | "protection" = <01000000> + | | | "device_type" = <6c63642d7370692d636f6d706f6e656e7400> + | | | "mode" = <00000000> + | | | "multi-io" = <00000000> + | | | "interface" = <00000000> + | | | "rx-bit-order" = <01000000> + | | | "name" = <6c63642d656570726f6d00> + | | | } + | | | + | | +-o i2c1@91014000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<0d030000>) + | | | | "gpio-iic_scl" = <930000000201010041500000> + | | | | "gpio-iic_sda" = <920000000201010041500000> + | | | | "clock-gates" = <37000000> + | | | | "AAPL,phandle" = <32000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1014000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633100> + | | | | "function-device_reset" = <820000005453524137000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0d030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00400191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o audio-speaker@38 + | | | | | { + | | | | | "find-speaker-id" = <01000000> + | | | | | "bop-config" = <01320222832d800206324630020638403002063e3730ffe6> + | | | | | "function-speaker-id1" = <700000004f4950479c00000000010000> + | | | | | "IOInterruptSpecifiers" = (<0c00000001000000>) + | | | | | "valid-speaker-ids" = <0000000003000000> + | | | | | "AAPL,phandle" = <33000000> + | | | | | "speaker1" = <36000000> + | | | | | "speaker-protection" = <01000000> + | | | | | "external-power-provider" = <14010000> + | | | | | "private" = <3100> + | | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | | "speaker2" = <34000000> + | | | | | "name" = <617564696f2d737065616b657200> + | | | | | "interrupt-parent" = <70000000> + | | | | | "function-reset" = <700000004f4950470d00000001000100> + | | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | | "amp-tx-zd-config" = + | | | | | "interrupts" = <0c00000001000000> + | | | | | "amp-dcblocker-config" = <01410000> + | | | | | "iboot-audio-volume" = <> + | | | | | "speaker3" = <37000000> + | | | | | "speaker-config" = <000f0002010f0406020f080a030f0c0e> + | | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | | "reg" = <38000000c40900000000000000000000> + | | | | | "function-speaker-id0" = <700000004f4950479b00000000010000> + | | | | | } + | | | | | + | | | | +-o AppleSN012776Amp + | | | | { + | | | | "IOClass" = "AppleSN012776Amp" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSN012776Amp" + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "IOFunctionParent00000033" = <> + | | | | "CodecRegisterDisplayBase" = 0x10 + | | | | "IOPowerManagement" = {"DevicePowerState"=0x0,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("audio-control,sn012776") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CodecRegisterStartIndex" = 0x0 + | | | | "CodecRegisterPatchList" = () + | | | | "IOFunctionParent00000112" = <> + | | | | "IONameMatched" = "audio-control,sn012776" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSN012776Amp" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSN012776Amp" + | | | | } + | | | | + | | | +-o audio-speaker-left-tweeter@39 + | | | { + | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | "reg" = <39000000c40900000000000000000000> + | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | "name" = <617564696f2d737065616b65722d6c6566742d7477656574657200> + | | | "AAPL,phandle" = <34000000> + | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | } + | | | + | | +-o i2c3@9101C000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<0f030000>) + | | | | "gpio-iic_scl" = <360000000201010041500000> + | | | | "gpio-iic_sda" = <350000000201010041500000> + | | | | "clock-gates" = <39000000> + | | | | "AAPL,phandle" = <35000000> + | | | | "IODeviceMemory" = (({"address"=0x2a101c000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633300> + | | | | "function-device_reset" = <820000005453524139000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0f030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00c00191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o audio-speaker-right-woofer@3B + | | | | { + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "reg" = <3b000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d737065616b65722d72696768742d776f6f66657200> + | | | | "AAPL,phandle" = <36000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | } + | | | | + | | | +-o audio-speaker-right-tweeter@3C + | | | | { + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "reg" = <3c000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d737065616b65722d72696768742d7477656574657200> + | | | | "AAPL,phandle" = <37000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | } + | | | | + | | | +-o audio-codec-output@4B + | | | | { + | | | | "internal-mclk-src" = <01000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "enable-ringsense" = <01000000> + | | | | "AAPL,phandle" = <38000000> + | | | | "bits-per-sample-subset" = <18000000> + | | | | "external-power-provider" = <17010000> + | | | | "ringsense-inverted" = <01000000> + | | | | "enable-dcid" = <01000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "private" = <3100> + | | | | "function-codecinput_master" = <1a0100003144554163327061> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d636f6465632d6f757470757400> + | | | | "interrupt-parent" = <70000000> + | | | | "function-reset" = <720000004f4950471100000001000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c637334326c383400> + | | | | "interrupts" = + | | | | "PowerOffAtSleep" = <01000000> + | | | | "mic-config" = <0100ffffffffffff> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "samplerate-default" = <0000000080bb0000> + | | | | "reg" = <4b000000c40900000000000000000000> + | | | | "function-codecinput_active" = <0f01000052733269326e6970> + | | | | } + | | | | + | | | +-o AppleCS42L84Audio + | | | | { + | | | | "IOClass" = "AppleCS42L84Audio" + | | | | "DetectTime" = 0x1585 + | | | | "DCIDMode" = "Low Impedance" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleCS42L84Audio" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x0,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "DetectHistory" = ({"ButtonDetect"=No,"DetectTime"=0x171,"HSSwitchDetect"=(0x3),"headset info"={"mic connector reversed"=No,"multiple buttons"=No,"button"=No,"microphone"=No},"DetectConfidence"="NoneNoNotify","MicDetect"=No,"HPDetect"=Yes},{"ButtonDetect"=No,"DetectTime"=0x9ec,"HSSwitchDetect"=("reverse-bias","reverse-bias"),"headset info"={"mic connector reversed"=No,"multiple buttons"=No,"button"=No,"microphone"=No},"DetectConfidence"="NoneNoNotify","MicDetect"=No,"HPDetect"=Yes},{"ButtonDetect"=No,"DetectTime"=0xfd2,"H$ + | | | | "CodecRegisterStartIndex" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "MicDetect" = No + | | | | "HPDetect" = Yes + | | | | "HSSwitchDetect" = ("reverse-bias","reverse-bias") + | | | | "IONameMatch" = ("audio-control,cs42l84") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleCS42L84Audio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleCS42L84Audio" + | | | | "CodecRegisterPatchList" = () + | | | | "IONameMatched" = "audio-control,cs42l84" + | | | | "Supports DCID" = Yes + | | | | "DetectConfidence" = "NoneNoNotify" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Output","IOReportChannels"=((0x4443443156524d53,0x101000001,"Codec Output.1VRMS"),(0x4443444849434150,0x101000001,"Codec Output.HiCapacitance"),(0x4443444c4f574950,0x101000001,"Codec Output.LowImpedance"),(0x4443444849474849,0x101000001,"Codec Output.HighImpedance")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="DCIDModes"}) + | | | | "ButtonDetect" = No + | | | | "IOFunctionParent00000038" = <> + | | | | "CodecRegisterDisplayBase" = 0x10 + | | | | "IOFunctionParent00000118" = <> + | | | | } + | | | | + | | | +-o AppleCS42L84Mikey + | | | | { + | | | | "AppleVendorSupported" = Yes + | | | | "Transport" = "Audio" + | | | | "HIDDefaultBehavior" = Yes + | | | | "MaxInputReportSize" = 0x1 + | | | | "IOReportLegendPublic" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "Product" = "Headset" + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "ReportDescriptor" = <050c0901a101050c09cd09ea09e91500250195037501810295058105c0> + | | | | "MaxOutputReportSize" = 0x0 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "PrimaryUsage" = 0x1 + | | | | "DeviceTypeHint" = "Headset" + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"Usage"=0xcd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc$ + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xc + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "MaxFeatureReportSize" = 0x0 + | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x7,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x0 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | | "Product" = "Headset" + | | | | "PrimaryUsage" = 0x1 + | | | | "IODEXTMatchCount" = 0x1 + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "Transport" = "Audio" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <050c0901a101050c09cd09ea09e91500250195037501810295058105c0> + | | | | "HIDDefaultBehavior" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xc + | | | | "MaxFeatureReportSize" = 0x0 + | | | | "MaxInputReportSize" = 0x1 + | | | | } + | | | | + | | | +-o AppleUserHIDEventDriver + | | | | { + | | | | "kOSBundleDextUniqueIdentifier" = + | | | | "PrimaryUsagePage" = 0xc + | | | | "SensorProperties" = {} + | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | "VersionNumber" = 0x0 + | | | | "VendorID" = 0x0 + | | | | "DeviceTypeHint" = "Headset" + | | | | "IOUserServerOneProcess" = Yes + | | | | "Product" = "Headset" + | | | | "Transport" = "Audio" + | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.eventservice" + | | | | "IOUserClasses" = ("AppleUserHIDEventDriver","AppleUserHIDEventService","IOUserHIDEventDriver","IOUserHIDEventService","IOHIDEventService","IOService","OSObject") + | | | | "Manufacturer" = "Apple" + | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | "ProductID" = 0x0 + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "RegisterService" = No + | | | | "Keyboard" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"Usage"=0xcd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"U$ + | | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | "ReportInterval" = 0x1f40 + | | | | "VendorIDSource" = 0x0 + | | | | "IOMatchedPersonality" = {"IOProbeScore"=0x1,"CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOHIDInterface","IOClass"="AppleUserHIDEventService","IOUserClass"="AppleUserHIDEventDriver","CFBundleIdentifierKernel"="com.apple.iokit.IOHIDFamily","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","IOUserServerOneProcess"=Yes,"DeviceUsagePairs"=({"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x5},{"DeviceUsagePa$ + | | | | "HIDEventServiceProperties" = {"HIDStickyKeysOn"=0x0,"HIDKeyRepeat"=0x4f790d5,"PressCountUsagePairs"=(0xc00cd,0xb0021),"TrackpadHorizScroll"=0x1,"LogLevel"=0x6,"HIDMouseKeysOptionToggles"=0x0,"MouseTwoFingerHorizSwipeGesture"=0x2,"JitterNoClick"=0x1,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MouseMomentumScroll"=Yes,"PreserveTimestamp"=Yes,"HIDDefaultParameters"=Yes,"UnifiedKeyMapping"=No,"HIDPointerButtonMode"=0x2,"HIDMouseKeysOn"=0x0,"HIDScrollZoomModifierMask"=0x0,"TrackpadFourFingerVertSwipeGesture$ + | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "IOProviderClass" = "IOHIDInterface" + | | | | "IOUserClass" = "AppleUserHIDEventDriver" + | | | | "LocationID" = 0x0 + | | | | "IOClass" = "AppleUserHIDEventService" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | "PrimaryUsage" = 0x1 + | | | | "CountryCode" = 0x0 + | | | | "HIDServiceSupport" = Yes + | | | | "SensorPropertySupported" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOProbeScore" = 0x47f + | | | | "HIDDKStart" = Yes + | | | | } + | | | | + | | | +-o IOHIDEventServiceUserClient + | | | { + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | } + | | | + | | +-o i2c4@91020000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<10030000>) + | | | | "gpio-iic_scl" = <950000000201010041500000> + | | | | "gpio-iic_sda" = <940000000201010041500000> + | | | | "clock-gates" = <3a000000> + | | | | "AAPL,phandle" = <39000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1020000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633400> + | | | | "function-device_reset" = <82000000545352413a000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <10030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00000291000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o avellino-pre@77 + | | | | { + | | | | "reg" = <77000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <6176656c6c696e6f2d70726500> + | | | | "AAPL,phandle" = <3a000000> + | | | | "device_type" = <6176656c6c696e6f2d70726500> + | | | | } + | | | | + | | | +-o avellino-post@44 + | | | { + | | | "reg" = <44000000c40900000000000000000000> + | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | "name" = <6176656c6c696e6f2d706f737400> + | | | "AAPL,phandle" = <3b000000> + | | | "device_type" = <6176656c6c696e6f2d706f737400> + | | | } + | | | + | | +-o fpwm1@91044000 + | | | | { + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6670776d2c7438313031006670776d2c73356c383932307800> + | | | | "reg" = <00400491000000000040000000000000> + | | | | "interrupts" = <16030000> + | | | | "IODeviceMemory" = (({"address"=0x2a1044000,"length"=0x4000})) + | | | | "clock-gates" = <34000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<16030000>) + | | | | "device_type" = <6670776d3100> + | | | | "AAPL,phandle" = <3c000000> + | | | | "name" = <6670776d3100> + | | | | } + | | | | + | | | +-o AppleS5L8920XFPWM + | | | | { + | | | | "IOClass" = "AppleS5L8920XFPWM" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8920XPWM" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "FPWM Frequency" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "fpwm,s5l8920x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOFunctionParent0000003C" = <> + | | | | "IONameMatched" = "fpwm,s5l8920x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8920XPWM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8920XPWM" + | | | | } + | | | | + | | | +-o kbd-backlight@0 + | | | { + | | | "nits-to-pwm-percentage-part1" = <9f3a00003f750000dfaf00007eea00001e250100be5f01005e9a01003fd50100df0f02007e4a02001e850200bebf02005efa0200fd3403009d6f03003daa0300dde403007c1f04001c5a0400bc9404005ccf0400fb0905009b4405007c7f05001cba0500bcf405005c2f0600fb6906009ba406003bdf0600db1907007a5407001a8f0700bac907005a040800f93e08009979080039b40800d9ee0800ba2909005a640900f99e090099d9090039140a00d94e0a0078890a0018c40a00b8fe0a0058390b00f7730b0097ae0b0037e90b00d7230c00765e0c0016990c00f7d30c00970e0d0037490d00d7830d0076be0d0016f90d00b6330e0$ + | | | "high-period" = 0xec + | | | "AAPL,phandle" = <3d000000> + | | | "reg" = <00000000> + | | | "low-period" = 0x2d4 + | | | "device_type" = <6670776d00> + | | | "pwm-frequency" = 0x16e3600 + | | | "amplitude" = 0x100000000 + | | | "enabled" = Yes + | | | "IOFunctionParent0000003D" = <> + | | | "default-hz" = + | | | "name" = <6b62642d6261636b6c6967687400> + | | | "nits-to-pwm-percentage-part2" = <99990500eb110600ae870600000007005178070014ee070066660800b8de08007a540900cccc09001e450a00e1ba0a0033330b0085ab0b0047210c0099990c00eb110d00ae870d0000000e0051780e0014ee0e0066660f00b8de0f007a541000cccc10001e451100e1ba11003333120085ab12004721130099991300eb111400ae871400000015005178150014ee150066661600b8de16007a541700cccc17001e451800e1ba18003333190085ab190047211a0099991a00eb111b00ae871b0000001c0051781c0014ee1c0066661d00b8de1d007a541e00cccc1e001e451f00e1ba1f003333200085ab20004721210099992100eb11220$ + | | | } + | | | + | | +-o alc0 + | | | | { + | | | | "function-aop-device-control-id" = <69617068> + | | | | "external-power-provider" = + | | | | "dma-channels" = + | | | | "compatible" = <616c632c743831323200> + | | | | "function-aop-device-control" = <790000006c744367> + | | | | "function-admac_powerswitch" = + | | | | "alc-number" = <00000000> + | | | | "dma-parent" = + | | | | "device_type" = <69327300> + | | | | "AAPL,phandle" = <3e000000> + | | | | "name" = <616c633000> + | | | | } + | | | | + | | | +-o AppleLEAPController_T8122 + | | | | { + | | | | "IOClass" = "AppleLEAPController_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("alc,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "alc,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "ControllerActive" = Yes + | | | | } + | | | | + | | | +-o audio-leap-mic@4201 + | | | | { + | | | | "private" = <3100> + | | | | "device-uid" = <4469676974616c204d696300> + | | | | "input-data-selectors" = <31696d6932696d6933696d69> + | | | | "compatible" = <617564696f2d646174612c65787465726e616c00> + | | | | "AAPL,phandle" = <3f000000> + | | | | "reg" = <0142000003000100001bb700fa0001003000010000000000070000000003002001000000> + | | | | "Name" = "audio-leap-mic" + | | | | "device_type" = <6c6561702d617564696f2d6461746100> + | | | | "data-sources" = <6132706104000000010001000000000080bb00004c656170204d696300> + | | | | "audio-stream-formatter" = <7061656c> + | | | | "default-input-data-selectors" = <31696d6932696d6933696d69> + | | | | "device-name" = <4469676974616c204d696300> + | | | | "name" = <617564696f2d6c6561702d6d696300> + | | | | } + | | | | + | | | +-o Digital Mic + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="Digital Mic","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Digital Mic","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportCh$ + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "IOMatchedAtBoot" = Yes + | | | | "transport type" = 0x626c746e + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703261,"name"="Leap Mic"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703261,"base class"=0x736c6374,"read only"=0x0},{"control ID"=0x130,"variant"=0x0,"selectors"=({"value"=0x696d6931,"name"="Internal microphone1 "},{"value"=0x696d6932,"name"="Internal microphone2 "},{"value"=0x696d6933,"name"="Internal microphone3 "}),"scope"=0x696e7074,"element"=0x0,"class"=0x64737263,"value"=(0x696d6931,0x696d6932,0x696d6933),"base class"=0x$ + | | | | "input safety offset" = 0x32 + | | | | "output latency" = 0x1 + | | | | "device name" = "Digital Mic" + | | | | "IONameMatched" = "audio-data,external" + | | | | "output streams" = () + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0xc,"channels per frame"=0x3,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0xc,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0xc,"sample rate"=0xbb8000000000,"channels per frame"=0x3,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0xc,"frames per pa$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Digital Mic" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x18 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = No + | | | | "is running" = Yes + | | | | "IONameMatch" = "audio-data,external" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleExternalSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x0 + | | | | "device manufacturer" = "Apple Inc." + | | | | "IOFunctionParent0000003F" = <> + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "current state" = "streaming audio" + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "clock domain" = 0x6d61696e + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x3,"MaxOutputChannelCount"=0x0} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o alc4 + | | | | { + | | | | "function-aop-device-control-id" = <626c696c> + | | | | "external-power-provider" = <7b000000be000000> + | | | | "dma-channels" = <08000000210000000000000000030000c0000000000000000000000000000000090000002100000000000000c00300008001000000000000000000000000000008000000220000000000000000030000c0000000000000000000000000000000090000002200000000000000c003000080010000000000000000000000000000> + | | | | "compatible" = <616c632c743831323200> + | | | | "function-aop-device-control" = <7b0000006c744367> + | | | | "function-admac_powerswitch" = + | | | | "alc-number" = <04000000> + | | | | "dma-parent" = + | | | | "device_type" = <69327300> + | | | | "AAPL,phandle" = <40000000> + | | | | "name" = <616c633400> + | | | | } + | | | | + | | | +-o AppleLEAPController_T8122 + | | | | { + | | | | "IOClass" = "AppleLEAPController_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("alc,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "alc,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | } + | | | | + | | | +-o audio-leap-internal-loopback@4201 + | | | | { + | | | | "AAPL,phandle" = <41000000> + | | | | "compatible" = <617564696f2d646174612c65787465726e616c00> + | | | | "audio-stream-formatter" = <7061656c> + | | | | "device_type" = <6c6561702d617564696f2d6461746100> + | | | | "data-sources" = <6132706102020400020001000000000080bb00004c65617020496e7465726e616c204c6f6f706261636b00> + | | | | "device-uid" = <4c45415020496e7465726e616c204c6f6f706261636b00> + | | | | "device-name" = <4c45415020496e7465726e616c204c6f6f706261636b00> + | | | | "Name" = "audio-leap-internal-loopback" + | | | | "private" = <3100> + | | | | "name" = <617564696f2d6c6561702d696e7465726e616c2d6c6f6f706261636b00> + | | | | "reg" = <0142000002000100001bb700fa0001003000010003000000030000000202202003000000> + | | | | } + | | | | + | | | +-o LEAP Internal Loopback + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "IOFunctionParent00000041" = <> + | | | | "IOMatchedAtBoot" = Yes + | | | | "transport type" = 0x626c746e + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703261,"name"="Leap Internal Loopback"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703261,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x4a + | | | | "output latency" = 0x1a + | | | | "device name" = "LEAP Internal Loopback" + | | | | "IONameMatched" = "audio-data,external" + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x8,"sample rate"=0xbb8000000000,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0x8,"frames per p$ + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x8,"sample rate"=0xbb8000000000,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0x8,"frames per pa$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "LEAP Internal Loopback" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x48 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = Yes + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,external" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleExternalSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x4 + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="LEAP Internal Loopback","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="LEAP Internal Loopback","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportCha$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x2,"MaxOutputChannelCount"=0x2} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o wlan + | | | | { + | | | | "module-instance" = <646e696570657200> + | | | | "pcie-throttle-firmware-load" = <01000000> + | | | | "interrupt-parent" = <70000000> + | | | | "interrupts" = <1000000002000000> + | | | | "wlan.nan.enabled" = <01000000> + | | | | "AAPL,phandle" = <42000000> + | | | | "IOInterruptSpecifiers" = (<1000000002000000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "device_type" = <776c616e00> + | | | | "local-mac-address" = + | | | | "amfm-managed-port-control" = <> + | | | | "function-sac" = <26010000434341533064636c3164636c> + | | | | "wlan.lowlatency" = <01000000> + | | | | "wifi-antenna-sku-info" = <01000000000000005830000000000000> + | | | | "wifi-calibration-msf" = <424c4f42a00000000414e46c010000000700000003000000a0000000af0f00001cdf442100000000030000004f1000001a0200001cdf4421000000000400000069120000b40100001cdf442100000000040000001d140000b40100001cdf44210000000004000000d1150000c40000001cdf4421000000000200000095160000040000005172757b00000000010000009916000064000000d5750a6a00000000ad0f08000000010019020b0002038203820396039603960396039603960396039602af02af02af02af02af02af02af02af02af02af02af02af038203820396039603960396039603960396039602af02af02af02af02af02af02af02af0$ + | | | | "name" = <776c616e00> + | | | | } + | | | | + | | | +-o AppleOLYHAL + | | | | { + | | | | "IOClass" = "AppleOLYHAL" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleOLYHAL" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "wifi-module-sn" = <5145660001e8> + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "wlan" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleOLYHAL" + | | | | "FilesDB" = {} + | | | | "WiFiBootState" = Yes + | | | | "ModuleInfo" = "chip='s=C0' module='M=WLMT m=4.7 V=u' prod='17460' manuf='5348'" + | | | | "LoggingBundleName" = "com.apple.driver.AppleOLYHAL" + | | | | "IONameMatched" = "wlan" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleOLYHAL" + | | | | "vendor-id" = "USI" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleOLYHAL" + | | | | "HWIdentifiers" = {"V"="u","M"="WLMT","C"=0x1124,"s"="C0","P"="dnieper","m"="4.7"} + | | | | "IONetworkRootType" = "airport" + | | | | } + | | | | + | | | +-o CCPipe + | | | | | { + | | | | | "LogType" = 0x0 + | | | | | "IOClass" = "CCLogPipe" + | | | | | "CompressionDisabled" = 0x0 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Owner" = "com.apple.driver.AppleOLYHAL" + | | | | | "LogDataType" = 0x1 + | | | | | "Name" = "DriverLogs" + | | | | | "NumberOfFiles" = 0x1 + | | | | | "FileSize" = 0x200000 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x3e8 + | | | | | "MinLogSizeToNotify" = 0x1999 + | | | | | "Statistics" = {"timestamp"=0x4518d5c6569bb,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | | "LogIdentifier" = "AppleOLYHAL_log" + | | | | | "PipeType" = 0x0 + | | | | | "PipeSize" = 0x4000 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DriverLogs"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "WiFi" + | | | | | "Filename" = "AppleOLYHAL_log" + | | | | | } + | | | | | + | | | | +-o CCLogStream + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c5720,$ + | | | | "Id" = 0x1 + | | | | "IOClass" = "CCLogStream" + | | | | "CoreCaptureLevel" = 0x5 + | | | | "CoreCaptureFlag" = 0x0 + | | | | "ConsoleLevel" = 0x1 + | | | | "IOReportLegendPublic" = Yes + | | | | "LogIdentifier" = "olyhal" + | | | | "Name" = "olyhalStream" + | | | | "ConsoleFlag" = 0x0 + | | | | "MiscInfo" = 0x0 + | | | | } + | | | | + | | | +-o CCPipe + | | | | { + | | | | "LogType" = 0x0 + | | | | "IOClass" = "CCLogPipe" + | | | | "CompressionDisabled" = 0x0 + | | | | "IOReportLegendPublic" = Yes + | | | | "Owner" = "com.apple.driver.AppleOLYHAL" + | | | | "LogDataType" = 0x1 + | | | | "Name" = "uartFirmwareLogs" + | | | | "NumberOfFiles" = 0x2 + | | | | "FileSize" = 0x200000 + | | | | "LogPolicy" = 0x0 + | | | | "NotifyThreshold" = 0x3e8 + | | | | "MinLogSizeToNotify" = 0x1000 + | | | | "Statistics" = {"timestamp"=0x3f80744d7f32a,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | "LogIdentifier" = "uartFirmwareLogs" + | | | | "PipeType" = 0x0 + | | | | "PipeSize" = 0x2000 + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe uartFirmwareLogs"}) + | | | | "FileOptions" = 0x0 + | | | | "DirectoryName" = "WiFi" + | | | | "Filename" = "uartFirmwareLogs" + | | | | } + | | | | + | | | +-o CCLogStream + | | | { + | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c5720,$ + | | | "Id" = 0x1 + | | | "IOClass" = "CCLogStream" + | | | "CoreCaptureLevel" = 0x7f + | | | "CoreCaptureFlag" = 0x0 + | | | "ConsoleLevel" = 0xffffffffffffffff + | | | "IOReportLegendPublic" = Yes + | | | "LogIdentifier" = "uartFirmwareLogs" + | | | "Name" = "UARTStream" + | | | "ConsoleFlag" = 0x0 + | | | "MiscInfo" = 0x0 + | | | } + | | | + | | +-o bluetooth + | | | | { + | | | | "IOInterruptSpecifiers" = (<4900000002000002>) + | | | | "AAPL,phandle" = <43000000> + | | | | "voice-record" = <> + | | | | "IOReportLegendPublic" = Yes + | | | | "local-mac-address" = + | | | | "supported-profiles" = + | | | | "function-int_timestamp" = <6900000074434941f3000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "bluetooth-taurus-calibration-bf" = <424c4f4218010000387a43d9010000000d00000002000000180100006c0600001cdf4421000000000400000084070000d40200001cdf4421000000000a000000580a0000800600001cdf44210000000005000000d81000007c0100001cdf4421000000000600000054120000640900001cdf44210000000007000000b81b00003c0100001cdf44210000000008000000f41c0000740200001cdf44210000000009000000681f0000cc0200001cdf4421000000000b00000034220000040100001cdf4421000000000c00000038230000141500001cdf4421000000000d0000004c3800009c0300001cdf4421000000000e000000e83b0000$ + | | | | "name" = <626c7565746f6f746800> + | | | | "vendor-id" = + | | | | "interrupt-parent" = <70000000> + | | | | "transport-encoding" = <07000000> + | | | | "coex" = <02000000> + | | | | "compatible" = <626c7565746f6f74682c6e383800> + | | | | "function-bootstrap_lock" = <4b434f4c> + | | | | "interrupts" = <4900000002000002> + | | | | "product-id" = + | | | | "bootstrap-delay" = <64000000> + | | | | "bluetooth-taurus-calibration" = <424c4f4218010000387a43d9010000000d00000002000000180100006c0600001cdf4421000000000400000084070000d40200001cdf4421000000000a000000580a0000800600001cdf44210000000005000000d81000007c0100001cdf4421000000000600000054120000640900001cdf44210000000007000000b81b00003c0100001cdf44210000000008000000f41c0000740200001cdf44210000000009000000681f0000cc0200001cdf4421000000000b00000034220000040100001cdf4421000000000c00000038230000141500001cdf4421000000000d0000004c3800009c0300001cdf4421000000000e000000e83b0000d00$ + | | | | "device_type" = <626c7565746f6f746800> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleBluetoothModule + | | | | { + | | | | "IOClass" = "AppleBluetoothModule" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBluetoothModule" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "Time Sync" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOUserClientClass" = "AppleBluetoothModuleUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "bluetooth" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleBluetoothModule" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "bluetooth" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBluetoothModule" + | | | | "autoOn" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBluetoothModule" + | | | | "InReset" = No + | | | | } + | | | | + | | | +-o BTDebug + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOMatchCategory" = "BTDebug" + | | | | | "IOClass" = "BTDebug" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOProviderClass" = "AppleBluetoothModule" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "BTDebugUserClient" + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOReportLegend" = ({"IOReportChannels"=((0x4c6f675265616453,0x180000001,"Read Success Count"),(0x4c6f675265616446,0x180000001,"Read Failure Count"),(0x4c6f6744756d7073,0x180000001,"Log Dump Count")),"IOReportGroupName"="Logging Global","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x4c6f674e6d627200,0x180000001,"Number of Logs"),(0x4c6f674279746500,0x180000001,"Number of Bytes")),"IOReportGroupName"="RealTime Logs","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x4c6f674$ + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | { + | | | | | "LogType" = 0x2 + | | | | | "IOClass" = "CCDataPipe" + | | | | | "CompressionDisabled" = 0x0 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Owner" = "com.apple.driver.BTDebug" + | | | | | "LogDataType" = 0x2 + | | | | | "Name" = "StateDump" + | | | | | "NumberOfFiles" = 0x0 + | | | | | "FileSize" = 0x0 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x0 + | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | "Statistics" = {"timestamp"=0x0,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | | "LogIdentifier" = "" + | | | | | "PipeType" = 0x1 + | | | | | "PipeSize" = 0x40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe StateDump"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "BT" + | | | | | "Filename" = "" + | | | | | } + | | | | | + | | | | +-o CCDataStream + | | | | { + | | | | "IOClass" = "CCDataStream" + | | | | "LogIdentifier" = "" + | | | | "Name" = "StateDump" + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c572$ + | | | | "IOReportLegendPublic" = Yes + | | | | "Id" = 0x1 + | | | | } + | | | | + | | | +-o AppleConvergedIPCOLYBTControl + | | | | { + | | | | "IOClass" = "AppleConvergedIPCOLYBTControl" + | | | | "memory_alloc_limit" = 0xa00000 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "lowpower_support" = {"ios"=No,"macos"=Yes} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOProviderClass" = "AppleBluetoothModule" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "AppleConvergedIPCControlUserClient" + | | | | "bootstage" = 0x3 + | | | | "devicematch" = Yes + | | | | "RTIDevice_V2" = {"di_msi"=0x0,"completion_ring"=({"count"=0x80,"setting"={"accum delay"=0x0,"intmod delay"=0x0,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"foot_size"=0x43,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"ac$ + | | | | "RTIDevice" = {"di_msi"=0x0,"completion_ring"=({"count"=0x80,"setting"={"accum delay"=0x0,"intmod delay"=0x0,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"foot_size"=0x43,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum$ + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "num_addr_bits" = {"ios"=0x40,"macos"=0x20} + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTControl" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "logSnapshotBufferSize" = 0x10000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "read_otp" = {"ios"=No,"macos"=Yes} + | | | | } + | | | | + | | | +-o AppleConvergedIPCOLYBTCoreDumpProvider + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTCoreDumpProvider" + | | | | "IOClass" = "AppleConvergedIPCOLYBTCoreDumpProvider" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOProviderClass" = "AppleConvergedIPCOLYBTControl" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIDevice + | | | | { + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "hci" + | | | | | "ACIPCInterfaceUnit" = 0x0 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "15F96DFF-FC3C-493B-AFDC-848A4A045A34" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "sco" + | | | | | "ACIPCInterfaceUnit" = 0x1 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "42B77348-3F28-441E-B196-C1EF6F503F78" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "acl" + | | | | | "ACIPCInterfaceUnit" = 0x2 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "6B04EFEA-6AB6-48CD-BD5E-4536C9C20072" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "debug" + | | | | | "ACIPCInterfaceTransport" = "userclient" + | | | | | "IOUserClientClass" = "AppleConvergedIPCUserClient" + | | | | | "ACIPCInterfaceUnit" = 0x3 + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCOLYBTLogProvider + | | | | { + | | | | "IOProbeScore" = 0x2710 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTLogProvider" + | | | | "IOClass" = "AppleConvergedIPCOLYBTLogProvider" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOProviderClass" = "AppleConvergedIPCRTIInterface" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ACIPCInterfaceProtocol" = "debug" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "tsi" + | | | | | "ACIPCInterfaceUnit" = 0x4 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOSkywalkNexusUUID" = "5BCEBD42-00FE-49CB-99C4-4D517A687E45" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | { + | | | | "ACIPCInterfaceProtocol" = "iso" + | | | | "ACIPCInterfaceUnit" = 0x5 + | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | } + | | | | + | | | +-o AppleConvergedIPCSkywalkInterface + | | | | { + | | | | } + | | | | + | | | +-o IOSkywalkKernelPipeBSDClient + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | "IOProviderClass" = "IOSkywalkInterface" + | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOResourceMatch" = "IOBSD" + | | | "IOSkywalkNexusUUID" = "26099CDC-92D7-4CE4-A4FA-41DA08B6C6C2" + | | | } + | | | + | | +-o apcie@80000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "lane-cfg" = <00000000> + | | | | "bus-range" = <0000000008000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <20000000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = <9b030000a4030000ad030000b6030000> + | | | | "#ports" = <04000000> + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "apcie-cio3pll-tunables" = <00000000040000000b0a000000000000010a0000000000002400000004000000000c00000000000000080000000000002800000004000000000f000000000000000b0000000000003800000004000000100000000000000000000000000000004c00000004000000ff000000000000009700000000000000e40000000400000000000e00000000000000020000000000fc00000004000000ffffff0000000000b4400b0000000000> + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <6e000000780000007900000084000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "apcie-phy-tunables" = <0c8000000400000000fc0f0000000000000001000000000010800000040000000000f03f000000000000000400000000> + | | | | "IODeviceMemory" = (({"address"=0x580000000,"length"=0x10000000}),({"address"=0x591000000,"length"=0x4000}),({"address"=0x59e000000,"length"=0x1c000}),({"address"=0x59e040000,"length"=0x40000}),({"address"=0x59c000000,"length"=0x8000}),({"address"=0x59e08a200,"length"=0x4000}),({"address"=0x59e088000,"length"=0x4000}),({"address"=0x594008000,"length"=0x8000}),({"address"=0x59401c000,"length"=0x1000}),({"address"=0x59e00c000,"length"=0x4000}),({"address"=0x594004000,"length"=0x4000}),({"address"=0x595008000,"length"=0x8000}),({"$ + | | | | "ranges" = <00000043000000a005000000000000a005000000000000200000000000000002000000c000000000000000c0050000000000004000000000> + | | | | "AAPL,phandle" = <44000000> + | | | | "power-gates" = <6e000000780000007900000084000000> + | | | | "name" = <617063696500> + | | | | "function-debug_gpio" = <700000004f4950470e00000001010000> + | | | | "apcie-axi2af-tunables" = <0000000004000000030200000000000001020000000000000c00000004000000ffff0f000000000000680100000000001000000004000000ffff0f000000000000b40000000000003400000004000000ffffffff00000000ffff0000000000003800000004000000ffffffff00000000ffff00000000000008010000040000003300ffff0000000031001000000000000c01000004000000ffff0f000000000000680100000000001001000004000000ffff0f000000000000b40000000000000006000004000000ff03f1c300000000010001c000000000000c000004000000ffffff0100000000ffffff0100000000480d000004000000ff07ff0700$ + | | | | "device_type" = <70636900> + | | | | "compatible" = <61706369652c743831323200> + | | | | "apcie-phy-ip-auspma-tunables" = <00a00000040000000f000000000000000a0000000000000008a00000040000000f000000000000000a000000000000000ca00000040000000f000000000000000a0000000000000010a00000040000000f000000000000000a0000000000000014a00000040000000f000000000000000a0000000000000038a0000004000000ffff000000000000710200000000000040a0000004000000000800000000000000000000000000004ca0000004000000ff3f000000000000ff0b00000000000050a00000040000000100000000000000010000000000000068a00000040000000700000000000000010000000000000070a0000004000000e03$ + | | | | "IOReportLegendPublic" = Yes + | | | | "apcie-phy-ip-pll-tunables" = <2800000004000000ffffff000000000000088000000000006c00000004000000ffffffff000000004c0000000000000080000000040000000100000000000000010000000000000094000000040000000100000000000000010000000000000004120000040000007c000000000000004400000000000000001000000400000000003f000000000000002300000000002c10000004000000fcffff030000000044444500000000001c500000040000000400000000000000000000000000000080500000040000000000c003000000000000400100000000885000000400000000000f000000000000000600000000008c500000040000000000c0$ + | | | | "reg" = <00000080050000000000001000000000000000910500000000400000000000000000009e0500000000c00100000000000000049e0500000000000400000000000000009c05000000008000000000000000a2089e0500000000400000000000000080089e0500000000400000000000000080009405000000008000000000000000c0019405000000001000000000000000c0009e050000000040000000000000004000940500000000400000000000000080009505000000008000000000000000c001950500000000100000000000000000019e050000000040000000000000004000950500000000400000000000000080009605000000008000000000000000c001960500$ + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "apcie-pcieclkgen-tunables" = <0000000004000000e0030000000000002002000000000000> + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (<9b030000>,,,) + | | | | } + | | | | + | | | +-o AppleT8122PCIe + | | | | { + | | | | "IOClass" = "AppleT8122PCIe" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent00000044" = <> + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleEmbeddedPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apcie,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"PCIe Port 0 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disa$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x102,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apcie,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIe" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIe" + | | | | } + | | | | + | | | +-o pci-bridge0@0 + | | | | { + | | | | "#msi-vectors" = <08000000> + | | | | "IOInterruptControllers" = ("apcie-0") + | | | | "built-in" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIePort is not serializable" + | | | | "pci-aspm-default" = 0x2 + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "function-perst" = <700000004f495047bb00000000000000> + | | | | "t-refclk-to-perst" = <64000000> + | | | | "function-dart_release_sid" = <480000006c655253> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "manual-enable-s2r" = <> + | | | | "default-apcie-options" = <0100f080> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_request_sid" = <4800000071655253> + | | | | "IOPCIExpressLinkCapabilities" = 0x737814 + | | | | "#size-cells" = <02000000> + | | | | "pci-max-payload-size" = <00000000> + | | | | "function-dart_force_active" = <4800000074636146> + | | | | "ranges" = <00000082000000c00000000000000082000000c0000000000000100200000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000a408000004000000ffff0000000000002020000000000000> + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | "maximum-link-speed" = <02000000> + | | | | "IODTPersist" = 0x0 + | | | | "class-code" = <00040600> + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIResourced" = Yes + | | | | "function-clkreq" = <700000004f495047b700000002000000> + | | | | "name" = <7063692d6272696467653000> + | | | | "IOInterruptSpecifiers" = (<0000000000000000>) + | | | | "AAPL,phandle" = <45000000> + | | | | "msi-vector-base" = <00000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "compatible" = <61706369652d62726964676500> + | | | | "revision-id" = <01000000> + | | | | "device-id" = <0c100000> + | | | | "manual-enable" = <> + | | | | "apcie-port" = <00000000> + | | | | "pcie-rc-tunables" = <780000000400000000700000000000000000000000000000b00100000400000001000000000000000000000000000000800b00000400000000007f000000000000001f0000000000> + | | | | "pci-l1pm-control" = <0f19554000000000> + | | | | "link-timeout-workaround" = <01000000> + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "perst-to-config" = <64000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "pcie-rc-gen4-shadow-tunables" = <8801000004000000ff000000000000004400000000000000900800000400000000000003000000000000000100000000a8080000040000000fffff00000000000100000000000000> + | | | | "IOPCIConfigured" = Yes + | | | | "function-dart_self" = <48000000666c6553> + | | | | "pcidebug" = "0:0:0(1:1)" + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "enable-ptm" = <> + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | "pcie-rc-gen3-shadow-tunables" = <54010000040000000f0f0000000000000404000000000000900800000400000000000003000000000000000000000000a8080000040000000fffff00000000000100000000000000> + | | | | "vendor-id" = <6b100000> + | | | | "#address-cells" = <03000000> + | | | | } + | | | | + | | | +-o IOPP + | | | | { + | | | | "IOClass" = "ApplePCIEHostBridge" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOProviderClass" = "IOPCIDevice" + | | | | "IOPCIPowerOnProbe" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x0,"CurrentPowerState"=0x2,"CapabilityFlags"=0x102,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1388 + | | | | "IONameMatch" = "apcie-bridge" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "apcie-bridge" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIe" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | } + | | | | + | | | +-o wlan@0 + | | | | | { + | | | | | "IOPCIDeviceMapperPageSize" = 0x4000 + | | | | | "IOPCIMSIMode" = Yes + | | | | | "assigned-addresses" = <10000182000000c200000000000001000000000018000182000000c1000000000000000100000000> + | | | | | "vendor-id" = + | | | | | "class-code" = <00800200> + | | | | | "subsystem-vendor-id" = <6b100000> + | | | | | "IOPCIExpressLinkCapabilities" = 0x46f812 + | | | | | "IOPCIDeviceMemoryMapBase" = 0x400203f + | | | | | "IOName" = "pci14e4,4434" + | | | | | "#size-cells" = <00000000> + | | | | | "cfg-io-timeout" = <000000000010000050c30000> + | | | | | "iommu-parent" = <49000000> + | | | | | "pcidebug" = "1:0:0" + | | | | | "IOChildIndex" = 0x1 + | | | | | "IOPCIExpressLinkStatus" = 0x3012 + | | | | | "IOPCIDeviceMemoryMapSize" = 0xdf81 + | | | | | "pci-aspm-default" = 0x2 + | | | | | "IOPCIExpressCapabilities" = 0x2 + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci")) + | | | | | "IOInterruptControllers" = ("ApplePCIEMSIController-apcie") + | | | | | "pci-max-latency" = <08100810> + | | | | | "built-in" = <00000000> + | | | | | "IOPCIResourced" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | | "IODeviceMemory" = (({"address"=0x5c2000000,"length"=0x10000}),({"address"=0x5c1000000,"length"=0x1000000})) + | | | | | "AAPL,phandle" = <46000000> + | | | | | "name" = <776c616e00> + | | | | | "subsystem-id" = <88430000> + | | | | | "mem-io-timeout" = + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "device_type" = <706369652d64657669636500> + | | | | | "compatible" = <776c616e2d706369652c62636d3433383700776c616e2d706369652c62636d00> + | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | | "reg" = <000001000000000000000000000000000000000010000102000000000000000000000100000000001800010200000000000000000000000100000000> + | | | | | "device-id" = <34440000> + | | | | | "#address-cells" = <01000000> + | | | | | "pci-l1pm-control" = <0f00554000000000> + | | | | | "revision-id" = <04000000> + | | | | | "IOInterruptSpecifiers" = (<3404000000000100>) + | | | | | } + | | | | | + | | | | +-o AppleBCMWLANBusInterfacePCIe + | | | | | { + | | | | | "pcie-throttle-firmware-load" = <01000000> + | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "built-in" = <00> + | | | | | "CoreCaptureIOServiceProperties" = {"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"} + | | | | | "wifi-calibration-msf" = <424c4f42a00000000414e46c010000000700000003000000a0000000af0f00001cdf442100000000030000004f1000001a0200001cdf4421000000000400000069120000b40100001cdf442100000000040000001d140000b40100001cdf44210000000004000000d1150000c40000001cdf4421000000000200000095160000040000005172757b00000000010000009916000064000000d5750a6a00000000ad0f08000000010019020b0002038203820396039603960396039603960396039602af02af02af02af02af02af02af02af02af02af02af02af038203820396039603960396039603960396039602af02af02af02af02af02a$ + | | | | | "wifi-antenna-sku-info" = <01000000000000005830000000000000> + | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | "IOMatchCategory" = "com.apple.wifibus.driver" + | | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | "wlan.tx.ring.size" = 0x400 + | | | | | "bcom.roam.profiles" = <0c00f6ffb5ff0200b80bb4000200b0041400bfff32001000b5ff80ff02005a001e0001001e000c00bfff3200000000000000000000000000000000000000000000001000b5ff80ff02005a001e0001001e000c0080ff0a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400b5ff80ff02005a001e000200b4000c00bfff320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400b5ff80ff02005a001e000200b4000c0080ff0a0000000000000000000000000000000000000000000000000000000000000$ + | | | | | "wlan.awdl.params" = <0000000000000000> + | | | | | "wlan.aoac-allowed" = <> + | | | | | "wlan.tethering.enabled" = <01000000> + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "wlan.pcie.DSState" = No + | | | | | "local-mac-address" = + | | | | | "wlan.listen.interval" = <0a000000> + | | | | | "IOClass" = "IOUserService" + | | | | | "wlan.enhancedlocale.enabled" = <00000000> + | | | | | "wlan.bss.6GHz-preference" = + | | | | | "wlan.nan.enabled" = <01000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleBCMWLANBusInterfacePCIe","IOReportChannels"=((0x507772537465,0xe00020002,"Power States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Power States"},{"IOReportGroupName"="AppleBCMWLANBusInterfacePCIe","IOReportChannels"=((0x44532054494d4520,0x400020003,"Deep Sleep Exit Delay")),"IOReportChannelInfo"={"IOReportChannelConfig"=<01000000000000000100000001000000050000000000000001000000010000000a000000000000000100000001000000190000000$ + | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | "IONameMatched" = "wlan" + | | | | | "bcom.btc.params" = <060000000f00000008000000c8af000009000000983a00000a000000204e0000> + | | | | | "wlan.autocountry.enabled" = <00000000> + | | | | | "wlan.bss.5GHz-preference" = + | | | | | "wlan.wnm.enabled" = <01000000> + | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","CoreCaptureIOServiceProperties"={"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"},"IOProviderClass"="IOPCIDevice","IOUserServerCDHash"="91259a60159ec999e19dc066ace8775$ + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "wlan.fast_enterprise_nw.enabled" = <01000000> + | | | | | "wlan.tx.submission-queue.size" = 0x400 + | | | | | "bcom.ps.realtime" = <0300c80000000100a00f0000> + | | | | | "function-sac" = <26010000434341533064636c3164636c> + | | | | | "bcom.wow.magic-packet" = No + | | | | | "bcom.roam.default" = <01005a001e00070002000000b5ff1400b5ff0a00> + | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | "wlan.vo.blockack" = Yes + | | | | | "wlan.dfsproxy.enabled" = <0000000000000000> + | | | | | "WiFiCapability" = {"awdl"=Yes,"ranging"=Yes} + | | | | | "wlan.ocl.enabled" = <> + | | | | | "wlan.dsa.power.boost" = <01000303> + | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | "name" = <776c616e00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "module-instance" = "dnieper" + | | | | | "AAPL,phandle" = <42000000> + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "IOInterruptSpecifiers" = (<1000000002000000>) + | | | | | "wlan.enterprise.params" = <07000000> + | | | | | "wlan.enhancedTrgDisc" = <00000000> + | | | | | "IOUserClass" = "AppleBCMWLANBusInterfacePCIe" + | | | | | "IOPCIMatch" = "0x000014e4&0x000044ff" + | | | | | "wlan.rx.ring.size" = 0x300 + | | | | | "ChipOTP" = <08418e8714e8314038c2fa0100000000f9c12d900000000000000000e831000000000040557f0180ff01e7f81f000000000000000000000000000000340000000000000034030000000000001e0000000000000008418e8714109f7687d20a9e336a802d1526273b8d8b23ac1f0000000000000000210000000000101300400088436b10af0c7e3b08ebc42b642a6429642ce73c00463c01860103021218059e148a200020001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | "OTP" = <151d08000000733d4330004d3d574c4d54206d3d342e37202020563d7500ff8009830c065145660001e80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | "wlan.6GHz.supported" = Yes + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "IOProviderClass" = "IOPCIDevice" + | | | | | "wlan.sdb.profile" = <> + | | | | | "wlan.mimo_ps.enabled" = <> + | | | | | "IONameMatch" = "wlan" + | | | | | "interrupts" = <1000000002000000> + | | | | | "amfm-managed-port-control" = <> + | | | | | "wlan.skywalk.packetpoolsize" = 0x2500 + | | | | | "bcom.roam.enterprise" = <01005a001e00070002000000baff0c00baff0c00> + | | | | | "IONetworkRootType" = "airport" + | | | | | "IOUserClasses" = ("AppleBCMWLANBusInterfacePCIe","AppleBCMWLANBusInterface","IOService","OSObject") + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | "interrupt-parent" = <70000000> + | | | | | "bcom.ps.default" = <0300c80000000100a00f0000> + | | | | | "device_type" = <776c616e00> + | | | | | "wlan.dfrts" = <> + | | | | | "vendor-id" = "USI" + | | | | | "wifi-module-sn" = <5145660001e8> + | | | | | "wlan.lpas-allowed" = <> + | | | | | "wlan.lowlatency" = <01000000> + | | | | | "wlan.voice_enterprise_nw.enabled" = <01000000> + | | | | | "wlan.llw.tx.ring.size" = 0x200 + | | | | | "HWIdentifiers" = {"V"="u","M"="WLMT","C"=0x1124,"s"="C0","P"="dnieper","m"="4.7"} + | | | | | "bcom.roam.enabledenhanced" = <01000000> + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x1 + | | | | | | "Name" = "DriverLogs" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x1000000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "wlan0" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DriverLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "AppleBCMWLAN_Logs" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0x5 + | | | | | | "Name" = "loggerstream" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "wlan0" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0x1 + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x46b80 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "IO80211Logger_Infrastructure" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "io80211" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "IO80211Logger_SoftAP" + | | | | | | "Id" = 0x3 + | | | | | | "LogIdentifier" = "io80211" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "Name" = "IO80211Logger_AirLink" + | | | | | "Id" = 0x4 + | | | | | "LogIdentifier" = "io80211" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x0 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x0 + | | | | | | "Name" = "DatapathEvents" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x2800000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DatapathEvents"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "AppleBCMWLAN_Datapath" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <080000000000a5a5> + | | | | | | "Name" = "requestiotxpcie" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x7 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | | | "Name" = "rxpacketpcie" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x3 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <070000000000a5a5> + | | | | | | "Name" = "driverstatepcie" + | | | | | | "Id" = 0x3 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x2003 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <030000000000a5a5> + | | | | | | "Name" = "commander" + | | | | | | "Id" = 0x4 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x3 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <020000000000a5a5> + | | | | | | "Name" = "events" + | | | | | | "Id" = 0x5 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x1 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_Infrastructure" + | | | | | | "Id" = 0x6 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_Infrastructure" + | | | | | | "Id" = 0x7 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_Infrastructure" + | | | | | | "Id" = 0x8 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_Infrastructure" + | | | | | | "Id" = 0x9 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpf_tap_in_Infrastructure" + | | | | | | "Id" = 0xa + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_SoftAP" + | | | | | | "Id" = 0xb + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_SoftAP" + | | | | | | "Id" = 0xc + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_SoftAP" + | | | | | | "Id" = 0xd + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_SoftAP" + | | | | | | "Id" = 0xe + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpf_tap_in_SoftAP" + | | | | | | "Id" = 0xf + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_AirLink" + | | | | | | "Id" = 0x10 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_AirLink" + | | | | | | "Id" = 0x11 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_AirLink" + | | | | | | "Id" = 0x12 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_AirLink" + | | | | | | "Id" = 0x13 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "StreamHeader" = <0500000000007373> + | | | | | "Name" = "bpf_tap_in_AirLink" + | | | | | "Id" = 0x14 + | | | | | "LogIdentifier" = "" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x96 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCDataPipe" + | | | | | | "LogType" = 0x2 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x2 + | | | | | | "Name" = "StateSnapshots" + | | | | | | "NumberOfFiles" = 0x0 + | | | | | | "FileSize" = 0x0 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x0 + | | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "0" + | | | | | | "PipeType" = 0x1 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x80 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe StateSnapshots"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "StateSnapshots" + | | | | | | } + | | | | | | + | | | | | +-o CCDataStream + | | | | | { + | | | | | "IOClass" = "CCDataStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "Name" = "FaultReporter" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCFaultReporter + | | | | | { + | | | | | "IOUserClass" = "CCIOService" + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "IOClass" = "CCFaultReporter" + | | | | | "Owners" = ["com.apple.iokit.IO80211Family","com.apple.driver.AppleBCMWLANCoreV3.0","com.apple.driver.AppleMultiFunctionManager","com.apple.driver.AppleOLYHAL"] + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x0 + | | | | | | "Name" = "FirmwareBusLogs" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x200000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "brcm0" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe FirmwareBusLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "FirmwareBusLogs" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | | "Name" = "Firmware_Bus" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "CoreCaptureLevel" = 0x7f + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x96 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "CoreCaptureFlag" = 0x80000000000 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCDataPipe" + | | | | | | "LogType" = 0x2 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x6 + | | | | | | "Name" = "CrashTracerLogs" + | | | | | | "NumberOfFiles" = 0x0 + | | | | | | "FileSize" = 0x0 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x0 + | | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "brcm0" + | | | | | | "PipeType" = 0x1 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x40 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe CrashTracerLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "CrashTracerLog" + | | | | | | } + | | | | | | + | | | | | +-o CCDataStream + | | | | | { + | | | | | "IOClass" = "CCDataStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "Name" = "CrashTracerStream" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o AppleBCMWLANCore + | | | | | | { + | | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "built-in" = <00> + | | | | | | "CoreCaptureIOServiceProperties" = {"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"} + | | | | | | "mDNSOffloadEnable: bdo" = <010004000000000000> + | | | | | | "TCP Keepalive Probe Response Packet" = <0000000000000000000000000000000045000028321f00004006e42cc0a800171139928ce4ad14674140394edffcb1e05010000045cf0000> + | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | "DriverKit_IO80211AWDLLLW" = {"IOUserClass"="AppleBCMWLANLowLatencyInterface","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IO80211InterfaceRole"="LowLatency","IOClass"="IOUserNetworkWLAN","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IOInterfaceUnit"=0x0} + | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Debuggable - IO80211_io80211isDebuggable" = No + | | | | | | "mDNSOffloadDownloadConfig : bdo blob fragnum: 0" = <000046003e0000003e00000030504a4200000000010101c0a8016718fe8000fe8000000000000000fb837300e5f78540ff0200000000000000000001ffe5f7850000000000000000000000> + | | | | | | "Debuggable - isDebugCommandActionAllowed" = No + | | | | | | "FirmwareLoaded" = Yes + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "AppleBCMWLAN.BuildDate" = "Mar 9 2025 20:58:41" + | | | | | | "IOClass" = "IOUserService" + | | | | | | "AppleBCMWLAN.BuildType" = "release" + | | | | | | "ReporterProxy" = {"IOClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.kpi.iokit","IOProviderClass"="IOUserService","IOUserClass"="IO80211ReporterProxy"} + | | | | | | "DriverKitDriver" = Yes + | | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | | "DriverKit_IO80211NANIR" = {"IOUserClass"="AppleBCMWLANNANDataInterface","IO80211VirtualInterfaceRole"="WiFi-Aware Data","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","kOSBundleDextUniqueIdentifier"=,"IOUserClass"="AppleBCMWLANCore","IOUserServerName"="com.apple.bcmwlan","AppleBCMWLANUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="AppleBCMWLANUserClient"},"IOPersonalityPublisher"="com.apple.DriverKit-AppleBCMWLAN","CoreCaptureIOServiceProperties"={"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUs$ + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "DriverKit_IO80211SoftAP" = {"IOUserClass"="AppleBCMWLANIO80211APSTAInterface","IO80211VirtualInterfaceRole"="SoftAP","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x1} + | | | | | | "wlan.hw.feature-flags" = 0x0 + | | | | | | "ModuleInfo" = "chip='s=C0' module='M=WLMT m=4.7 V=u' prod='17460' manuf='5348'" + | | | | | | "FirmwareLoader" = {"IOClass"="IOUserService","IOUserClass"="AppleBCMWLANCoreFirmwareLoader"} + | | | | | | "AppleBCMWLANUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="AppleBCMWLANUserClient"} + | | | | | | "TCP Keepalive Probe Packet" = <0000000000000000000000000000000045000028321f00004006e42cc0a800171139928ce4ad14674140394ddffcb1e05010000045d00000> + | | | | | | "Last valid: pkt_filter_ports" = <00000200581b82dd> + | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | "IO80211Family.BuildTag" = "IO80211_driverkit-1475.34" + | | | | | | "setTCPAliveOffloadEnable: tko" = <0300040000000000> + | | | | | | "PTM_Mode" = 0x1 + | | | | | | "TKO status data" = <0400110010ffffffffffffffffffffffffffffffffffffff3d0000000000000000000205000003050000040500000b0500000100> + | | | | | | "getTCPAliveOffloadWakeReason: tko" = <04000000> + | | | | | | "AppleBCMWLAN.BuildTag" = "AppleBCMWLANV3_driverkit-1425.41" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "Debuggable - IO80211_isDebugCommandActionAllowed" = No + | | | | | | "ChipSet" = 0x1124 + | | | | | | "IOUserClass" = "AppleBCMWLANCore" + | | | | | | "IO80211Family.BuildDate" = "Mar 9 2025 20:59:13" + | | | | | | "IO80211Family.BuildTagGit" = ""IO80211_driverkit-1475.34"" + | | | | | | "PlatformConfigFileName" = "dnieper-PlatformConfig.plist" + | | | | | | "TxCapVersion" = "Data Title: Dnieper_Final_WIFICap_2023Sep15_v3.0 Data Creation: 2025-02-27 17:22:35 " + | | | | | | "DriverKitDriverPlatformType" = "macOS" + | | | | | | "nicproxy_info_t Handoff data" = <88000000c484fc059519000001010103440000004800000049000000790000000000000068000000680000000000000008000000f82401005c0000005c00000000000000000000004800000048000000c0a8016718fe8000000000000000fb837300e5f785fe80000000000000d0f9bffffe19a8d2fe80000000000000d0f9bffffe19a8d2404040> + | | | | | | "FirmwareVersion" = "wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c" + | | | | | | "WLAN configurePNONetworks 'pfn_add' data" = <06000000446f6d5f3632000000000000000000000000000000000000000000000000000010b500000100000000000000ffffffff0100000018000000325f34475f4d656761466f6e5f4652313030302d46343738000000000000000010b500000100000000000000ffffffff010000001600000035475f4d656761466f6e5f4652313030302d463437380000000000000000000010b500000100000000000000ffffffff010000000a000000626d7374755f776966690000000000000000000000000000000000000000000010b500000100000000000000ffffffff010000000f00000054502d4c696e6b5f393$ + | | | | | | "LastSleepMode" = 0x3 + | | | | | | "Debuggable - isVerboseDebugLoggingAllowed" = Yes + | | | | | | "IODEXTMatchCount" = 0x1 + | | | | | | "IOPropertyMatch" = {"IOUserClass"="AppleBCMWLANBusInterfacePCIe"} + | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | "DriverKit_IO80211NANLLW" = {"IOUserClass"="AppleBCMWLANLowLatencyInterface","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IO80211InterfaceRole"="LowLatency","IOClass"="IOUserNetworkWLAN","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IOInterfaceUnit"=0x1} + | | | | | | "RequestedFiles" = ({"Firmware"="C-4388__s-C0/dnieper.trx","Platcfg"="C-4388__s-C0/dnieper-X0.pcfb","NVRAM"="C-4388__s-C0/P-dnieper-X0_M-WLMT_V-u__m-4.7.txt","TxCap"="C-4388__s-C0/dnieper-X0.txcb","Signature"="C-4388__s-C0/dnieper.sig","Regulatory"="C-4388__s-C0/dnieper-X0.clmb"}) + | | | | | | "IOFeatures" = 0x0 + | | | | | | "setTCPAliveOffloadConfig: tko" = <0200a8000000ade4671400004e394041e0b1fcdf36003600c0a800171139928cbc0f9a00f47906fdd0c9fc1b080045000028321f00004006e42cc0a800171139928ce4ad14674140394ddffcb1e05010000045d00000bc0f9a00f47906fdd0c9fc1b080045000028321f00004006e42cc0a800171139928ce4ad14674140394edffcb1e05010000045cf00000000000000000000000000000000000000000000000000000000000000000000> + | | | | | | "calload_status" = "0" + | | | | | | "IOUserClasses" = ("AppleBCMWLANCore","IO80211Controller","IOService","OSObject") + | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | "WLAN mDNSOffload data" = <30504a4200000000010101c0a8016718fe8000fe8000000000000000fb837300e5f78540ff0200000000000000000001ffe5f785000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | "setTCPKeepAliveParam: tko" = <010008008403050005000000> + | | | | | | "DriverKit_IO80211AWDL" = {"IOUserClass"="AppleBCMWLANProximityInterface","IO80211VirtualInterfaceRole"="AirLink","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "AppleBCMWLAN.BuildTagGit" = ""AppleBCMWLANV3_driverkit-1425.41"" + | | | | | | "Debuggable - isSoCRAMCaptureAllowed" = Yes + | | | | | | "vendor-id" = "USI" + | | | | | | "LastWakeReason" = 0x0 + | | | | | | "Debuggable - isDevFusedOrCSRInternal" = No + | | | | | | "CoreDriverInitializationTime" = 0xd7ed314b2 + | | | | | | "CLMVersion" = "API: 26.0 Data: Oly.Dnieper Compiler: 1.70.2 ClmImport: 1.69.0 Customization: v4 Final 240319 Creation: 2025-02-27 17:26:37 " + | | | | | | "ModuleDictionary" = {"ManufacturerID"=0x14e4,"ModuleInfo"="M=WLMT m=4.7 V=u","subsystem-vendor-id"=0x106b,"ChipInfo"="s=C0","ProductID"=0x4434} + | | | | | | "DriverKit_IO80211NAN" = {"IOUserClass"="AppleBCMWLANNANInterface","IO80211VirtualInterfaceRole"="WiFi-Aware Discovery","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "initializeKeepAliveCapabilities: tko" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IO80211ReporterProxy + | | | | | | { + | | | | | | "IOUserClass" = "IO80211ReporterProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | "IOClass" = "IOUserService" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="Chip","IOReportChannels"=((0x2054436e42797465,0x100140001,"Tx Bytes"),(0x2052436e42797465,0x100140001,"Rx Bytes")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x900820000000000},"IOReportSubGroupName"="Bytes Transferred"},{"IOReportGroupName"="Chip","IOReportChannels"=((0x4d414344614d5241,0x180100001,"Rx Data Frame matching RA"),(0x4d41434d674d5241,0x180100001,"Rx Management Frame matching RA"),(0x4d414343744d5241,0x180100001,"Rx Control Frame matching RA"),(0x4d414344614$ + | | | | | | "IOUserClasses" = ("IO80211ReporterProxy","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x0 + | | | | | | | "Name" = "ControlPath" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x6666 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "ControlPath" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x10000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe ControlPath"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "ControlPath" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | | { + | | | | | | | "IOClass" = "CCLogStream" + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "StreamHeader" = <0600000000007373> + | | | | | | | "Name" = "IO80211 IOCTL Stream" + | | | | | | | "Id" = 0x1 + | | | | | | | "LogIdentifier" = "ioctl" + | | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | | "MiscInfo" = 0x96 + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "ConsoleFlag" = 0x0 + | | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0700000000007373> + | | | | | | "Name" = "IO80211 Event Stream" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "event" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "LQMLogging" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x400000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "LQMLogging" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe LQMLogging"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "LQMLogging" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "LQMLogging" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "LQMLogging" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANSkywalkInterface + | | | | | | | { + | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | "IO80211BSSID" = <000000000000> + | | | | | | | "IO80211RSNDone" = Yes + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IO80211ChannelBandwidth" = 0x50 + | | | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | "IO80211CountryCode" = "RU" + | | | | | | | "mDNS_Keepalive" = Yes + | | | | | | | "IO80211SSID" = "" + | | | | | | | "IO80211InterfaceRole" = "Infrastructure" + | | | | | | | "IOPropertyMatch" = {"IOUserClass"="AppleBCMWLANCore"} + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANSkywalkInterface","AppleBCMWLANInfraProtocol","IO80211InfraProtocol","IO80211InfraInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | | | "built-in" = <00> + | | | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | | "mDNS_KEY" = "2009-07-30" + | | | | | | | "IO80211ChannelFrequency" = 0x143c + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOMACAddress" = + | | | | | | | "IO80211HardwareVersion" = "vendorid: 0x14e4 deviceid: 0x4434 radiorev: 0x3850dd chipnum: 0x4388 chiprev: 0x4 corerev: 0x57 boardid: 0x9c5 boardvendor: 0x14e4 boardrev: 0x1100 driverrev: 0x0 ucoderev: 0x5f6083e bus: 0x0 " + | | | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserNetworkWLAN","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IOPropertyMatch"={"IOUserClass"="AppleBCMWLANCore"},"IO80211InterfaceRole"="Infrastructure","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOUserServerCDHash"="91259a60159ec999e19dc066ace8775d4a6a80e8","IOUserServerPreserveUserspaceReboot"=Yes,"IOUserServerName"="com.apple.bcmwlan","IOPersonalityPublisher"="com.appl$ + | | | | | | | "IO80211Channel" = 0x24 + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOInterfaceName" = "en0" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IOUserClass" = "AppleBCMWLANSkywalkInterface" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IO80211DriverVersion" = "wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IO80211Locale" = "Unknown" + | | | | | | | "IO80211Band" = "5 GHz" + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkLegacyEthernet + | | | | | | | | { + | | | | | | | | "IOClass" = "IOSkywalkLegacyEthernet" + | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOProviderClass" = "IOSkywalkEthernetInterface" + | | | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x113,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOMACAddress" = + | | | | | | | | "IOLinkSpeed" = 0x0 + | | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | | "AVBControllerState" = 0x1 + | | | | | | | | "IOMatchCategory" = "IOSkywalkLegacyEthernet" + | | | | | | | | "IOSelectedMedium" = "" + | | | | | | | | "IOClassNameOverride" = "IO80211Controller" + | | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOFeatures" = 0x0 + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOLinkStatus" = 0x3 + | | | | | | | | "IOMaxPacketSize" = 0x5ee + | | | | | | | | "IOActiveMedium" = "" + | | | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o en0 + | | | | | | | | { + | | | | | | | | "IOLocation" = "" + | | | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | | | "BSD Name" = "en0" + | | | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | | "IOInterfaceFlags" = 0x822 + | | | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | | | "IOInterfaceState" = 0x3 + | | | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x0,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOInterfaceExtraFlags" = 0x0 + | | | | | | | | "IOPrimaryInterface" = Yes + | | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | | | "IOBuiltin" = Yes + | | | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IONetworkStack + | | | | | | | | { + | | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | | | "IOClass" = "IONetworkStack" + | | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOProviderClass" = "IOResources" + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IONetworkStackUserClient + | | | | | | | { + | | | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "035EE168-357F-4B1B-A12E-33751294E9DE" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User RX Submission Queue","IOReportChannels"=((0x534b725300000000,0x180000001,"Enabled"),(0x534b725300000001,0x180000001,"Capacity"),(0x534b725300000002,0x180000001,"Buffer Size"),(0x534b725300000003,0x180000001,"Queue State"),(0x534b725300000004,0x180000001,"Packet Count"),(0x534b725300000005,0x180000001,"Dequeued Packets"),(0x534b725300000006,0x180000001,"Returned Packets"),(0x534b725300000007,0x180000001,"Dequeue Count"),(0x534b725300000008,0x180000001,"Dequeue Errors$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 3187, wifivelocityd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_Infrastructure_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_Infrastructure_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_Infrastructure_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_Infrastructure_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANIO80211APSTAInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "BSD Name" = "ap1" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOMACAddress" = <1aa3ef2c6a58> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IO80211VirtualInterfaceRole" = "SoftAP" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANIO80211APSTAInterface","IO80211SapProtocol","IO80211VirtualInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "ap1" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x1 + | | | | | | | "IOInterfaceNamePrefix" = "ap" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANIO80211APSTAInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "B8014DA0-295D-45C2-99F9-BF0CEFEAFFE8" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000400,0x180000001,"Enabled"),(0x534b744300000401,0x180000001,"Capacity"),(0x534b744300000402,0x180000001,"Buffer Size"),(0x534b744300000403,0x180000001,"Queue State"),(0x534b744300000404,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F ap1, QSet ID 0xd11d0000, Queue ID 4"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b74530000$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_SoftAP_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_SoftAP_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_SoftAP_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_SoftAP_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANProximityInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOMACAddress" = <92618cc2dbe2> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IO80211VirtualInterfaceRole" = "AirLink" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANProximityInterface","IO80211AWDLProtocol","IO80211VirtualInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "awdl0" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOInterfaceNamePrefix" = "awdl" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANProximityInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "2FA198BF-F272-4340-AF2D-98C997B6C88C" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000400,0x180000001,"Enabled"),(0x534b744300000401,0x180000001,"Capacity"),(0x534b744300000402,0x180000001,"Buffer Size"),(0x534b744300000403,0x180000001,"Queue State"),(0x534b744300000404,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F awdl0, QSet ID 0x43c30000, Queue ID 4"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b745300$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_AirLink_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_AirLink_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_AirLink_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_AirLink_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x0 + | | | | | | | "Name" = "IO80211P2PPeerManager" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0xa00000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x6666 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x10000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe IO80211P2PPeerManager"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "io80211Family" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpfIO80211AWDL" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "IO80211P2P" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANLowLatencyInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IO80211InterfaceRole" = "LowLatency" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "mDNS_Keepalive" = Yes + | | | | | | | "IOMACAddress" = <92618cc2dbe2> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "built-in" = <00> + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "mDNS_KEY" = "2009-07-30" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANLowLatencyInterface","AppleBCMWLANSkywalkInterface","AppleBCMWLANInfraProtocol","IO80211InfraProtocol","IO80211InfraInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "llw0" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOInterfaceNamePrefix" = "llw" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANLowLatencyInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | { + | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | "IOSkywalkNexusUUID" = "F8B3A6E3-D383-42A7-B43A-FEA3AB995CA0" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000100,0x180000001,"Enabled"),(0x534b744300000101,0x180000001,"Capacity"),(0x534b744300000102,0x180000001,"Buffer Size"),(0x534b744300000103,0x180000001,"Queue State"),(0x534b744300000104,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F llw0, QSet ID 0x0, Queue ID 1"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b745300000000,0$ + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x1 + | | | | | | "Name" = "Interface_LowLatency_0" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x200000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x20000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_LowLatency_0"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "Interface_LowLatency_0" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "Name" = "Interface_LowLatency_0" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x0 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | { + | | | | | "IOClass" = "CCLogPipe" + | | | | | "LogType" = 0x0 + | | | | | "IOUserClass" = "CCIOService" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CompressionDisabled" = 0x0 + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LogDataType" = 0x0 + | | | | | "Name" = "FirmwareEcounterLogs" + | | | | | "NumberOfFiles" = 0x2 + | | | | | "FileSize" = 0x200000 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x3e8 + | | | | | "MinLogSizeToNotify" = 0x3333 + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CCIOServiceObjType" = 0x138a + | | | | | "LogIdentifier" = "brcm0" + | | | | | "PipeType" = 0x0 + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "PipeSize" = 0x8000 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe FirmwareEcounterLogs"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "WiFi" + | | | | | "Filename" = "FirmwareEcounterLogs" + | | | | | } + | | | | | + | | | | +-o CCLogStream + | | | | { + | | | | "IOClass" = "CCLogStream" + | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | "Name" = "FirmwareEcounterLogs" + | | | | "Id" = 0x1 + | | | | "LogIdentifier" = "" + | | | | "CoreCaptureLevel" = 0x7f + | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | "MiscInfo" = 0x96 + | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | "ConsoleFlag" = 0x0 + | | | | "CoreCaptureFlag" = 0x80000000000 + | | | | "CCIOServiceObjType" = 0x138b + | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | "IOUserClass" = "CCIOService" + | | | | } + | | | | + | | | +-o bluetooth-pcie@0,1 + | | | | { + | | | | "IOPCIDeviceMapperPageSize" = 0x4000 + | | | | "assigned-addresses" = <10010182000001c200000000008000000000000018010182000000c0000000000000000100000000> + | | | | "vendor-id" = + | | | | "class-code" = <00800200> + | | | | "subsystem-vendor-id" = <6b100000> + | | | | "IOPCIExpressLinkCapabilities" = 0x46d812 + | | | | "IOPCIDeviceMemoryMapBase" = 0x400203f + | | | | "IOName" = "pci14e4,5f72" + | | | | "#size-cells" = <00000000> + | | | | "IOPCIPMCSState" = 0x4008 + | | | | "cfg-io-timeout" = <000000000010000050c30000> + | | | | "iommu-parent" = <4a000000> + | | | | "pcidebug" = "1:0:1" + | | | | "IOChildIndex" = 0x2 + | | | | "IOPCIExpressLinkStatus" = 0x3012 + | | | | "IOPCIDeviceMemoryMapSize" = 0xdf81 + | | | | "pci-aspm-default" = 0x2 + | | | | "IOPCIExpressCapabilities" = 0x2 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci")) + | | | | "IOInterruptControllers" = ("ApplePCIEMSIController-apcie") + | | | | "pci-max-latency" = <08100810> + | | | | "built-in" = <00000000> + | | | | "IOPCIResourced" = Yes + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | "IODeviceMemory" = (({"address"=0x5c2010000,"length"=0x8000}),({"address"=0x5c0000000,"length"=0x1000000})) + | | | | "AAPL,phandle" = <47000000> + | | | | "name" = <626c7565746f6f74682d7063696500> + | | | | "subsystem-id" = <88430000> + | | | | "mem-io-timeout" = + | | | | "device_type" = <706369652d64657669636500> + | | | | "compatible" = <776c616e2d706369652c62636d3433383700776c616e2d706369652c62636d00> + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <000101000000000000000000000000000000000010010102000000000000000000800000000000001801010200000000000000000000000100000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)"))$ + | | | | "device-id" = <725f0000> + | | | | "#address-cells" = <01000000> + | | | | "revision-id" = <04000000> + | | | | "IOInterruptSpecifiers" = (<3304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o AppleConvergedPCI + | | | { + | | | "IOClass" = "AppleConvergedPCI" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedPCI" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IOPCITunnelCompatible" = Yes + | | | "IOProbeScore" = 0x3e8 + | | | "IOPCIMatch" = "0x5fa014e4 0x5f6914e4 0x5f3114e4 0x5f7114e4 0x5f7214e4 0x5f8314e4" + | | | "port_auto_on" = {"ios"=No,"macos"=Yes} + | | | "IOMatchCategory" = "AppleConvergedPCI" + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedPCI" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedPCI" + | | | "IOPMResetPowerStateOnWake" = Yes + | | | "IOPCIUseDeviceMapper" = Yes + | | | } + | | | + | | +-o dart-apcie0@94000000 + | | | | { + | | | | "dart-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<9c030000>) + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <48000000> + | | | | "IODeviceMemory" = (({"address"=0x594000000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61706369653000> + | | | | "interrupt-parent" = <69000000> + | | | | "vm-offset" = <00000000000000000000000800000000> + | | | | "sid" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <9c030000> + | | | | "manual-availability" = <01000000> + | | | | "vm-base" = <0000100000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000002c02000004000000000000070000000000000004000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <03000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000094050000000040000000000000> + | | | | "vm-size" = <0000e03f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <48000000> + | | | | "IOFunctionParent00000048" = <> + | | | | } + | | | | + | | | +-o mapper-apcie0-wlan + | | | | | { + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "name" = <6d61707065722d6170636965302d776c616e00> + | | | | | "AAPL,phandle" = <49000000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <49000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-apcie0-bt + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <02000000> + | | | | "name" = <6d61707065722d6170636965302d627400> + | | | | "AAPL,phandle" = <4a000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <4a000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o acio-cpu0@1108000 + | | | | { + | | | | "compatible" = <696f702c6d78777261702d6163696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <4b000000> + | | | | "interrupts" = + | | | | "clock-gates" = <9b010000> + | | | | "reg" = <0080100107000000004000000000000000001001070000000040000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6163696f2d63707500> + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "IODeviceMemory" = (({"address"=0x701108000,"length"=0x4000}),({"address"=0x701100000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <4143494f3000> + | | | | "name" = <6163696f2d6370753000> + | | | | } + | | | | + | | | +-o AppleMxWrapACIO + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleMxWrapACIO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iop,mxwrap-acio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,mxwrap-acio" + | | | | "role" = "ACIO0" + | | | | } + | | | | + | | | +-o iop-acio0-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <20000000> + | | | | "AAPL,phandle" = <4c000000> + | | | | "KDebugCoreID" = 0xb + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "reconfig-firmware" = <> + | | | | "watchdog-enable" = <> + | | | | "dont-power-on" = <> + | | | | "segment-ranges" = <00000001070000000000100000000000000010000000000000c00200010000000000080107000000000000100000000000000010000000000000020000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6163696f302d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ACIO0) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ACIO0","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ACIO0" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <4c000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | "IOMatchCategory" = "RTBuddyService" + | | | "IOClass" = "RTBuddyService" + | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | "IOProviderClass" = "RTBuddy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | "IOMatchedAtBoot" = Yes + | | | "role" = "ACIO0" + | | | } + | | | + | | +-o apciec0@30000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "bus-range" = <0000000080000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <00020000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "atc-apcie-fabric-tunables" = <04000000040000003f003f000000000030003000000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f8000000000000004000000000000001800000004000000ff0300000000000080030000000000001c000000040000000100000000000000010000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000020000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000200000000000000038000000040000001f8000$ + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <020200008e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "acio-parent" = <52000000> + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "atc-apcie-debug-tunables" = <001000000400000001000000000000000000000000000000> + | | | | "ranges" = <00000043000000000800000000000000080000000000000002000000000000020000100000000000000010000a0000000000f03f00000000000000420000004000000000000000400a0000000000004000000000> + | | | | "AAPL,phandle" = <4d000000> + | | | | "atc-apcie-rc-tunables" = <780000000400000000700000000000000000000000000000180700000400000000c007000000000000000000000000001408000004000000ffffffff0000000060f0000000000000bc0800000400000001000000000000000000000000000000> + | | | | "power-gates" = <020200008e010000> + | | | | "name" = <6170636965633000> + | | | | "IODeviceMemory" = (({"address"=0x730000000,"length"=0x10000000}),({"address"=0x720000000,"length"=0x4000}),({"address"=0x721000000,"length"=0x8000}),({"address"=0x720004000,"length"=0x4000}),({"address"=0x720200000,"length"=0x4000}),({"address"=0x721010000,"length"=0x4000}),({"address"=0x72100c000,"length"=0x4000})) + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000> + | | | | "device_type" = <7063692d6300> + | | | | "compatible" = <6170636965632c743831323200> + | | | | "port-type" = <02000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <00000030070000000000001000000000000000200700000000400000000000000000002107000000008000000000000000400020070000000040000000000000000020200700000000400000000000000000012107000000004000000000000000c00021070000000040000000000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | } + | | | | + | | | +-o AppleT8122PCIeC + | | | | { + | | | | "IOClass" = "AppleT8122PCIeC" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleTunneledPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apciec,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"apciec0 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disable $ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOFunctionParent0000004D" = <> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apciec,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | | } + | | | | + | | | +-o pcic0-bridge@0 + | | | | { + | | | | "IOPCIExpressLinkCapabilities" = 0x733901 + | | | | "vendor-id" = <6b100000> + | | | | "class-code" = <00040600> + | | | | "#msi-vectors" = <20000000> + | | | | "vm-force" = <0000000000010000> + | | | | "#size-cells" = <02000000> + | | | | "pci-ignore-linkstatus" = <> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_force_active" = <4f00000074636146> + | | | | "device-protection-granularity" = + | | | | "msi-for-bridges" = <> + | | | | "function-dart_self" = <4f000000666c6553> + | | | | "IOPCIHPType" = 0x31 + | | | | "pcidebug" = "0:0:0(1:128)" + | | | | "Thunderbolt Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/acio0@1F00000/AppleThunderboltHALType5/AppleThunderboltNHIType5/IOThunderboltControllerType5/IOThunderboltPort@7/IOThunderboltSwitchType5/IOThunderboltPort@3" + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "IODTPersist" = 0x0 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIConfigured" = Yes + | | | | "IOInterruptControllers" = ("APCIECMSIController-apciec0") + | | | | "Thunderbolt Entry ID" = 0x10000087d + | | | | "IOPCIResourced" = Yes + | | | | "AAPL,slot-name" = <536c6f742d300000> + | | | | "function-dart_release_sid" = <4f0000006c655253> + | | | | "AAPL,phandle" = <4e000000> + | | | | "ranges" = <0000008200001000000000000000008200001000000000000000f03f00000000000000c20000004000000000000000c2000000400000000000000040000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "name" = <70636963302d62726964676500> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3} + | | | | "default-apcie-options" = <01001080> + | | | | "IOPCITunnelLinkChange" = <> + | | | | "compatible" = <70636965632d62726964676500> + | | | | "marvel-wa-viddids" = <4b1b20914b1b23914b1b28914b1b30914b1b72914b1b7a914b1b82914b1ba0914b1b20924b1b3092281c22017b1992230311450603114206340030084b1b35924b1b7191> + | | | | "PCI-Thunderbolt" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIeCPort is not serializable" + | | | | "IOReportLegendPublic" = Yes + | | | | "function-dart_request_sid" = <4f00000071655253> + | | | | "msi-vector-base" = <20000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "IOPCIOnline" = Yes + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device-id" = <15100000> + | | | | "#address-cells" = <03000000> + | | | | "revision-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<5304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o IOPP + | | | { + | | | "IOClass" = "ApplePCIECHostBridge" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPCIPowerOnProbe" = No + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | "IOProbeScore" = 0x1388 + | | | "IONameMatch" = "pciec-bridge" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pciec-bridge" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | } + | | | + | | +-o dart-apciec0@21008000 + | | | | { + | | | | "dart-id" = <01000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <4f000000> + | | | | "IODeviceMemory" = (({"address"=0x721008000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "noncompliant-dead-mappings" = <> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6170636965633000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "interrupts" = + | | | | "flush-by-dva" = <00000000> + | | | | "page-size" = <00400000> + | | | | "manual-availability" = <01000000> + | | | | "dead-mappings" = <00000000000000000040000000000000> + | | | | "vm-base" = <0000008000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <40000000> + | | | | "relaxed-rw-protections" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00800021070000000040000000000000> + | | | | "vm-size" = <0000f07f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent0000004F" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = Yes + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <4f000000> + | | | | } + | | | | + | | | +-o mapper-apciec0-piodma@F + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <0f000000> + | | | | "name" = <6d61707065722d617063696563302d70696f646d6100> + | | | | "AAPL,phandle" = <50000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <50000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apciec0-piodma@22000000 + | | | { + | | | "IOInterruptSpecifiers" = () + | | | "piodma-fifo-size" = <10000000> + | | | "AAPL,phandle" = <51000000> + | | | "IODeviceMemory" = (({"address"=0x722000000,"length"=0x4000}),({"address"=0x722004000,"length"=0x4000}),({"address"=0x722008000,"length"=0x4000}),({"address"=0x720008000,"length"=0x4000})) + | | | "piodma-max-segment-size" = <00000000> + | | | "piodma-max-transfer-size" = <80000000> + | | | "iommu-parent" = <50000000> + | | | "atc-apcie-apiodma-tunables" = <0000000004000000020000000000000000000000000000001000000004000000ffffff0700000000f2ff0000000000001400000004000000ffffff0700000000f2ff0000000000001800000004000000ffffff0700000000f3ff0000000000001c00000004000000ffff010000000000f0ff0000000000002000000004000000ffff010000000000f0ff000000000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "name" = <617063696563302d70696f646d6100> + | | | "interrupt-parent" = <69000000> + | | | "piodma-byte-alignment" = <04000000> + | | | "compatible" = <70636965632d6170696f646d612c743831303300> + | | | "interrupts" = + | | | "piodma-base-address" = <00000030070000000000000008000000000000000a000000> + | | | "atc-apcie-oe-fabric-tunables" = <0400000004000000070007000000000004000400000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f80000000000000040000000000000018000000040000001f80000000000000040000000000000020000000040000001f800000000000000400000000000000> + | | | "piodma-num-address-bits" = <24000000> + | | | "device_type" = <617063696563302d70696f646d6100> + | | | "piodma-id" = <00000000> + | | | "reg" = <00000022070000000040000000000000004000220700000000400000000000000080002207000000004000000000000000800020070000000040000000000000> + | | | } + | | | + | | +-o acio0@1F00000 + | | | | { + | | | | "hi_up_tx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "sat-dtf-trace-ring-index" = <02000000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "hi_dn_merge_fabric_tunables" = <0400000004000000070000000000000004000000000000000800000004000000078000000000000001000000000000001000000004000000070000000000000004000000000000001400000004000000078000000000000001000000000000001c00000004000000070000000000000004000000000000002000000004000000078000000000000001000000000000002800000004000000070000000000000004000000000000002c000000040000000780000000000000010000000000000034000000040000000700000000000000040000000000000038000000040000000780000000000000010000000000000040000000040000000700$ + | | | | "atc-phy-parent" = + | | | | "link-speed-default" = <080c0c00> + | | | | "interrupt-parent" = <69000000> + | | | | "port-defaults" = <16b0802b16b0802b0840802b0840802b0948802b0948802b0b58802b0948802b> + | | | | "function-dart_force_active" = <5300000074636146> + | | | | "interrupts" = + | | | | "top_tunables" = <0000000004000000f0ff00000000000010300000000000002c0000000400000004000000000000000000000000000000ac00000004000000ffffffff00000000e75ce75c00000000> + | | | | "iommu-parent" = <54000000> + | | | | "link-width-default" = <01010200> + | | | | "lbw_fabric_tunables" = <04000000040000000700070000000000040004000000000008000000040000001f80000000000000040000000000000010000000040000000700070000000000040004000000000018000000040000001f80000000000000040000000000000020000000040000000700070000000000040004000000000028000000040000001f80000000000000040000000000000030000000040000001f80000000000000040000000000000038000000040000001f80000000000000040000000000000040000000040000001f80000000000000040000000000000048000000040000001f80000000000000040000000000000050000000040000001f8000000000$ + | | | | "spec-version" = <20000000> + | | | | "clock-gates" = <7d00000085000000860000009b010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "IOPCITunnelControllerID" = 0x1000002b5 + | | | | "IODeviceMemory" = (({"address"=0x701f00000,"length"=0x100000}),({"address"=0x701db0000,"length"=0x30004}),({"address"=0x701ac0000,"length"=0x4000}),({"address"=0x701ac4000,"length"=0x4000}),({"address"=0x701ac8000,"length"=0x4000}),({"address"=0x701e44000,"length"=0x4000})) + | | | | "AAPL,phandle" = <52000000> + | | | | "name" = <6163696f3000> + | | | | "power-gates" = <7d0000008500000086000000> + | | | | "hbw_fabric_tunables" = <04000000040000007f007f0000000000400040000000000008000000040000001f80000000000000040000000000000010000000040000007f00000000000000400000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000024000000040000001f8000000000000004000000000000002c000000040000001f00000000000000100000000000000030000000040000001f8000000000000004000000000000003800000004000000ffffffff0000000001010101000000003c00000004000000ffff00000000000001010000000000004000000004000000010000000000$ + | | | | "sat-dtf-enabled-ring-mask" = + | | | | "portmap" = <0100000001000000010110000101200001010e0001010e000200000002010e00> + | | | | "hi_up_tx_data_fabric_tunables" = <04000000040000003f00000000000000300000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000003f00000000000000300000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000030000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000300000000000000038000000040000001f80000000000000040000000000000040000000040000003f$ + | | | | "hi_up_wr_fabric_tunables" = <04000000040000001f000000000000001f0000000000000008000000040000001f80000000000000040000000000000010000000040000001f000000000000001f0000000000000014000000040000001f8000000000000004000000000000001c000000040000001f000000000000001f0000000000000020000000040000001f80000000000000040000000000000028000000040000001f000000000000001f000000000000002c000000040000001f80000000000000040000000000000034000000040000001f000000000000001f0000000000000038000000040000001f80000000000000040000000000000040000000040000001f00000$ + | | | | "device_type" = <6163696f00> + | | | | "compatible" = <6163696f00> + | | | | "revision" = <00000000> + | | | | "port-type" = <02000000> + | | | | "function-pcie_port_control" = <4d000000437472504e000000> + | | | | "fw_int_ctl_management_tunables" = <00000000040000000f00001000000000020000100000000004000000040000000f00001000000000020000100000000008000000040000000f0000100000000002000010000000000c000000040000000f00001000000000020000100000000010000000040000000f00001000000000020000100000000014000000040000000f00001000000000020000100000000018000000040000000f0000100000000002000010000000001c000000040000000f00001000000000020000100000000020000000040000000f00001000000000020000100000000024000000040000000f00001000000000020000100000000028000000040000000$ + | | | | "gpio-lstx" = <1b00000000010000414f5000> + | | | | "rid" = <00000000> + | | | | "vid-did" = + | | | | "reg" = <0000f0010700000000001000000000000000db010700000004000300000000000000ac010700000000400000000000000040ac010700000000400000000000000080ac010700000000400000000000000040e401070000000040000000000000> + | | | | "hi_up_merge_fabric_tunables" = <04000000040000001f00000000000000100000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000020000000040000001f80000000000000040000000000000028000000040000007f0000000000000060000000000000002c000000040000001f800000000000000400000000000000340000000400000007800000000000000100000000000000> + | | | | "hi_up_rx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "port-number" = <01000000> + | | | | "thunderbolt-drom" = + | | | | "pcie_adapter_regs_tunables" = <081000000400000006000000000000000600000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,,,,,,,,,,,,,,,,,,) + | | | | "acio-cpu" = <4c000000> + | | | | } + | | | | + | | | +-o AppleThunderboltHALType5 + | | | | | { + | | | | | "IOClass" = "AppleThunderboltHALType5" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOPlatformWakeAction" = 0x30d40 + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IOPlatformSleepAction" = 0x30d40 + | | | | | "IOProbeScore" = 0x1000 + | | | | | "IONameMatch" = "acio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"PowerOverrideOn"=Yes} + | | | | | "Statistics" = {"Total Rx Packets"="0","Total Tx Packets"="0"} + | | | | | "IONameMatched" = "acio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "Hardware Owner" = "AppleThunderboltNHIType5" + | | | | | } + | | | | | + | | | | +-o AppleThunderboltNHIType5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOThunderboltControllerType5 + | | | | | { + | | | | | "User Client Version" = 0x6 + | | | | | "Generation" = 0x1 + | | | | | "IOCFPlugInTypes" = {"3A0F596B-5D02-41D3-99D4-E27D4F218A54"="IOThunderboltFamily.kext/Contents/PlugIns/IOThunderboltLib.plugin"} + | | | | | "JTAG Device Count" = 0x0 + | | | | | "IOUserClientClass" = "IOThunderboltFamilyUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | "Using Bus Power" = No + | | | | | "TMU Mode" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOThunderboltLocalNode + | | | | | | { + | | | | | | "XDP" = <0144585518000000646e65766469726f01000076270a0000646e65766469726f030000741a0000006976656464696563010000760a0000006976656464696563030000741d000000697665647672656301000076000100806878616d6469706f010000760f0000006c7070416e49206500002e633163614d32312c35000000000000000000000000000000000000000000000000> + | | | | | | "Domain UUID" = "D214685E-BAA0-4E8F-B983-439FF57ACBF7" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPService + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchCategory" = "AppleThunderboltIPService" + | | | | | | "IOClass" = "AppleThunderboltIPService" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOProviderClass" = "IOThunderboltLocalNode" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Protocol Settings" = 0xffffffff80000003 + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPPort + | | | | | | { + | | | | | | "IOLocation" = "1" + | | | | | | "IOModel" = "ThunderboltIP" + | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x23,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOMACAddress" = <36bf29b665c0> + | | | | | | "IOLinkSpeed" = 0x12a05f2000 + | | | | | | "AVBControllerState" = 0x1 + | | | | | | "IOVendor" = "Apple" + | | | | | | "IOSelectedMedium" = "00100020" + | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | "IOFeatures" = 0x38 + | | | | | | "IORevision" = "4.0.3" + | | | | | | "IOLinkStatus" = 0x1 + | | | | | | "IOMaxPacketSize" = 0x10000 + | | | | | | "IOActiveMedium" = "00100020" + | | | | | | "IOMediumDictionary" = {"00100020"={"Index"=0x0,"Type"=0x100020,"Flags"=0x0,"Speed"=0x12a05f2000}} + | | | | | | } + | | | | | | + | | | | | +-o en1 + | | | | | | { + | | | | | | "IOLocation" = "1" + | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | "BSD Name" = "en1" + | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | "IOInterfaceType" = 0x6 + | | | | | | "IOInterfaceFlags" = 0x8963 + | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | "IOInterfaceState" = 0x3 + | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | | "IOPrimaryInterface" = No + | | | | | | "IOControllerEnabled" = Yes + | | | | | | "IOInterfaceUnit" = 0x1 + | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | "IOBuiltin" = Yes + | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStack + | | | | | | { + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | "IOClass" = "IONetworkStack" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOProviderClass" = "IOResources" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStackUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o IOThunderboltPort@7 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "Thunderbolt Native Host Interface Adapter" + | | | | | | "Port Number" = 0x7 + | | | | | | "Max In Hop ID" = 0xb + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0xb + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0x2 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltSwitchType5 + | | | | | | { + | | | | | | "Device Vendor ID" = 0x1 + | | | | | | "Device Vendor Name" = "Apple Inc." + | | | | | | "Device Model Name" = "iOS" + | | | | | | "IOPowerManagement" = {"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | | "UID" = 0x5ac49d5982d9970 + | | | | | | "Upstream Port Number" = 0x7 + | | | | | | "Max Port Number" = 0x8 + | | | | | | "DROM" = + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "ROM Version" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Route String" = 0x0 + | | | | | | "Device Model ID" = 0xf + | | | | | | "Device Model Revision" = 0x1 + | | | | | | "EEPROM Revision" = 0x0 + | | | | | | "Router ID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Depth" = 0x0 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@1 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x1 + | | | | | | "TRM Identification Restricted" = 0x0 + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "TRM Transport Restricted" = 0x0 + | | | | | | "TRM Hash Set" = No + | | | | | | "Port Number" = 0x1 + | | | | | | "TRM Transport Active 0" = No + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "TRM Transport Active 1" = No + | | | | | | "Socket ID" = "1" + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x2 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "TRM Policy" = "Root" + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@2 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x2 + | | | | | | "Socket ID" = "1" + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Port Number" = 0x2 + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x1 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@3 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "PCIe Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x3 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "PCI Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/apciec0@30000000/AppleT8122PCIeC/pcic0-bridge@0" + | | | | | | | "PCI Entry ID" = 0x100000888 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x100101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltPCIDownAdapterType5 + | | | | | | { + | | | | | | "IOProbeScore" = 0x2000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltPCIDownAdapterType5" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "Adapter Type" = 0x100101 + | | | | | | "Device ID" = "0x00002000&0x0000ff00" + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@4 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "USB Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x4 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x200101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltUSBDownAdapter + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltUSBDownAdapter" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "Adapter Type" = 0x200101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@5 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x5 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@6 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x6 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@8 + | | | | | { + | | | | | "Max Credits" = 0xae + | | | | | "Description" = "Port is inactive" + | | | | | "Port Number" = 0x8 + | | | | | "Max In Hop ID" = 0x9 + | | | | | "Hop Table" = () + | | | | | "Thunderbolt Version" = 0x20 + | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | "Device ID" = 0x2008 + | | | | | "Revision ID" = 0x0 + | | | | | "Max Out Hop ID" = 0x9 + | | | | | "Vendor ID" = 0x5ac + | | | | | "Adapter Type" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleThunderboltDPConnectionManager + | | | | { + | | | | "Registered Ports" = ["<0:0x00000000:0x00000005>","<0:0x00000000:0x00000006>"] + | | | | "Registered DP Out Adapters" = [] + | | | | "DP Out Adapters Waiting for Evaluation" = () + | | | | "Waiting for all DP adapters to register" = No + | | | | "Registered DP In Adapters" = ["<0:0x00000000:0x00000005>","<0:0x00000000:0x00000006>"] + | | | | "Evaluating Connections" = No + | | | | } + | | | | + | | | +-o IOTBTTunnelClientInterfaceManager + | | | { + | | | } + | | | + | | +-o dart-acio0@1A80000 + | | | | { + | | | | "sat-dtf-sid" = <02000000000000000f000000> + | | | | "dart-id" = <02000000> + | | | | "bypass-15" = <> + | | | | "sat-dtf-remap" = <01000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "sat-dtf-bypass-2" = <> + | | | | "AAPL,phandle" = <53000000> + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x701a80000,"length"=0x4000})) + | | | | "remap" = <0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "dart-options" = <07000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6163696f3000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "manual-availability" = <01000000> + | | | | "sat-dtf-apf-bypass-2" = <> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <1c000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000a801070000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "IOFunctionParent00000053" = <> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <53000000> + | | | | } + | | | | + | | | +-o mapper-acio0@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6163696f3000> + | | | | "AAPL,phandle" = <54000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <54000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o atc0-dpxbar@304C000 + | | | | { + | | | | "device_type" = <4141504c2c6174632d64707862617200> + | | | | "reg" = <00c00403070000000040000000000000> + | | | | "IODeviceMemory" = (({"address"=0x70304c000,"length"=0x4000})) + | | | | "name" = <617463302d64707862617200> + | | | | "AAPL,phandle" = <55000000> + | | | | "compatible" = <6174632d6470786261722c743630327800> + | | | | } + | | | | + | | | +-o AppleT602XATCDPXBAR(atc0-dpxbar) + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleT602XATCDPXBAR" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("atc-dpxbar,t602x") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-dpxbar,t602x" + | | | } + | | | + | | +-o atc0-dpphy + | | | | { + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "compatible" = <6174632d64707068792c743831323200> + | | | | "transport-tunneled" = <00000000> + | | | | "dp-switch-dfp-port" = <00000000> + | | | | "AAPL,phandle" = <56000000> + | | | | "device_type" = <4141504c2c6174632d647070687900> + | | | | "transport-type" = <05000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "port-number" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "name" = <617463302d647070687900> + | | | | } + | | | | + | | | +-o AppleATCDPAltModePort(atc0-dpphy) + | | | { + | | | "IOClass" = "AppleATCDPAltModePort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPropertyMatch" = {"port-type"=<02000000>} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpphy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000400f5c06000000000300000001000000>,"EventTime"=0x65c0f40,"EventClass"="SetState"},{"EventPayload"={"QueueOp"="Enqueue","Action"="DisplayRequest"},"EventRaw"=<2000000018000000ee2a8a4c0b0000000000000001000000>,"EventTime"=0xb4c8a2aee,"EventClass"="SetAction"},{"EventPayload"={"State"="SinkActive","Value"=0x1},"EventRaw"=<21000000180000009b2b8a4c0b0000000100000001000000>,"EventTime"=0xb4c8a2b9b,"EventClass"="SetState"},{"EventPayload"={"Q$ + | | | "IONameMatched" = "AAPL,atc-dpphy" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {"MaxBpc"=0x8,"EDID UUID"="04721301-0000-0000-2014-010380331D78","MaxTotalPixelRate"=0x8d9ee20,"MaxW"=0x780,"MaxActivePixelRate"=0x76a7000,"Tiled"=No,"ProductName"="Acer G235H ","MaxH"=0x438} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc0-dpin0@1E50000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "dp-switch-dfp-port" = <01000000> + | | | | "transport-index" = <00000000> + | | | | "AAPL,phandle" = <57000000> + | | | | "IODeviceMemory" = (({"address"=0x701e50000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "acio-parent" = <52000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463302d6470696e3000> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = + | | | | "port-number" = <01000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0000e501070000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc0-dpin0) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000003d076306000000000300000001000000>,"EventTime"=0x663073d,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc0-dpin1@1E58000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "dp-switch-dfp-port" = <02000000> + | | | | "transport-index" = <01000000> + | | | | "AAPL,phandle" = <58000000> + | | | | "IODeviceMemory" = (({"address"=0x701e58000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "acio-parent" = <52000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463302d6470696e3100> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = + | | | | "port-number" = <01000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0080e501070000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc0-dpin1) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000f1176406000000000300000001000000>,"EventTime"=0x66417f1,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o acio-cpu1@1108000 + | | | | { + | | | | "compatible" = <696f702c6d78777261702d6163696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <59000000> + | | | | "interrupts" = <300400002f0400003204000031040000> + | | | | "clock-gates" = <9c010000> + | | | | "reg" = <008010010b0000000040000000000000000010010b0000000040000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6163696f2d63707500> + | | | | "IOInterruptSpecifiers" = (<30040000>,<2f040000>,<32040000>,<31040000>) + | | | | "IODeviceMemory" = (({"address"=0xb01108000,"length"=0x4000}),({"address"=0xb01100000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <4143494f3100> + | | | | "name" = <6163696f2d6370753100> + | | | | } + | | | | + | | | +-o AppleMxWrapACIO + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleMxWrapACIO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iop,mxwrap-acio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,mxwrap-acio" + | | | | "role" = "ACIO1" + | | | | } + | | | | + | | | +-o iop-acio1-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <20000000> + | | | | "AAPL,phandle" = <5a000000> + | | | | "KDebugCoreID" = 0xd + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "reconfig-firmware" = <> + | | | | "watchdog-enable" = <> + | | | | "dont-power-on" = <> + | | | | "segment-ranges" = <000000010b0000000000100000000000000010000000000000c0020001000000000008010b000000000000100000000000000010000000000000020000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6163696f312d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ACIO1) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ACIO1","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ACIO1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <5a000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | "IOMatchCategory" = "RTBuddyService" + | | | "IOClass" = "RTBuddyService" + | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | "IOProviderClass" = "RTBuddy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | "IOMatchedAtBoot" = Yes + | | | "role" = "ACIO1" + | | | } + | | | + | | +-o apciec1@30000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "bus-range" = <0000000080000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <00020000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "atc-apcie-fabric-tunables" = <04000000040000003f003f000000000030003000000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f8000000000000004000000000000001800000004000000ff0300000000000080030000000000001c000000040000000100000000000000010000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000020000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000200000000000000038000000040000001f8000$ + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <030200008f010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "acio-parent" = <60000000> + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "atc-apcie-debug-tunables" = <001000000400000001000000000000000000000000000000> + | | | | "ranges" = <00000043000000000c000000000000000c0000000000000002000000000000020000100000000000000010000e0000000000f03f00000000000000420000004000000000000000400e0000000000004000000000> + | | | | "AAPL,phandle" = <5b000000> + | | | | "atc-apcie-rc-tunables" = <780000000400000000700000000000000000000000000000180700000400000000c007000000000000000000000000001408000004000000ffffffff0000000060f0000000000000bc0800000400000001000000000000000000000000000000> + | | | | "power-gates" = <030200008f010000> + | | | | "name" = <6170636965633100> + | | | | "IODeviceMemory" = (({"address"=0xb30000000,"length"=0x10000000}),({"address"=0xb20000000,"length"=0x4000}),({"address"=0xb21000000,"length"=0x8000}),({"address"=0xb20004000,"length"=0x4000}),({"address"=0xb20200000,"length"=0x4000}),({"address"=0xb21010000,"length"=0x4000}),({"address"=0xb2100c000,"length"=0x4000})) + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000> + | | | | "device_type" = <7063692d6300> + | | | | "compatible" = <6170636965632c743831323200> + | | | | "port-type" = <02000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000000300b0000000000001000000000000000200b0000000040000000000000000000210b0000000080000000000000004000200b0000000040000000000000000020200b0000000040000000000000000001210b000000004000000000000000c000210b0000000040000000000000> + | | | | "port-number" = <02000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (,,,<00040000>,<01040000>) + | | | | } + | | | | + | | | +-o AppleT8122PCIeC + | | | | { + | | | | "IOClass" = "AppleT8122PCIeC" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent0000005B" = <> + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleTunneledPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apciec,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"apciec1 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disable $ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apciec,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | | } + | | | | + | | | +-o pcic1-bridge@0 + | | | | { + | | | | "IOPCIExpressLinkCapabilities" = 0x733901 + | | | | "vendor-id" = <6b100000> + | | | | "class-code" = <00040600> + | | | | "#msi-vectors" = <20000000> + | | | | "vm-force" = <0000000000010000> + | | | | "#size-cells" = <02000000> + | | | | "pci-ignore-linkstatus" = <> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_force_active" = <5d00000074636146> + | | | | "device-protection-granularity" = + | | | | "msi-for-bridges" = <> + | | | | "function-dart_self" = <5d000000666c6553> + | | | | "IOPCIHPType" = 0x31 + | | | | "pcidebug" = "0:0:0(1:128)" + | | | | "Thunderbolt Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/acio1@1F00000/AppleThunderboltHALType5/AppleThunderboltNHIType5/IOThunderboltControllerType5/IOThunderboltPort@7/IOThunderboltSwitchType5/IOThunderboltPort@3" + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "IODTPersist" = 0x0 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIConfigured" = Yes + | | | | "IOInterruptControllers" = ("APCIECMSIController-apciec1") + | | | | "Thunderbolt Entry ID" = 0x100000841 + | | | | "IOPCIResourced" = Yes + | | | | "AAPL,slot-name" = <536c6f742d310000> + | | | | "function-dart_release_sid" = <5d0000006c655253> + | | | | "AAPL,phandle" = <5c000000> + | | | | "ranges" = <0000008200001000000000000000008200001000000000000000f03f00000000000000c20000004000000000000000c2000000400000000000000040000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "name" = <70636963312d62726964676500> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3} + | | | | "default-apcie-options" = <01001080> + | | | | "IOPCITunnelLinkChange" = <> + | | | | "compatible" = <70636965632d62726964676500> + | | | | "marvel-wa-viddids" = <4b1b20914b1b23914b1b28914b1b30914b1b72914b1b7a914b1b82914b1ba0914b1b20924b1b3092281c22017b1992230311450603114206340030084b1b35924b1b7191> + | | | | "PCI-Thunderbolt" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIeCPort is not serializable" + | | | | "IOReportLegendPublic" = Yes + | | | | "function-dart_request_sid" = <5d00000071655253> + | | | | "msi-vector-base" = <40000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "IOPCIOnline" = Yes + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device-id" = <15100000> + | | | | "#address-cells" = <03000000> + | | | | "revision-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<7304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o IOPP + | | | { + | | | "IOClass" = "ApplePCIECHostBridge" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPCIPowerOnProbe" = No + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | "IOProbeScore" = 0x1388 + | | | "IONameMatch" = "pciec-bridge" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pciec-bridge" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | } + | | | + | | +-o dart-apciec1@21008000 + | | | | { + | | | | "dart-id" = <03000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <5d000000> + | | | | "IODeviceMemory" = (({"address"=0xb21008000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "noncompliant-dead-mappings" = <> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6170636965633100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "interrupts" = + | | | | "flush-by-dva" = <00000000> + | | | | "page-size" = <00400000> + | | | | "manual-availability" = <01000000> + | | | | "dead-mappings" = <00000000000000000040000000000000> + | | | | "vm-base" = <0000008000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <40000000> + | | | | "relaxed-rw-protections" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008000210b0000000040000000000000> + | | | | "vm-size" = <0000f07f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = Yes + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000005D" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <5d000000> + | | | | } + | | | | + | | | +-o mapper-apciec1-piodma@F + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <0f000000> + | | | | "name" = <6d61707065722d617063696563312d70696f646d6100> + | | | | "AAPL,phandle" = <5e000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <5e000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apciec1-piodma@22000000 + | | | { + | | | "IOInterruptSpecifiers" = () + | | | "piodma-fifo-size" = <10000000> + | | | "AAPL,phandle" = <5f000000> + | | | "IODeviceMemory" = (({"address"=0xb22000000,"length"=0x4000}),({"address"=0xb22004000,"length"=0x4000}),({"address"=0xb22008000,"length"=0x4000}),({"address"=0xb20008000,"length"=0x4000})) + | | | "piodma-max-segment-size" = <00000000> + | | | "piodma-max-transfer-size" = <80000000> + | | | "iommu-parent" = <5e000000> + | | | "atc-apcie-apiodma-tunables" = <0000000004000000020000000000000000000000000000001000000004000000ffffff0700000000f2ff0000000000001400000004000000ffffff0700000000f2ff0000000000001800000004000000ffffff0700000000f3ff0000000000001c00000004000000ffff010000000000f0ff0000000000002000000004000000ffff010000000000f0ff000000000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "name" = <617063696563312d70696f646d6100> + | | | "interrupt-parent" = <69000000> + | | | "piodma-byte-alignment" = <04000000> + | | | "compatible" = <70636965632d6170696f646d612c743831303300> + | | | "interrupts" = + | | | "piodma-base-address" = <000000300b000000000000000c000000000000000e000000> + | | | "atc-apcie-oe-fabric-tunables" = <0400000004000000070007000000000004000400000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f80000000000000040000000000000018000000040000001f80000000000000040000000000000020000000040000001f800000000000000400000000000000> + | | | "piodma-num-address-bits" = <24000000> + | | | "device_type" = <617063696563312d70696f646d6100> + | | | "piodma-id" = <01000000> + | | | "reg" = <000000220b0000000040000000000000004000220b0000000040000000000000008000220b0000000040000000000000008000200b0000000040000000000000> + | | | } + | | | + | | +-o acio1@1F00000 + | | | | { + | | | | "hi_up_tx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "sat-dtf-trace-ring-index" = <02000000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "hi_dn_merge_fabric_tunables" = <0400000004000000070000000000000004000000000000000800000004000000078000000000000001000000000000001000000004000000070000000000000004000000000000001400000004000000078000000000000001000000000000001c00000004000000070000000000000004000000000000002000000004000000078000000000000001000000000000002800000004000000070000000000000004000000000000002c000000040000000780000000000000010000000000000034000000040000000700000000000000040000000000000038000000040000000780000000000000010000000000000040000000040000000700$ + | | | | "atc-phy-parent" = + | | | | "link-speed-default" = <080c0c00> + | | | | "interrupt-parent" = <69000000> + | | | | "port-defaults" = <16b0802b16b0802b0840802b0840802b0948802b0948802b0b58802b> + | | | | "function-dart_force_active" = <6100000074636146> + | | | | "interrupts" = <1e0400001f0400002004000021040000220400002304000024040000250400002604000027040000280400002904000012040000130400001404000015040000160400001704000018040000190400001a0400001b0400001c0400001d040000> + | | | | "top_tunables" = <0000000004000000f0ff00000000000010300000000000002c0000000400000004000000000000000000000000000000ac00000004000000ffffffff00000000e75ce75c00000000> + | | | | "iommu-parent" = <62000000> + | | | | "link-width-default" = <01010200> + | | | | "lbw_fabric_tunables" = <04000000040000000700070000000000040004000000000008000000040000001f80000000000000040000000000000010000000040000000700070000000000040004000000000018000000040000001f80000000000000040000000000000020000000040000000700070000000000040004000000000028000000040000001f80000000000000040000000000000030000000040000001f80000000000000040000000000000038000000040000001f80000000000000040000000000000040000000040000001f80000000000000040000000000000048000000040000001f80000000000000040000000000000050000000040000001f8000000000$ + | | | | "spec-version" = <20000000> + | | | | "clock-gates" = <7f00000087000000880000009c010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "IOPCITunnelControllerID" = 0x1000002be + | | | | "IODeviceMemory" = (({"address"=0xb01f00000,"length"=0x100000}),({"address"=0xb01db0000,"length"=0x30004}),({"address"=0xb01ac0000,"length"=0x4000}),({"address"=0xb01ac4000,"length"=0x4000}),({"address"=0xb01ac8000,"length"=0x4000}),({"address"=0xb01e44000,"length"=0x4000})) + | | | | "AAPL,phandle" = <60000000> + | | | | "name" = <6163696f3100> + | | | | "power-gates" = <7f0000008700000088000000> + | | | | "hbw_fabric_tunables" = <04000000040000007f007f0000000000400040000000000008000000040000001f80000000000000040000000000000010000000040000007f00000000000000400000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000024000000040000001f8000000000000004000000000000002c000000040000001f00000000000000100000000000000030000000040000001f8000000000000004000000000000003800000004000000ffffffff0000000001010101000000003c00000004000000ffff00000000000001010000000000004000000004000000010000000000$ + | | | | "sat-dtf-enabled-ring-mask" = + | | | | "portmap" = <0100000001000000010110000101200001010e0001010e0002000000> + | | | | "hi_up_tx_data_fabric_tunables" = <04000000040000003f00000000000000300000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000003f00000000000000300000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000030000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000300000000000000038000000040000001f80000000000000040000000000000040000000040000003f$ + | | | | "hi_up_wr_fabric_tunables" = <04000000040000001f000000000000001f0000000000000008000000040000001f80000000000000040000000000000010000000040000001f000000000000001f0000000000000014000000040000001f8000000000000004000000000000001c000000040000001f000000000000001f0000000000000020000000040000001f80000000000000040000000000000028000000040000001f000000000000001f000000000000002c000000040000001f80000000000000040000000000000034000000040000001f000000000000001f0000000000000038000000040000001f80000000000000040000000000000040000000040000001f00000$ + | | | | "device_type" = <6163696f00> + | | | | "compatible" = <6163696f00> + | | | | "revision" = <00000000> + | | | | "port-type" = <02000000> + | | | | "function-pcie_port_control" = <5b000000437472505c000000> + | | | | "fw_int_ctl_management_tunables" = <00000000040000000f00001000000000020000100000000004000000040000000f00001000000000020000100000000008000000040000000f0000100000000002000010000000000c000000040000000f00001000000000020000100000000010000000040000000f00001000000000020000100000000014000000040000000f00001000000000020000100000000018000000040000000f0000100000000002000010000000001c000000040000000f00001000000000020000100000000020000000040000000f00001000000000020000100000000024000000040000000f00001000000000020000100000000028000000040000000$ + | | | | "gpio-lstx" = <1d00000000010000414f5000> + | | | | "rid" = <01000000> + | | | | "vid-did" = + | | | | "reg" = <0000f0010b00000000001000000000000000db010b00000004000300000000000000ac010b00000000400000000000000040ac010b00000000400000000000000080ac010b00000000400000000000000040e4010b0000000040000000000000> + | | | | "hi_up_merge_fabric_tunables" = <04000000040000001f00000000000000100000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000020000000040000001f80000000000000040000000000000028000000040000007f0000000000000060000000000000002c000000040000001f800000000000000400000000000000340000000400000007800000000000000100000000000000> + | | | | "hi_up_rx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "port-number" = <02000000> + | | | | "thunderbolt-drom" = + | | | | "pcie_adapter_regs_tunables" = <081000000400000006000000000000000600000000000000> + | | | | "IOInterruptSpecifiers" = (<1e040000>,<1f040000>,<20040000>,<21040000>,<22040000>,<23040000>,<24040000>,<25040000>,<26040000>,<27040000>,<28040000>,<29040000>,<12040000>,<13040000>,<14040000>,<15040000>,<16040000>,<17040000>,<18040000>,<19040000>,<1a040000>,<1b040000>,<1c040000>,<1d040000>) + | | | | "acio-cpu" = <5a000000> + | | | | } + | | | | + | | | +-o AppleThunderboltHALType5 + | | | | | { + | | | | | "IOClass" = "AppleThunderboltHALType5" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOPlatformWakeAction" = 0x30d40 + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IOPlatformSleepAction" = 0x30d40 + | | | | | "IOProbeScore" = 0x1000 + | | | | | "IONameMatch" = "acio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"PowerOverrideOn"=Yes} + | | | | | "Statistics" = {"Total Rx Packets"="0","Total Tx Packets"="0"} + | | | | | "IONameMatched" = "acio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "Hardware Owner" = "AppleThunderboltNHIType5" + | | | | | } + | | | | | + | | | | +-o AppleThunderboltNHIType5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOThunderboltControllerType5 + | | | | | { + | | | | | "User Client Version" = 0x6 + | | | | | "Generation" = 0x1 + | | | | | "IOCFPlugInTypes" = {"3A0F596B-5D02-41D3-99D4-E27D4F218A54"="IOThunderboltFamily.kext/Contents/PlugIns/IOThunderboltLib.plugin"} + | | | | | "JTAG Device Count" = 0x0 + | | | | | "IOUserClientClass" = "IOThunderboltFamilyUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | "Using Bus Power" = No + | | | | | "TMU Mode" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOThunderboltLocalNode + | | | | | | { + | | | | | | "XDP" = <0144585518000000646e65766469726f01000076270a0000646e65766469726f030000741a0000006976656464696563010000760a0000006976656464696563030000741d000000697665647672656301000076000100806878616d6469706f010000760f0000006c7070416e49206500002e633163614d32312c35000000000000000000000000000000000000000000000000> + | | | | | | "Domain UUID" = "27A83CA6-5E0B-459E-AE5C-6D9948028FA0" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPService + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchCategory" = "AppleThunderboltIPService" + | | | | | | "IOClass" = "AppleThunderboltIPService" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOProviderClass" = "IOThunderboltLocalNode" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Protocol Settings" = 0xffffffff80000003 + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPPort + | | | | | | { + | | | | | | "IOLocation" = "2" + | | | | | | "IOModel" = "ThunderboltIP" + | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x23,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOMACAddress" = <36bf29b665c4> + | | | | | | "IOLinkSpeed" = 0x12a05f2000 + | | | | | | "AVBControllerState" = 0x1 + | | | | | | "IOVendor" = "Apple" + | | | | | | "IOSelectedMedium" = "00100020" + | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | "IOFeatures" = 0x38 + | | | | | | "IORevision" = "4.0.3" + | | | | | | "IOLinkStatus" = 0x1 + | | | | | | "IOMaxPacketSize" = 0x10000 + | | | | | | "IOActiveMedium" = "00100020" + | | | | | | "IOMediumDictionary" = {"00100020"={"Index"=0x0,"Type"=0x100020,"Flags"=0x0,"Speed"=0x12a05f2000}} + | | | | | | } + | | | | | | + | | | | | +-o en2 + | | | | | | { + | | | | | | "IOLocation" = "2" + | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | "BSD Name" = "en2" + | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | "IOInterfaceType" = 0x6 + | | | | | | "IOInterfaceFlags" = 0x8963 + | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | "IOInterfaceState" = 0x3 + | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | | "IOPrimaryInterface" = No + | | | | | | "IOControllerEnabled" = Yes + | | | | | | "IOInterfaceUnit" = 0x2 + | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | "IOBuiltin" = Yes + | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStack + | | | | | | { + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | "IOClass" = "IONetworkStack" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOProviderClass" = "IOResources" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStackUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o IOThunderboltPort@7 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "Thunderbolt Native Host Interface Adapter" + | | | | | | "Port Number" = 0x7 + | | | | | | "Max In Hop ID" = 0xb + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0xb + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0x2 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltSwitchType5 + | | | | | | { + | | | | | | "Device Vendor ID" = 0x1 + | | | | | | "Device Vendor Name" = "Apple Inc." + | | | | | | "Device Model Name" = "iOS" + | | | | | | "IOPowerManagement" = {"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | | "UID" = 0x5ac49d5982d9971 + | | | | | | "Upstream Port Number" = 0x7 + | | | | | | "Max Port Number" = 0x7 + | | | | | | "DROM" = + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "ROM Version" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Route String" = 0x0 + | | | | | | "Device Model ID" = 0xf + | | | | | | "Device Model Revision" = 0x1 + | | | | | | "EEPROM Revision" = 0x0 + | | | | | | "Router ID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Depth" = 0x0 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@1 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x1 + | | | | | | "TRM Identification Restricted" = 0x0 + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "TRM Transport Restricted" = 0x0 + | | | | | | "TRM Hash Set" = No + | | | | | | "Port Number" = 0x1 + | | | | | | "TRM Transport Active 0" = No + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "TRM Transport Active 1" = No + | | | | | | "Socket ID" = "2" + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x2 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "TRM Policy" = "Root" + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@2 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x2 + | | | | | | "Socket ID" = "2" + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Port Number" = 0x2 + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x1 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@3 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "PCIe Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x3 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "PCI Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/apciec1@30000000/AppleT8122PCIeC/pcic1-bridge@0" + | | | | | | | "PCI Entry ID" = 0x100000863 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x100101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltPCIDownAdapterType5 + | | | | | | { + | | | | | | "IOProbeScore" = 0x2000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltPCIDownAdapterType5" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "Adapter Type" = 0x100101 + | | | | | | "Device ID" = "0x00002000&0x0000ff00" + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@4 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "USB Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x4 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x200101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltUSBDownAdapter + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltUSBDownAdapter" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "Adapter Type" = 0x200101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@5 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x5 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@6 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | "Port Number" = 0x6 + | | | | | | "Max In Hop ID" = 0x9 + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | { + | | | | | "IOProbeScore" = 0xb + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "Adapter Type" = 0xe0101 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | } + | | | | | + | | | | +-o AppleThunderboltDPConnectionManager + | | | | { + | | | | "Registered Ports" = ["<1:0x00000000:0x00000006>","<1:0x00000000:0x00000005>"] + | | | | "Registered DP Out Adapters" = [] + | | | | "DP Out Adapters Waiting for Evaluation" = () + | | | | "Waiting for all DP adapters to register" = No + | | | | "Registered DP In Adapters" = ["<1:0x00000000:0x00000006>","<1:0x00000000:0x00000005>"] + | | | | "Evaluating Connections" = No + | | | | } + | | | | + | | | +-o IOTBTTunnelClientInterfaceManager + | | | { + | | | } + | | | + | | +-o dart-acio1@1A80000 + | | | | { + | | | | "sat-dtf-sid" = <02000000000000000f000000> + | | | | "dart-id" = <04000000> + | | | | "bypass-15" = <> + | | | | "sat-dtf-remap" = <01000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "sat-dtf-bypass-2" = <> + | | | | "AAPL,phandle" = <61000000> + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOInterruptSpecifiers" = (<2d040000>) + | | | | "IODeviceMemory" = (({"address"=0xb01a80000,"length"=0x4000})) + | | | | "remap" = <0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "dart-options" = <07000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6163696f3100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <2d040000> + | | | | "manual-availability" = <01000000> + | | | | "sat-dtf-apf-bypass-2" = <> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <1c000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000a8010b0000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000061" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <61000000> + | | | | } + | | | | + | | | +-o mapper-acio1@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6163696f3100> + | | | | "AAPL,phandle" = <62000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <62000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o atc1-dpxbar@304C000 + | | | | { + | | | | "device_type" = <4141504c2c6174632d64707862617200> + | | | | "reg" = <00c004030b0000000040000000000000> + | | | | "IODeviceMemory" = (({"address"=0xb0304c000,"length"=0x4000})) + | | | | "name" = <617463312d64707862617200> + | | | | "AAPL,phandle" = <63000000> + | | | | "compatible" = <6174632d6470786261722c743630327800> + | | | | } + | | | | + | | | +-o AppleT602XATCDPXBAR(atc1-dpxbar) + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleT602XATCDPXBAR" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("atc-dpxbar,t602x") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-dpxbar,t602x" + | | | } + | | | + | | +-o atc1-dpphy + | | | | { + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "compatible" = <6174632d64707068792c743831323200> + | | | | "transport-tunneled" = <00000000> + | | | | "dp-switch-dfp-port" = <00000000> + | | | | "AAPL,phandle" = <64000000> + | | | | "device_type" = <4141504c2c6174632d647070687900> + | | | | "transport-type" = <05000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "port-number" = <02000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "name" = <617463312d647070687900> + | | | | } + | | | | + | | | +-o AppleATCDPAltModePort(atc1-dpphy) + | | | { + | | | "IOClass" = "AppleATCDPAltModePort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPropertyMatch" = {"port-type"=<02000000>} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpphy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000423f5d06000000000300000001000000>,"EventTime"=0x65d3f42,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpphy" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc1-dpin0@1E50000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<2a040000>) + | | | | "dp-switch-dfp-port" = <01000000> + | | | | "transport-index" = <00000000> + | | | | "AAPL,phandle" = <65000000> + | | | | "IODeviceMemory" = (({"address"=0xb01e50000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "acio-parent" = <60000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463312d6470696e3000> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = <2a040000> + | | | | "port-number" = <02000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0000e5010b0000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc1-dpin0) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000006a845e06000000000300000001000000>,"EventTime"=0x65e846a,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc1-dpin1@1E58000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<2b040000>) + | | | | "dp-switch-dfp-port" = <02000000> + | | | | "transport-index" = <01000000> + | | | | "AAPL,phandle" = <66000000> + | | | | "IODeviceMemory" = (({"address"=0xb01e58000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "acio-parent" = <60000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463312d6470696e3100> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = <2b040000> + | | | | "port-number" = <02000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0080e5010b0000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc1-dpin1) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000818f5e06000000000300000001000000>,"EventTime"=0x65e8f81,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o display-crossbar0 + | | | | { + | | | | "ufp-count" = <04000000> + | | | | "compatible" = <646973706c61792d63726f73736261722c743831313200> + | | | | "ufp-endpoints" = <64697370657874300064697370657874310064697370657874320064697370657874330073636f6465633000> + | | | | "name" = <646973706c61792d63726f73736261723000> + | | | | "dfp-endpoints" = <61746330006174633100617463320061746333006c7064707478006470747800> + | | | | "device_type" = <4141504c2c646973706c61792d63726f737362617200> + | | | | "AAPL,phandle" = <67000000> + | | | | "pipe-sharing" = <01000000> + | | | | } + | | | | + | | | +-o AppleT8112DisplayCrossbar(display-crossbar0) + | | | { + | | | "IOClass" = "AppleT8112DisplayCrossbar" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "available-ufps" = () + | | | "IOProbeScore" = 0x186a0 + | | | "IONameMatch" = "display-crossbar,t8112" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"dfp"=("0:ufp1,0-dfp0,0"),"ufp"=()},"EventRaw"=<2000000090000000999bb99d0b0000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>,"EventTime"=0xb9db99b99,"EventClass"="ApplyState"},{"EventPayload"={"dfp"=(),"ufp"=()},"EventRaw"=<2000000090000000e88be0830c0000000000000000000000001000000000000$ + | | | "IONameMatched" = "display-crossbar,t8112" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "current-state" = {"dfp"=("0:ufp1,0-dfp0,0"),"ufp"=()} + | | | "pending-dfps" = () + | | | } + | | | + | | +-o mcc@C03C0000 + | | | | { + | | | | "panic-save-ce" = <01000000> + | | | | "byte-mode" = <01000000> + | | | | "AAPL,phandle" = <68000000> + | | | | "panic-max-size" = <0000000004000000> + | | | | "dramcfg-data" = <3301000040535555> + | | | | "ptd-ranges" = <0e0000001e000000> + | | | | "IODeviceMemory" = (({"address"=0x2d03c0000,"length"=0x20000}),({"address"=0x2d0478000,"length"=0x149c}),({"address"=0x2d0780000,"length"=0x4000}),({"address"=0x220000000,"length"=0x2000000}),({"address"=0x222000000,"length"=0x2000000})) + | | | | "pmp_ptd_update_space_offset" = <00000100> + | | | | "ptd-ranges-smc" = <44000000> + | | | | "name" = <6d636300> + | | | | "pmp_ptd_reg_idx" = <00000000> + | | | | "compatible" = <6d63632c743831323200> + | | | | "dsid_mgmt" = <01000000> + | | | | "dcs-count-per-amcc" = <04000000> + | | | | "dcs-enable-thermal-loop" = <01000000> + | | | | "dcs-true-mr4-read-support" = <01000000> + | | | | "dram-base" = <0000000000010000> + | | | | "dram-limit" = <0000000000020000> + | | | | "device_type" = <6d636300> + | | | | "mcache-pmp" = <01000000> + | | | | "reg" = <00003cc0000000000000020000000000008047c0000000009c14000000000000000078c00000000000400000000000000000001000000000000000020000000000000012000000000000000200000000> + | | | | "plane-count-per-amcc" = <02000000> + | | | | } + | | | | + | | | +-o AppleH15MemCacheController + | | | { + | | | "IOClass" = "AppleH15MemCacheController" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x15ba8 + | | | "IOPlatformActiveAction" = 0x15ba8 + | | | "IOPlatformWakeAction" = 0x15ba8 + | | | "IOPlatformQuiesceAction" = 0x15ba8 + | | | "IOPlatformSleepAction" = 0x15ba8 + | | | "IONameMatch" = "mcc,t8122" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOUserClientClass" = "AppleMCCUserClient" + | | | "IOReportLegend" = ({"IOReportGroupName"="AMC Stats","IOReportChannels"=((0x1,0x100020001,"PCPU0 RD"),(0x2,0x100020001,"PCPU0 DCS RD"),(0x3,0x100020001,"PCPU0 WR"),(0x4,0x100020001,"PCPU0 DCS WR"),(0x5,0x100020001,"ECPU0 RD"),(0x6,0x100020001,"ECPU0 DCS RD"),(0x7,0x100020001,"ECPU0 WR"),(0x8,0x100020001,"ECPU0 DCS WR"),(0x9,0x100020001,"GFX RD"),(0xa,0x100020001,"GFX DCS RD"),(0xb,0x100020001,"GFX WR"),(0xc,0x100020001,"GFX DCS WR"),(0xd,0x100020001,"AFC RD"),(0xe,0x100020001,"AFC WR"),(0xf,0x100020001,"AFI RD"),(0x10,0x10002$ + | | | "IOReportLegendPublic" = Yes + | | | "IONameMatched" = "mcc,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "IOFunctionParent00000068" = <> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o aic@C1000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0000000000000000>) + | | | | "cap0-offset" = <04000000> + | | | | "#address-cells" = <00000000> + | | | | "AAPL,phandle" = <69000000> + | | | | "pubstamplo0-offset" = <08100000> + | | | | "IODeviceMemory" = (({"address"=0x2d1000000,"length"=0x184000})) + | | | | "intmaskclear-stride" = <00000000> + | | | | "intmaskset-stride" = <00000000> + | | | | "pubstampcfg0inttype-mask" = <03000000> + | | | | "extintrcfg-stride" = <00000000> + | | | | "InterruptControllerName" = "IOInterruptController00000069" + | | | | "cap0_max_interrupt_umask" = + | | | | "rev-offset" = <00000000> + | | | | "max_irq_interrupt_umask" = + | | | | "name" = <61696300> + | | | | "pubstampcfg0-offset" = <00100000> + | | | | "pubstampstride-mask" = <10000000> + | | | | "IOInterruptControllers" = ("IOPlatformInterruptController") + | | | | "compatible" = <6169632c3300> + | | | | "#shared-timestamps" = <10000000> + | | | | "interrupt-controller" = <6d617374657200> + | | | | "#interrupt-cells" = <01000000> + | | | | "maxnumirq-offset" = <0c000000> + | | | | "extint-baseaddress" = <00000100> + | | | | "aicglbcfg-offset" = <14000000> + | | | | "pubstampdcfg0en-mask" = <00000080> + | | | | "hwintmon-stride" = <00000000> + | | | | "pubstampdhi-offset" = <0c100000> + | | | | "aic-iack-offset" = <0000040000000000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "#main-cpus" = <08000000> + | | | | "reg" = <000000c1000000000040180000000000> + | | | | } + | | | | + | | | +-o AppleInterruptControllerV3 + | | | { + | | | "IOClass" = "AppleInterruptControllerV3" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleInterruptControllerV3" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformActiveAction" = 0x17ae8 + | | | "IOUserClientClass" = "AppleInterruptControllerUserClient" + | | | "IOPlatformQuiesceAction" = 0x17ae8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "aic,3" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "aic,3" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleInterruptControllerV3" + | | | "InterruptControllerName" = "IOInterruptController00000069" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleInterruptControllerV3" + | | | "IOFunctionParent00000069" = <> + | | | } + | | | + | | +-o aic-timebase@D1180000 + | | | { + | | | "IODeviceMemory" = () + | | | "reg" = <000018d1020000000010000000000000> + | | | "name" = <6169632d74696d656261736500> + | | | "AAPL,phandle" = <6a000000> + | | | "device_type" = <74696d657200> + | | | } + | | | + | | +-o wdt@D42B0000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,<00000000>) + | | | | "function-panic_flush_helper" = <68000000406d654d> + | | | | "AAPL,phandle" = <6b000000> + | | | | "IODeviceMemory" = (({"address"=0x2e42b0000,"length"=0x4000}),({"address"=0x2e42bc218,"length"=0x4}),({"address"=0x2e42b8008,"length"=0x4}),({"address"=0x2e42b802c,"length"=0x4}),({"address"=0x2e42b8020,"length"=0x4})) + | | | | "function-panic_halt_helper" = <68000000216d654d> + | | | | "reconfig-wdog-support" = <> + | | | | "function-panic_notify" = <700000004f4950470e00000000010000> + | | | | "panic-save-flag-bit" = <00000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <77647400> + | | | | "interrupt-parent" = <69000000> + | | | | "wdt-version" = <02000000> + | | | | "panic-forcepoweroff-flag-bit" = <02000000> + | | | | "compatible" = <7764742c7438313232007764742c73356c383936307800> + | | | | "clock-ids" = <04000000> + | | | | "interrupts" = + | | | | "awl-scratch-supported" = <01000000> + | | | | "trigger-config" = <84020210020000000f0000000100000084021210020000000f0000000100000084022210020000000f0000000100000084023210020000000f0000000100000084020211020000000f0000000100000084021211020000000f0000000100000084022211020000000f0000000100000084023211020000000f00000001000000> + | | | | "device_type" = <77647400> + | | | | "reg" = <00002bd400000000004000000000000018c22bd400000000040000000000000008802bd40000000004000000000000002c802bd400000000040000000000000020802bd4000000000400000000000000> + | | | | } + | | | | + | | | +-o AppleARMWatchdogTimer + | | | | { + | | | | "IOClass" = "AppleARMWatchdogTimer" + | | | | "IOPlatformSleepAction" = 0x15e + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IOKitQuiesceWatchdogEnabled" = Yes + | | | | "IOKitQuiesceWatchdogSupported" = Yes + | | | | "PanicWatchdogEnabled" = Yes + | | | | "PanicSMCWatchdogEnabled" = Yes + | | | | "IONameMatch" = "wdt,s5l8960x" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "ShutdownWatchdogEnabled" = Yes + | | | | "IONameMatched" = "wdt,s5l8960x" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "IOPlatformQuiesceAction" = 0x13880 + | | | | "IOFunctionParent0000006B" = <> + | | | | "IOPlatformWakeAction" = 0x15e + | | | | } + | | | | + | | | +-o IOWatchdogUserClient + | | | { + | | | "IOUserClientCreator" = "pid 399, watchdogd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o error-handler@8CC40000 + | | | | { + | | | | "ni8-metadata" = <2038696e0f00000002000000230000000200000000000000> + | | | | "ni7-metadata" = <2037696e0d00000002000000210000000200000000000000> + | | | | "IOInterruptSpecifiers" = (<43010000>,<42010000>,<48010000>,<45010000>,<45010000>,<46010000>,<49010000>,<47010000>,<02010000>,<04010000>,<76000000>,<78000000>,<06010000>,<0a010000>,<0e010000>,<12010000>,<16010000>,<1a010000>,<1e010000>,<22010000>,<09010000>,<0d010000>,<11010000>,<15010000>,<19010000>,<1d010000>,<21010000>,<25010000>,<26030000>,<27030000>,<2b030000>,<2c030000>,<2d030000>,<24030000>,<25030000>,<29030000>,<2a030000>,<2e030000>,<28030000>) + | | | | "nsc-metadata" = <2063736e1100000001000000250000000100000000000000> + | | | | "AAPL,phandle" = <6c000000> + | | | | "IODeviceMemory" = (({"address"=0x29cc40000,"length"=0x40000}),({"address"=0x2d0000000,"length"=0x7c000}),({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e42c8000,"length"=0x4000}),({"address"=0x220000000,"length"=0x2000000}),({"address"=0x222000000,"length"=0x2000000}),({"address"=0x280000000,"length"=0x4000}),({"address"=0x300000000,"length"=0x4000}),({"address"=0x258c00000,"length"=0x40000}),({"address"=0x259000000,"length"=0x40000}),({"address"=0x24fc00000,"length"=0x40000}),({"address"=0x250000000,"length"=0x4000$ + | | | | "sep-metadata" = <207065730000000001000000000000000800000000000000> + | | | | "ni0-metadata" = <2030696e08000000020000001c0000000200000000000000> + | | | | "afc-ns-names" = <2030534e> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "name" = <6572726f722d68616e646c657200> + | | | | "amcc-metadata" = <63636d610400000002000000080000000200000000000000> + | | | | "interrupt-parent" = <69000000> + | | | | "afi-ns-names" = <2030534e> + | | | | "ioa-metadata" = <20616f6906000000020000000a0000000200000000000000> + | | | | "compatible" = <6572726f722d68616e646c65722c743831323200> + | | | | "interrupts" = <430100004201000048010000450100004501000046010000490100004701000002010000040100007600000078000000060100000a0100000e01000012010000160100001a0100001e01000022010000090100000d0100001101000015010000190100001d010000210100002501000026030000270300002b0300002c0300002d0300002403000025030000290300002a0300002e03000028030000> + | | | | "dcs-metadata" = <2073636400000000000000000c0000001000000000000000> + | | | | "nsi-metadata" = <2069736e1200000001000000260000000100000000000000> + | | | | "ni2-metadata" = <2032696e0a000000030000001e0000000300000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6572726f722d68616e646c657200> + | | | | "reg" = <0000c48c000000000000040000000000000000c00000000000c0070000000000000070c00000000000c00c000000000000802cd4000000000040000000000000000000100000000000000002000000000000001200000000000000020000000000000070000000000040000000000000000000f00000000000400000000000000000c048000000000000040000000000000000490000000000000400000000000000c03f000000000000040000000000000000400000000000000400000000000000104000000000000004000000000000004048000000000000040000000000000080480000000000000400000000000000403f0000000000000400000000000000803f0000$ + | | | | "pmgr-metadata" = <72676d700100000003000000000000000000000000000000> + | | | | } + | | | | + | | | +-o AppleH15PlatformErrorHandler + | | | { + | | | "IOClass" = "AppleH15PlatformErrorHandler" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOFunctionParent0000006C" = <> + | | | "IOPlatformActiveAction" = 0x15ba8 + | | | "IOPlatformQuiesceAction" = 0x15ba8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "error-handler,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "error-handler,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o dwi@C0200000 + | | | | { + | | | | "dwi-version" = <01000000> + | | | | "lockout-us" = <05000000> + | | | | "compatible" = <6477692c7438313031006477692c733830303000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <10000000> + | | | | "clock-gates" = <13000000> + | | | | "reg" = <000020c0000000000040000000000000> + | | | | "AAPL,phandle" = <6d000000> + | | | | "str-delay" = <401f0000> + | | | | "polarity-config" = <01000000> + | | | | "device_type" = <64776900> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<10000000>) + | | | | "IODeviceMemory" = (({"address"=0x2d0200000,"length"=0x4000})) + | | | | "nclk-div" = <01000000> + | | | | "name" = <64776900> + | | | | } + | | | | + | | | +-o AppleS8000DWI + | | | { + | | | "IOClass" = "AppleS8000DWI" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS8000DWI" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformActiveAction" = 0x13880 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dwi,s8000" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent0000006D" = <> + | | | "IONameMatched" = "dwi,s8000" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS8000DWI" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS8000DWI" + | | | } + | | | + | | +-o pwm@91040000 + | | | | { + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <70776d2c74383130310070776d2c73356c383932307800> + | | | | "reg" = <00000491000000000040000000000000> + | | | | "interrupts" = <15030000> + | | | | "IODeviceMemory" = (({"address"=0x2a1040000,"length"=0x4000})) + | | | | "clock-gates" = <33000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<15030000>) + | | | | "device_type" = <70776d00> + | | | | "AAPL,phandle" = <6e000000> + | | | | "name" = <70776d00> + | | | | } + | | | | + | | | +-o AppleS5L8920XPWM + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8920XPWM" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleS5L8920XPWM" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8920XPWM" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8920XPWM" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "pwm,s5l8920x" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pwm,s5l8920x" + | | | "IOFunctionParent0000006E" = <> + | | | } + | | | + | | +-o aes@9100C000 + | | | | { + | | | | "sioaesdisable-offset" = <00000000> + | | | | "aes-version" = <03000000> + | | | | "IOInterruptSpecifiers" = (<0a030000>) + | | | | "clock-gates" = <42000000> + | | | | "AAPL,phandle" = <6f000000> + | | | | "sioaesdisablegid1-offset" = <48000000> + | | | | "sioaesdisableuid1-offset" = <40000000> + | | | | "IODeviceMemory" = (({"address"=0x2a100c000,"length"=0x4000}),({"address"=0x2e42dc000,"length"=0x8000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <98000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61657300> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6165732c733830303000> + | | | | "interrupts" = <0a030000> + | | | | "sioaesdisablegid0-offset" = <44000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61657300> + | | | | "reg" = <00c0009100000000004000000000000000c02dd4000000000080000000000000> + | | | | "address-width" = <2a000000> + | | | | } + | | | | + | | | +-o AppleS8000AESAccelerator + | | | { + | | | "IOClass" = "AppleS8000AESAccelerator" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS8000AES" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformWakeAction" = 0x13880 + | | | "IOUserClientClass" = "IOAESAcceleratorUserClient" + | | | "IOPlatformQuiesceAction" = 0x13880 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "aes,s8000" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "aes,s8000" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS8000AES" + | | | "CrashReporter-ID" = <30d4586a342292b8b109873f1b75127ce9816679> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS8000AES" + | | | } + | | | + | | +-o gpio0@B7100000 + | | | | { + | | | | "#interrupt-cells" = <02000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "#gpio-int-groups" = <07000000> + | | | | "reg" = <000010b7000000000000100000000000> + | | | | "#gpio-pins" = + | | | | "AAPL,phandle" = <70000000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "IODeviceMemory" = (({"address"=0x2c7100000,"length"=0x100000})) + | | | | "#address-cells" = <00000000> + | | | | "InterruptControllerName" = "IOInterruptController00000070" + | | | | "role" = <415000> + | | | | "name" = <6770696f3000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000070" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "IOFunctionParent00000070" = <> + | | | "role" = "AP" + | | | } + | | | + | | +-o aop-gpio@E4824000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<5a010000>,<5b010000>,<5c010000>,<5d010000>,<5e010000>,<5f010000>,<60010000>) + | | | | "wake-no-interrupt-group" = <04000000> + | | | | "wake-events" = <0616061a041a0000> + | | | | "#gpio-int-groups" = <07000000> + | | | | "#address-cells" = <00000000> + | | | | "supported-int-groups" = <040000000500000006000000> + | | | | "AAPL,phandle" = <71000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4824000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000071" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <616f702d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = <5a0100005b0100005c0100005d0100005e0100005f01000060010000> + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <36000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <414f5000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004082e4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000071" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000071" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "AOP" + | | | } + | | | + | | +-o nub-gpio@D41F0000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "wake-no-interrupt-group" = <04000000> + | | | | "wake-events" = <02040000> + | | | | "#gpio-int-groups" = <07000000> + | | | | "#address-cells" = <00000000> + | | | | "supported-int-groups" = <040000000500000006000000> + | | | | "AAPL,phandle" = <72000000> + | | | | "IODeviceMemory" = (({"address"=0x2e41f0000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000072" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6e75622d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <20000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <4e554200> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <00001fd4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000072" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000072" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "NUB" + | | | } + | | | + | | +-o smc-gpio@DC820000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "wake-events" = <> + | | | | "#gpio-int-groups" = <07000000> + | | | | "AAPL,phandle" = <73000000> + | | | | "supported-int-groups" = <0500000006000000> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2ec820000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000073" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <736d632d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <12000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <534d4300> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <000082dc000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000073" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000073" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "SMC" + | | | } + | | | + | | +-o aop@E4400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<74010000>,<73010000>,<76010000>,<75010000>) + | | | | "aot-power" = <01000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = <74000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4400000,"length"=0x6c000}),({"address"=0x2f4050000,"length"=0x4000}),({"address"=0x2f4c00000,"length"=0x1e0000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f45544558543b5f5f4f535f4c4f4700> + | | | | "iommu-parent" = <7f000000> + | | | | "function-pll_off_mode" = <820000004d4c4c500100000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <616f7000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <74010000730100007601000075010000> + | | | | "clock-ids" = <> + | | | | "role" = <414f5000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616f7000> + | | | | "power-gates" = <> + | | | | "reg" = <000040e40000000000c0060000000000000005e40000000000400000000000000000c0e40000000000001e000000000000802ad4000000000800000000000000> + | | | | "segment-ranges" = <0000c0f40200000000000001000000000000c0f40200000000c009000300000000c0c9f40200000000c009010000000000c0c9f40200000000c010000600000000808e000001000000801a0100000000000000000001000000c001000100000000c0d70a00010000000000fd0000000000c0d70a00010000003001000a000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "AOP" + | | | | } + | | | | + | | | +-o iop-aop-nub + | | | | { + | | | | "aop-target" = <00000000> + | | | | "sleep-on-hibernate" = <> + | | | | "uuid" = <43433932363630302d463034302d334533312d414436412d42373033423331393041343800> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <75000000> + | | | | "region-base" = <0000c0f402000000> + | | | | "firmware-name" = <6d6163313567616f7000> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f45544558543b5f5f4f535f4c4f4700> + | | | | "KDebugCoreID" = 0xe + | | | | "region-size" = <00002a0000000000> + | | | | "aop-fr-timebase" = <01000000> + | | | | "enable-doppler" = <01000000> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0000c0f40200000000000001000000000000c0f40200000000c009000300000000c0c9f40200000000c009010000000000c0c9f40200000000c010000600000000808e000001000000801a0100000000000000000001000000c001000100000000c0d70a00010000000000fd0000000000c0d70a00010000003001000a000000> + | | | | "name" = <696f702d616f702d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o AppleSPUTimesyncV2 + | | | | { + | | | | "IOClass" = "AppleSPUTimesyncV2" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("iop-aop-nub") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleSPUTimesync" + | | | | "timesync" = {"spu"=0x4533565ef72b0,"ap"=0x78ccdc76b152,"ap-cont"=0x4533565ef7697,"calendar"=0x183df265ea4321aa} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "iop-aop-nub" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOKitDebug" = 0xffff + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | } + | | | | + | | | +-o RTBuddy(AOP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.debug" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <75000000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "FirmwareUUID" = "cc926600-f040-3e31-ad6a-b703b3190a48" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "mac15gaop:DEBUG:AppleSPUFirmwareBuilder-642.100.42~6551" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "AOP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "AOP" + | | | | | } + | | | | | + | | | | +-o AppleSPUFirmwareService + | | | | { + | | | | "IOPropertyMatch" = {"role"="AOP"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOMatchCategory" = "RTBuddyFirmwareService" + | | | | "IOClass" = "AppleSPUFirmwareService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Role" = "AOP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="AOP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="AOP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000000 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 32","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o SPUApp + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xc7} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000000 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUAppDriver + | | | | | { + | | | | | "IOClass" = "AppleSPUAppDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleSPUAppDriverUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("SPUApp") + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IONameMatched" = "SPUApp" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | } + | | | | | + | | | | +-o AppleSPUProfileDriver + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOMatchCategory" = "AppleSPUProfileDriver" + | | | | "IOClass" = "AppleSPUProfileDriver" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "AppleSPUAppDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "AppleSPUProfileDriverUserClient" + | | | | } + | | | | + | | | +-o AOPEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000001 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 33","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o wakehint + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x184} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000001 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x1 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0aff00a101150026ff00750895018102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0xff + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0xff},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExp$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | | { + | | | | | | "MaxOutputReportSize" = 0x0 + | | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | | "DeviceOpenedByEventSystem" = No + | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | | "PrimaryUsage" = 0xff + | | | | | | "LocationID" = 0x0 + | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | | "Transport" = "SPU" + | | | | | | "ReportInterval" = 0x1f40 + | | | | | | "ReportDescriptor" = <0600ff0aff00a101150026ff00750895018102c0> + | | | | | | "Built-In" = Yes + | | | | | | "Manufacturer" = "Apple" + | | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | | "MaxInputReportSize" = 0x1 + | | | | | | } + | | | | | | + | | | | | +-o AppleSPUHIDDriver + | | | | | | { + | | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | | "Transport" = "SPU" + | | | | | | "AppleVoltageDictionary" = {} + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | | "QueueSize" = 0x4000 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Built-In" = Yes + | | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | "Manufacturer" = "Apple" + | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "AOPSupportsAggregateDictionary" = Yes + | | | | | | "calibration_state" = 0x1 + | | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | | "VendorIDSource" = 0x0 + | | | | | | "HIDServiceSupport" = Yes + | | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | | "CountryCode" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | | "VendorID" = 0x0 + | | | | | | "VersionNumber" = 0x0 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | | "motionRestrictedService" = No + | | | | | | "PrimaryUsage" = 0xff + | | | | | | "LocationID" = 0x0 + | | | | | | "ProductID" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "ReportInterval" = 0x0 + | | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | | } + | | | | | | + | | | | | +-o IOHIDEventServiceUserClient + | | | | | | { + | | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | | "IOUserClientEntitlements" = No + | | | | | | "DebugState" = {"EnqueueEventCount"=0x51e,"LastEventTime"=0x1a834cd7686,"EventQueue"={"NoFullMsg"=0x0,"tail"=0x35d0,"NotificationForce"=0x0,"NotificationCount"=0x51e,"head"=0x35d0}} + | | | | | | } + | | | | | | + | | | | | +-o AppleSPUHIDDriverUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000d + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 34","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0xd0000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o aop-audio + | | | | | { + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "compatible" = <616f702d617564696f00> + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x117} + | | | | | "service_id" = 0x1000000d + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "device_type" = <616f702d617564696f00> + | | | | | "AAPL,phandle" = <76000000> + | | | | | "name" = <616f702d617564696f00> + | | | | | } + | | | | | + | | | | +-o AppleAOPAudioController + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioController" + | | | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | | "verbose level" = 0x1 + | | | | | | "input clock domain" = 0x6d61696e + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "channels per frame" = 0x3 + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOUserClientClass" = "AppleAOPAudioUserClient" + | | | | | | "listening enabled" = 0x0 + | | | | | | "device input latency in frames" = 0x1 + | | | | | | "historicDataSupported" = 0x1 + | | | | | | "bytes per sample" = 0x4 + | | | | | | "IONameMatch" = ("aop-audio") + | | | | | | "listening on gesture supported" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "input samples per sec" = 0x3e80 + | | | | | | "frames per packet" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "zero timestamp wrap frames" = 0xc80 + | | | | | | "IONameMatched" = "aop-audio" + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x100000000,0x181000001,"StateErrorCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="aop-audio-clientmanager:hpai"},{"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x100000000,0x181000001,"StateErrorCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="aop-audio-clientmanager:lilb"},{"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x2000$ + | | | | | | "driver safety offset in frames" = 0x400 + | | | | | | } + | | | | | | + | | | | | +-o audio-pdm2 + | | | | | | | { + | | | | | | | "clockSource" = <206c6c70> + | | | | | | | "channelsEnabled" = <07000000> + | | | | | | | "AAPL,phandle" = <77000000> + | | | | | | | "pdmcFrequency" = <00366e01> + | | | | | | | "fastClockSpeed" = <00366e01> + | | | | | | | "channelCount" = <03000000> + | | | | | | | "channelsSupported" = <07000000> + | | | | | | | "pdmFrequency" = <009f2400> + | | | | | | | "name" = <617564696f2d70646d3200> + | | | | | | | "micTurnOnTimeMs" = <14000000> + | | | | | | | "bytesPerSample" = <03000000> + | | | | | | | "compatible" = <617564696f2d616f702d70646d3200> + | | | | | | | "identifier" = <306d6470> + | | | | | | | "channelPolaritySelect" = <00010000> + | | | | | | | "hfdConfigForHighPowerClks" = <78000000> + | | | | | | | "channelPhaseSelect" = <00000000> + | | | | | | | "voiceTriggerChannel" = <01000000> + | | | | | | | "micSettleTimeMs" = <32000000> + | | | | | | | "slowClockSpeed" = <00366e01> + | | | | | | | "device_type" = <617564696f2d70646d3200> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioPDM2Device + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioPDM2Device" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-aop-pdm2","audio-pdm2") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IOFunctionParent00000077" = <> + | | | | | | "IONameMatched" = "audio-pdm2" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "id0" = "pdm0" + | | | | | | } + | | | | | | + | | | | | +-o hfdc-2400000 + | | | | | | { + | | | | | | "latency" = <24000000> + | | | | | | "ratios" = <0a050300> + | | | | | | "compatible" = <617564696f2d616f702d70646d3200> + | | | | | | "coefficients" = <6baeffffffffffff7095feffffffffff47f1fbffffffffff0172f6ffffffffff6b6fecffffffffff46d3dbffffffffffc282c2ffffffffffbdb29effffffffff4ca86fffffffffff996936ffffffffff1da3f6feffffffff4c45b7feffffffff64ec82feffffffff0c9d67feffffffff79d775fefffffffffcb5befeffffffff7c3e51ffffffffff9bf3360000000000c91d7001000000001e41f00200000000ed809b0400000000439c450600000000aa3bb307000000004efe9d08000000001876bb080000000048c4c607000000008b1a8c050000000048e3f4010000000089fc12fdffffffff5f3929f7ffffffff6d6aaff0ffffffff647$ + | | | | | | "filterLengths" = <6049d900> + | | | | | | "identifier" = <34326668> + | | | | | | "AAPL,phandle" = <78000000> + | | | | | | "name" = <686664632d3234303030303000> + | | | | | | } + | | | | | | + | | | | | +-o audio-hp + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d687000> + | | | | | | | "device_type" = <617564696f2d616f702d687000> + | | | | | | | "name" = <617564696f2d687000> + | | | | | | | "AAPL,phandle" = <79000000> + | | | | | | | "identifier" = <69617068> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioClientManager + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioClientManager" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-hp","audio-aop-ldcm","audio-aop-hawking","audio-leap-internal-loopback","audio-leap-mca-loopback","audio-aop-speaker-manager","audio-aud-mca-baseband","audio-aud-mca-loopback","audio-aop-mca2-pmgr","audio-aop-mca3-pmgr","audio-aop-mca4-pmgr","audio-aop-mca5-pmgr") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IONameMatched" = "audio-hp" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOFunctionParent00000079" = <> + | | | | | | "id0" = "hpai" + | | | | | | } + | | | | | | + | | | | | +-o audio-lp-mic-in + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d6c702d6d69632d696e00> + | | | | | | | "device_type" = <617564696f2d616f702d6c702d6d69632d696e00> + | | | | | | | "name" = <617564696f2d6c702d6d69632d696e00> + | | | | | | | "AAPL,phandle" = <7a000000> + | | | | | | | "identifier" = <6961706c> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioLPMicInDevice + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioLPMicInDevice" + | | | | | | "supportsHistoricalData" = 0x1 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "channelStatus" = (0x0,0x0,0x0,0x0) + | | | | | | "clockDomain" = 0x6d61696e + | | | | | | "channels per frame" = 0x3 + | | | | | | "device input latency in frames" = 0x1 + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "channelControl" = (0x7,0x7,0x1,0x7) + | | | | | | "id0" = "lpai" + | | | | | | "listening enabled" = 0x0 + | | | | | | "historicDataSupported" = 0x1 + | | | | | | "bytes per sample" = 0x4 + | | | | | | "IONameMatch" = ("audio-lp-mic-in","audio-aop-lp-mic-in") + | | | | | | "state" = "idle" + | | | | | | "listening on gesture supported" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "input samples per sec" = 0x3e80 + | | | | | | "frames per packet" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "zero timestamp wrap frames" = 0xc80 + | | | | | | "IONameMatched" = "audio-lp-mic-in" + | | | | | | "IOFunctionParent0000007A" = <> + | | | | | | "historicalBytesSinceWake" = 0x0 + | | | | | | "driver safety offset in frames" = 0x400 + | | | | | | } + | | | | | | + | | | | | +-o audio-leap-internal-loopback + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d6c6561702d696e742d6c6f6f706261636b00> + | | | | | | | "device_type" = <617564696f2d616f702d6c6561702d696e742d6c6f6f706261636b00> + | | | | | | | "name" = <617564696f2d6c6561702d696e7465726e616c2d6c6f6f706261636b00> + | | | | | | | "AAPL,phandle" = <7b000000> + | | | | | | | "identifier" = <626c696c> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioClientManager + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioClientManager" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-hp","audio-aop-ldcm","audio-aop-hawking","audio-leap-internal-loopback","audio-leap-mca-loopback","audio-aop-speaker-manager","audio-aud-mca-baseband","audio-aud-mca-loopback","audio-aop-mca2-pmgr","audio-aop-mca3-pmgr","audio-aop-mca4-pmgr","audio-aop-mca5-pmgr") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IONameMatched" = "audio-leap-internal-loopback" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOFunctionParent0000007B" = <> + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "id0" = "lilb" + | | | | | | } + | | | | | | + | | | | | +-o AppleAOPAudioUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAOPAudioService + | | | | { + | | | | } + | | | | + | | | +-o AOPEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000c + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 35","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o aop-voicetrigger + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xed} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000c + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleAOPVoiceTriggerController + | | | | | { + | | | | | "IOClass" = "AppleAOPVoiceTriggerController" + | | | | | "VTIdentity" = "AppleAOPVoiceTrigger-1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "IOResourceMatch" = "IOKit" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | "VTActiveChannelMask" = 0x1 + | | | | | "VTLastTriggerSampleTime" = 0x0 + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOUserClientClass" = "AppleAOPVoiceTriggerUserClient" + | | | | | "VTLastTriggerTime" = 0x0 + | | | | | "VTConfigured" = No + | | | | | "VTTriggerCount" = 0x0 + | | | | | "IONameMatch" = ("aop-voicetrigger") + | | | | | "VTLastWakeReason" = "unkn" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "voice trigger supported" = 0x1 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "IONameMatched" = "aop-voicetrigger" + | | | | | "voice trigger configured" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "VTSupported" = Yes + | | | | | "voice trigger enabled" = 0x0 + | | | | | "VTEnabled" = No + | | | | | } + | | | | | + | | | | +-o AppleAOPVoiceTriggerUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000004 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 36","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o accel + | | | | | { + | | | | | "accel-range-extr-cal" = <0200010100000000280000000100000000000100000000000000000000000000000001000000000000000000000000000000010000000000> + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "device-usage-page" = <00ff0000> + | | | | | "AAPL,phandle" = <7c000000> + | | | | | "service_id" = 0x10000004 + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "accel-nominal-extr-cal" = <02000101000000002800000001000000000000000000ffff000000000000ffff000000000000000000000000000000000000010000000000> + | | | | | "device_type" = <616363656c00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "device-usage" = <03000000> + | | | | | "accel-range-intr-cal" = <02000101000000002c0000000100000010000000007d0000000000000000000000000000007d0000000000000000000000000000007d000000000000> + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x154} + | | | | | "name" = <616363656c00> + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x16 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0300a101150026ff00750895168102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x3},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0xb0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0xb0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0300a101150026ff00750895168102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x16 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x2 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "50 100 200 400 800 " + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = Yes + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "23286b416c47045607090b23" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "dispatchAccel" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "BMI286" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Bosch" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {"ACCEL_TEMP"=0x0} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x10 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000005 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 37","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o gyro + | | | | | { + | | | | | "gyro-range-intr-cal" = <02000101000000002c00000001000000d0070000a00f0000000000000000000000000000a00f0000000000000000000000000000a00f000000000000> + | | | | | "gyro-nominal-extr-cal" = <0200010100000000280000000100000000000000000001000000000000000100000000000000000000000000000000000000ffff00000000> + | | | | | "device-usage-page" = <00ff0000> + | | | | | "AAPL,phandle" = <7d000000> + | | | | | "service_id" = 0x10000005 + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "device_type" = <6779726f00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "device-usage" = <09000000> + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x18d} + | | | | | "gyro-range-extr-cal" = <0200010100000000280000000100000000000100000000000000000000000000000001000000000000000000000000000000010000000000> + | | | | | "gyro-temp-table" = <0200cb1502001000c3ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | | | | "name" = <6779726f00> + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x16 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0900a101150026ff00750895168102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x9 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x9},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0xb0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0xb0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x9 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0900a101150026ff00750895168102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x16 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x2 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "50 100 200 400 800 " + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = Yes + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "23286b416c47045607090b23" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "BMI286" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Bosch" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "dispatchGyro" = Yes + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x9 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {"GYRO_TEMP"=0x0} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x10 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000006 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 38","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o las + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x52,"_ap_latency"=0x9c0} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000006 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x8 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0520098aa10185010a7f044668013426680114750995018102651485020a0b0345ff3425ff1475089501810285030a070347ffffff7f3427ffffff7f1475209501810247010000003427010000001475089501810285040a030345033425031475089501810285050a840445023425021475089501810285060a440545013425011475089501910285070a450547a08c00003427a08c00001475329501550e810285080a4605450234250214750895018102c0> + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x8a + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x20,"Max"=0x168,"IsArray"=No,"Type"=0x1,"Size"=0x9,"Min"=0x0,"Flags"=0x2,"ReportID"=0x1,"Usage"=0x47f,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x9,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x168,"ElementCookie"=0x14},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"U$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x2,0x100020001,"Report 2"),(0x3,0x100020001,"Report 3"),(0x4,0x100020001,"Report 4"),(0x5,0x100020001,"Report 5"),(0x6,0x100020001,"Report 6"),(0x7,0x100020001,"Report 7"),(0x8,0x100020001,"Report 8")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x1c,"Size"=0x11,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x11,"Usage"=0x0},{"ReportID"=0x2,"ElementCookie"=0x1d,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x3,"ElementCookie"=0x1e,"Size"=0x30,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x30,"Usage"=0x0},{"ReportID"=0x4,"ElementCookie"=0x1f,"Size"=0x10,"ReportCount"$ + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x8a + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0520098aa10185010a7f044668013426680114750995018102651485020a0b0345ff3425ff1475089501810285030a070347ffffff7f3427ffffff7f1475209501810247010000003427010000001475089501810285040a030345033425031475089501810285050a840445023425021475089501810285060a440545013425011475089501910285070a450547a08c00003427a08c00001475329501550e810285080a4605450234250214750895018102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | "MaxInputReportSize" = 0x8 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "sensor_rates" = "" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = No + | | | | | "SerialNumber" = "" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "_first_ts_s" = 0xf39d2 + | | | | | "model" = "ma781" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "MagAlpha" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x8a + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x87 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "_num_first_less1s" = 0x51e + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000010 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 39","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o als + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0xa2d,"_ap_latency"=0xeb5} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000010 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x7a + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0400a101150026ff007508957a8100c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x4 + | | | | | "LocationID" = 0x5 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x3d0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x3d0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x4 + | | | | | "LocationID" = 0x5 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0400a101150026ff007508957a8100c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x7a + | | | | | } + | | | | | + | | | | +-o AppleSPUVD6286 + | | | | | { + | | | | | "LocationID" = 0x5 + | | | | | "ALSSuperFastIntegrationTime" = 0x182b8 + | | | | | "ALSSlowIntegrationTime" = 0x3d090 + | | | | | "ALSGain" = 0x40 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleALSColorSensor" + | | | | | "Calibrated" = Yes + | | | | | "CFSN" = 0x7010a3fa3ee1e6b + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HIDServiceSupport" = Yes + | | | | | "SysConfigCalibration" = No + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "ALSFastIntegrationTime" = 0x186a0 + | | | | | "IOProbeScore" = 0x4b0 + | | | | | "IOClass" = "AppleSPUVD6286" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Orientation" = 0x1 + | | | | | "UseAABPlugin" = Yes + | | | | | "ALSSensorType" = 0x7 + | | | | | "manufacturer" = "Redbird" + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "CalibrationResult" = 0x1 + | | | | | "motionRestrictedService" = No + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleALSColorSensor" + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "LogLevel" = 0x6 + | | | | | "FDRCalibration" = Yes + | | | | | "ALSOcclusionIntegrationTime" = 0xf230 + | | | | | "crgb" = 0x1 + | | | | | "ReportInterval" = 0x30304 + | | | | | "Placement" = 0x1 + | | | | | "VendorID" = 0x0 + | | | | | "ChipType" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleALSColorSensor" + | | | | | "CalibrationData" = <01020000000000000001c1009a59fa00640063003e00060606060505d07f1dba725a453b5440bd3c96cbf33ca52e863c5c3ca9463796a3c45728a14506df9dc52ca61c4503000000000c000080008000800080c97fce7f3d80f47f2980050000000005000080008000800080db7fdd7f488015803980060000000006000080008000800080b97fe67f2380ea7ffb7f040000000007000080008000800080d17fd57f3c8045803780040000000007000080008000800080c07fc27f2580c87fa57f> + | | | | | "chip_id" = 0xa3fa3ee + | | | | | "ProductID" = 0x0 + | | | | | "calibration_state" = 0x1 + | | | | | "CalibrationType" = 0x2 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "HIDEventServiceProperties" = {"BatchInterval"=0x1} + | | | | | "PrimaryUsage" = 0x4 + | | | | | "FastModeFilter" = Yes + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "CurrentLux" = 0x3e + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "Transport" = "SPU" + | | | | | "VendorIDSource" = 0x0 + | | | | | "Manufacturer" = "Apple" + | | | | | "CountryCode" = 0x0 + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x2648,"NotificationForce"=0x0,"NotificationCount"=0x4e2fd,"head"=0x2648},"EnqueueEventCount"=0x4e2fd,"LastEventType"=0xc,"LastEventTime"=0x40eb33a} + | | | | } + | | | | + | | | +-o AOPEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000a + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 40","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "historical queue size" = 0x80000 + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o cma + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x35,"_ap_latency"=0x2139} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000a + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "historical buffer defers queue start" = Yes + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <060cff0901a1018500150026ff00750895058102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x1 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff0c,"Usage"=0x1},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x1 + | | | | | "LocationID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <060cff0901a1018500150026ff00750895058102c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x5 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"_num_events"=0x25302,"_num_events_after_wake"=0x72c,"_num_events_before_sleep"=0x35,"_last_event_timestamp"=0x2e6312d0201} + | | | | | "_num_first_more1s" = 0x97 + | | | | | "motionRestrictedService" = No + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "ProductID" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "_first_ts_s" = 0x2745eb + | | | | | "QueueSize" = 0x14000 + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x1 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "_num_first_less1s" = 0x487 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | | { + | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | "IOUserClientEntitlements" = No + | | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x6b8c,"NotificationForce"=0x0,"NotificationCount"=0x30764,"head"=0x6b8c},"EnqueueEventCount"=0x462b8,"LastEventType"=0x1,"LastEventTime"=0x2c1041ee} + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriverUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 601, locationd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000b + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 41","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o devmotion6 + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xed} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000b + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x64 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <060cff0905a1018500150026ff00750895648102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff0c,"Usage"=0x5},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x320,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x320,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <060cff0905a1018500150026ff00750895648102c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x64 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "Transport" = "SPU" + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "QueueSize" = 0x4000 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "Manufacturer" = "Apple" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "calibration_state" = 0x1 + | | | | | "VendorIDSource" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "HIDServiceSupport" = Yes + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "motionRestrictedService" = Yes + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EnqueueEventCount"=0x51e,"LastEventTime"=0x1a8354964ec,"EventQueue"={"NoFullMsg"=0x0,"tail"=0x35d0,"NotificationForce"=0x0,"NotificationCount"=0x51e,"head"=0x35d0}} + | | | | } + | | | | + | | | +-o AOPEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000007 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 42","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o als-temp + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x13e} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000007 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0xe + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0500a101150026ff007508950e8102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x5},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x70,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x70,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0500a101150026ff007508950e8102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0xe + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = No + | | | | | "SerialNumber" = "" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "TMP108" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Texas Instruments" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x0 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint12 + | | | | { + | | | | } + | | | | + | | | +-o AppleSPU@1000000e + | | | | { + | | | | "IOClass" = "AppleSPU" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 43","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | "IOReportLegendPublic" = Yes + | | | | "slaveAlignment" = 0x40 + | | | | "IONameMatched" = "AOPEndpoint12" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "rx queue size" = 0x4000 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "tx queue size" = 0x4000 + | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | } + | | | | + | | | +-o aop-audprov + | | | { + | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xf4} + | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | "service_id" = 0x1000000e + | | | "IOReportLegendPublic" = Yes + | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | } + | | | + | | +-o dart-aop@E4818000 + | | | | { + | | | | "dart-id" = <05000000> + | | | | "IOInterruptSpecifiers" = (<87010000>) + | | | | "AAPL,phandle" = <7e000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4818000,"length"=0x4000}),({"address"=0x2f481c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000046504144000000004441504600000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d616f7000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000040000000a000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <87010000> + | | | | "dapf-instance-0" = <000024e402000000730324e402000000010000000000000000000000000000000000000000000000000000000000000000030100008046a502000000038046a50200000001000000000000000000000000000000000000000000000000000000000000000003010000402be40200000043462be402000000010000000000000000000000000000000000000000000000000000000000000000030100004028e402000000f34028e40200000001000000000000000000000000000000000000000000000000000000000000000003010080c129e4020000009bc529e4020000000100000000000000000000000000000000000000000000000000000000000000$ + | | | | "vm-base" = <00c0010000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b7010080000000001802000004000000fcffff3f00000000d4402e000000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000001f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008081e400000000004000000000000000c081e4000000000040000000000000> + | | | | "vm-size" = <0040feffff020000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000007E" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <7e000000> + | | | | } + | | | | + | | | +-o mapper-aop@0 + | | | | | { + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "name" = <6d61707065722d616f7000> + | | | | | "AAPL,phandle" = <7f000000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <7f000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-aop-admac@A + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <0a000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d616f702d61646d616300> + | | | | | "AAPL,phandle" = <80000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <80000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-scm@4 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "name" = <6d61707065722d73636d00> + | | | | "AAPL,phandle" = <81000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <81000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o pmgr@C0700000 + | | | | { + | | | | "reg" = <000070c00000000000c00c0000000000000028d4000000000000080000000000000000c0000000000000070000000000000020d40000000000c0070000000000004000d40000000000100000000000000000e20000000000002000000000000000000500000000000010ef00000000000000e4000000000000900000000000000000e500000000000010e800000000000000e700000000000010000000000000000005000000000000000100000000000000150000000000000001000000000000002500000000000000010000000000000035000000000000000100000000000000e20100000000002000000000000000000501000000000010ef00000000000000e4010000$ + | | | | "apsc-snooze" = <00000000> + | | | | "dcs-tvm" = <01000000> + | | | | "dvd-factor" = <00000100> + | | | | "voltage-states5" = + | | | | "rosc-apply" = <00000000> + | | | | "events" = <000001010101000141465f464153545f434c4b5f534c4f00000000020000c601534f435f54564d5f54454d505f300000000000030000c701534f435f54564d5f54454d505f310000000000040000c801534f435f54564d5f54454d505f320000000000050000c901534f435f54564d5f54454d505f330000000000060000ca014443535f54564d5f54454d505f300000000000070000cb014443535f54564d5f54454d505f310000000000080000cc014443535f54564d5f54454d505f320000000000090000cd014443535f54564d5f54454d505f3300000000000a0000ce014746585f54564d5f54454d505f3000000000000b0000cf014746585f54564d5f54454d505$ + | | | | "config-ret-mem-grp-mode" = <01000000> + | | | | "interrupt-parent" = <69000000> + | | | | "bridge-reg-index" = <2f000000> + | | | | "cpu-apsc" = <01000000> + | | | | "vdd-cio-rail-pg" = <01000000> + | | | | "ane-dpe" = <01000000> + | | | | "dvd-period-us" = <401f0000> + | | | | "function-perf-boost" = <409c0000000000004443535f5057525f474154450000000030750000000000004443535f434c4b5f4741544500000000a86100000000000043504d5f5057525f4741544500000000204e0000040f01004443535f504552465f424f4f535400001027000007000210414d43435f434c4b5f47415445000000102700001a070300494d585f5057525f4741544500000000102700001907021d534d585f5057525f4741544500000000102700001905021c524d585f5057525f4741544500000000> + | | | | "ap-wake-sources" = <03000000414f502e43505557616b657570415000000000000000000000000000000000000c000000414f502e4750494f2e495251360000000000000000000000000000000000000033000000414f502e4f7574626f784e6f74456d70747900000000000000000000000000004a000000414f502e53504d49302e5357330000000000000000000000000000000000000053000000414f502e53504d49312e5357330000000000000000000000000000000000000057000000415443302e43494f57616b65757000000000000000000000000000000000000058000000415443302e55534257616b65757000000000000000000000000000000000000059000000$ + | | | | "ppt-thrtl" = + | | | | "function-pmp_control" = <8900000043504d50> + | | | | "voltage-states9-sram" = <0000000016030000807825141603000080eed5241603000000ff712f160300000059d431160300000028503716030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "tunableh-major-rev" = <02000000> + | | | | "dvd-threshold-us" = + | | | | "acc-harvesting" = <01000000> + | | | | "voltage-states0" = <010000009402000001000000d50200000100000025030000> + | | | | "frc-cpm-on-hack" = <00000000> + | | | | "pwrgate-regs" = <00000000ac400200000000ff0000008000000000ac500200ffffffff0000008000000000ac600200ffbf000000000080> + | | | | "hw-dpe-reg" = <0080e41002000000280000000000000000000100000100404543504d0000000000000000000000000080e41102000000280000000000000000000100000100405043504d00000000000000000000000000900510020000002800000000000000000001000001004045434f5245300000000000000000000000901510020000002800000000000000000001000001004045434f5245310000000000000000000000902510020000002800000000000000000001000001004045434f5245320000000000000000000000903510020000002800000000000000000001000001004045434f524533000000000000000000000090051102000000280000000000000000000$ + | | | | "devices" = <0000020000000000000000040500000000000000000000000000010000000000454350553000000000000000000000000000020000000000000001040600000000000000000000000000020000000000454350553100000000000000000000000000020000000000000002040700000000000000000000000000030000000000454350553200000000000000000000000000020000000000000003040800000000000000000000000000040000000000454350553300000000000000000000000000050000000000000004040900000000000000000000000000050000000000504350553000000000000000000000000000050000000000000005040a00000000000000$ + | | | | "perf-domains" = <00040001000000002c010000534f43000000000000000000000000000101010200000000000000004543505500000000000000000000000002040003000000002c0100004443530000000000000000000000000005010105000000000000000050435055000000000000000000000000080000080000000000000000414e45000000000000000000000000000b04000b000000002c01000044495350000000000000000000000000> + | | | | "tunableh-minor-rev" = <00000000> + | | | | "compatible" = <706d6772312c743831323200> + | | | | "name" = <706d677200> + | | | | "voltage-states9" = <000000007d000000807825147602000080eed524ad02000000ff712fe90200000059d431110300000028503711030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "AAPL,phandle" = <82000000> + | | | | "total-rails-leakage" = <00000000> + | | | | "interrupts" = + | | | | "soc-dpe" = <01000000> + | | | | "gfx-tvm" = <01000000> + | | | | "voltage-states2" = <010000006702000001000000ad02000001000000f30200000100000043030000010000007a030000> + | | | | "soc-tvm" = <01000000> + | | | | "aes-domain-hack" = <00000000> + | | | | "clpc" = <03000000> + | | | | "voltage-states1-sram" = <008a582c16030000002d3a3e1603000000f9f95720030000009d72777f03000000ef2e87bb03000000775998f20300000027cba329040000> + | | | | "function-mcc_ctrl" = <68000000246d654d> + | | | | "power-domains" = <004f0101000000004146495f4146430000000000000000000050010200000000414d43433000000000000000000000000051010300000000414d43433200000000000000000000000052010400000000444353300000000000000000000000000053010500000000444353320000000000000000000000000054010600000000444353310000000000000000000000000055010700000000444353330000000000000000000000000056010800000000444353340000000000000000000000000057010900000000444353350000000000000000000000000058010a00000000444353360000000000000000000000000059010b00000000444353370000000000$ + | | | | "reset-noaccess-poll" = <01000000> + | | | | "first-acc-dvfm-map-state" = <01000000> + | | | | "gpu-pwc-win-size" = <07000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "amx-thrtl" = <01000000> + | | | | "dvc-debug" = <01000000> + | | | | "clocks" = <3d01010100000000464153545f41460000000000000000003e01010200000000534252000000000000000000000000003f01010300000000504d5000000000000000000000000000400101040000000044504500000000000000000000000000410101050000000053494f5f4100000000000000000000004201010600000000414d435f554644495f444154410000004301010700000000444953503000000000000000000000004401010800000000414e530000000000000000000000000045010109000000004953505f4300000000000000000000004601010a000000004d4355000000000000000000000000004701010b00000000414e45305f535953000000000$ + | | | | "wake-time-events" = <01000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "device-bridges" = <000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040300000000000000000000000000000000000000000000000$ + | | | | "noise-hack" = <00000000> + | | | | "#bridges" = <20000000> + | | | | "pmgr-dock-fifo-channel" = <03000000> + | | | | "disp-tvm" = <01000000> + | | | | "perf-counter-version" = <02000000> + | | | | "ptd-ranges" = <0a0000000b0000000c0000000d0000000200000004000000> + | | | | "perf-regs" = <010000000040030038000000030000000000000000000200320100000000000000000000008007001a000000000000000000000000c007001a000000000000000300000000b8070001000000030000000200000000d806006200000000000000> + | | | | "energy-counters" = <00000305000000194543505530000000000000000000000000000000000000000000000000000000000003060000001945435055310000000000000000000000000000000000000000000000000000000000030700000019454350553200000000000000000000000000000000000000000000000000000000000308000000194543505533000000000000000000000000000000000000000000000000000000000003090000001a50435055300000000000000000000000000000000000000000000000000000000000030a0000001a50435055310000000000000000000000000000000000000000000000000000000000030b0000001a5043505532000000$ + | | | | "misc-acg-offset" = <00800300> + | | | | "cluster-ctl-offset" = <00000000> + | | | | "dvfm-cop-action" = <02000000> + | | | | "voltage-states11" = <010000009402000001000000c102000001000000df02000001000000f80200000100000043030000> + | | | | "misc-cores-offset" = <00400300> + | | | | "snooze-counter" = <01000000> + | | | | "clusters" = <0400000004000000> + | | | | "nominal-performance1" = + | | | | "bridge-settings-version" = <01000000> + | | | | "cpu-power-gate-latency-us" = <50c30000> + | | | | "IODeviceMemory" = (({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e4280000,"length"=0x80000}),({"address"=0x2d0000000,"length"=0x70000}),({"address"=0x2e4200000,"length"=0x7c000}),({"address"=0x2e4004000,"length"=0x1000}),({"address"=0x210e20000,"length"=0x2000}),({"address"=0x210050000,"length"=0xef1000}),({"address"=0x210e40000,"length"=0x9000}),({"address"=0x210e50000,"length"=0xe81000}),({"address"=0x210e70000,"length"=0x1000}),({"address"=0x210050000,"length"=0x10000}),({"address"=0x210150000,"length"=0x10000})$ + | | | | "voltage-states8" = <0053531dffffffff001e7c29ffffffff00e9a435ffffffff007e5f40ffffffff0049884cffffffff00f9f957ffffffff00584661ffffffff004bb667ffffffff00b7926affffffff003e266effffffff00c5b971ffffffff004c4d75ffffffff00ee9779ffffffff00752b7dffffffff00ab997effffffff00fcbe80ffffffff00835284ffffffff00b9c085ffffffff00d47786ffffffff00c7e78cffffffff> + | | | | "interrupt-config" = <0000000144564d465f434f500000000000000000> + | | | | "pmp" = <02000000> + | | | | "voltage-states5-sram" = <002ca33016030000009916411603000000ebd2501b0300000007215f25030000008f4b70340300000017768139030000004e7b905703000000feec9b7f03000000ae5ea7a7030000004319b2bb03000000a265bbde03000000e6fac3f7030000000fd9cb15040000001d00d34704000000f5b8d84704000000b2badd4704000000394ee14704000000f64fe64704000000ce08ec7904000000a6c1f179040000> + | | | | "voltage-states1" = <165801005802000035f500007b02000071ad0000a8020000be7f00000c030000df7000003e0300002864000089030000285d0000ca030000> + | | | | "pmgr-dock-fifo-agent" = <01000000> + | | | | "function-toggle_vdd_cio" = <9f00000034574b7043566d7000000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "llc-thrtl" = <00000000> + | | | | "cpu-fixed-freq-pll-relock" = <01000000> + | | | | "device_type" = <706d677200> + | | | | "panic-debug-switch-pg-wa" = <15000000> + | | | | "sep-ps-timeout" = <05000000> + | | | | "optional-bridge-mask" = <00000000> + | | | | "volman-sw-err-check" = <01000000> + | | | | "boost-performance1" = + | | | | "ps-regs" = <010000000000000001f8ff030100000000400000000000000100000000800000000000000100000000c00000000000000000000000000000ff0300000000000000010000ffffef780000000000020000ffffffff0000000000030000cffbffc10000000000040000bfffff0100000000000c00000100000000000000004000000000000000000000008000001f0000000000000000c0000000000000000000000000010001000000> + | | | | "panic-nub-pg-wa" = <13000000> + | | | | "mtr-polynom-fuse-agx" = <03000000100000004c850000e0ee000020f0ff01fffbff0106000000100000000e850000f6ee00001bf0ff01fefbff010800000010000000af8500008bef000010f0ff01f7fbff0109000000100000005685000055ef000010f0ff01f9fbff010b000000100000001588000008ef00001bf0ff01fdfbff010e000000100000009684000089ef000009f0ff01f6fbff01> + | | | | "tunableh-board-id" = <30000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleT8122PMGR + | | | | { + | | | | "IOClass" = "AppleT8122PMGR" + | | | | "IOPlatformSleepAction" = 0x258 + | | | | "AppleARMPerformanceControllerDVDThresholdUS1" = 0x3e8 + | | | | "AppleARMPerformanceControllerDVDFactor1-slowloop" = 0x10000 + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PMGR" + | | | | "IOMatchedAtBoot" = Yes + | | | | "AppleARMPerformanceControllerDVDFactor1-lpm" = 0x10000 + | | | | "IOReportLegendPublic" = Yes + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent00000082" = <> + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "pmgr1,t8122" + | | | | "IOPlatformHaltRestartAction" = 0x15f90 + | | | | "AppleARMPerformanceControllerDVDFactor1-upo" = 0x10000 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PMGR" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PMGR" + | | | | "IONameMatched" = "pmgr1,t8122" + | | | | "IOPlatformActiveAction" = 0x15f90 + | | | | "IOPlatformQuiesceAction" = 0x15f90 + | | | | "AppleARMPerformanceControllerDVDFactor1-hip" = 0x10000 + | | | | "AppleARMPerformanceControllerDVDFactor1" = 0x10000 + | | | | "IOReportLegend" = ({"IOReportGroupName"="CPU Stats","IOReportChannels"=((0x43505520564f4c54,0x700020002,"ECPU")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPU Complex Voltage States"},{"IOReportGroupName"="CPU Stats","IOReportChannels"=((0x4543505530000000,0x800020002),(0x4543505531000000,0x800020002),(0x4543505532000000,0x800020002),(0x4543505533000000,0x800020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPU Core Performance State$ + | | | | "MtrPolynomGFX" = <03000000100000004c850000e0ee000020f0ff01fffbff0106000000100000000e850000f6ee00001bf0ff01fefbff010800000010000000af8500008bef000010f0ff01f7fbff0109000000100000005685000055ef000010f0ff01f9fbff010b000000100000001588000008ef00001bf0ff01fdfbff010e000000100000009684000089ef000009f0ff01f6fbff01> + | | | | "AppleARMPerformanceControllerDVDPeriodUS1" = 0x1f40 + | | | | "IOPlatformWakeAction" = 0x258 + | | | | } + | | | | + | | | +-o clpc + | | | | | { + | | | | | "clpc-match-version" = 0x3 + | | | | | "compatible" = <636c70632c743831323200> + | | | | | "interrupt-parent" = <69000000> + | | | | | "AAPL,phandle" = <83000000> + | | | | | "soc-devices" = <030000000400000006000000> + | | | | | "interrupts" = <7e02000000000000000000007d020000> + | | | | | "IOInterruptSpecifiers" = (<7e020000>,<00000000>,<00000000>,<7d020000>) + | | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | | "ptd-ranges" = <1f000000410000002100000022000000> + | | | | | "device_type" = <636c706300> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "name" = <636c706300> + | | | | | "events" = <5400000055000000560000005700000058000000590000005a00000060000000> + | | | | | } + | | | | | + | | | | +-o AppleCLPC + | | | | | { + | | | | | "#clpc-analysis-level" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122CLPC" + | | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | | "#cpu-core-mask-cluster-0" = 0xf + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "~pkg-power-split-gpu-fraction" = 0x8000 + | | | | | "~pkg-power-split-ane-fraction" = 0x0 + | | | | | "#cpu-core-mask-cluster-1" = 0xf0 + | | | | | "`pkg-avg-limiter-ki" = 0x757 + | | | | | "~carplay-power-limit" = 0xff0000 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOClass" = "AppleCLPC" + | | | | | "#pkg-lowpeak-limiter-input-tc" = 0x3c + | | | | | "~pkg-avg-max-power" = 0x730000 + | | | | | "#pkg-avg-limiter-input-tc" = 0x3e8 + | | | | | "`pkg-lowpeak-limiter-kp" = 0x2d0e5 + | | | | | "IOUserClientClass" = "AppleCLPCUserClient" + | | | | | "IONameMatched" = "clpc,t8122" + | | | | | "#cpu-avg-limiter-target-tc" = 0x0 + | | | | | "#cpu-num-cores" = 0x8 + | | | | | "#pkg-power-zone-filter-tc-0" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122CLPC" + | | | | | "#pkg-lowpeak-limiter-target-tc" = 0x0 + | | | | | "IOFunctionParent00000083" = <> + | | | | | "~pkg-power-zone-target-0" = 0x730000 + | | | | | "#pkg-avg-batt-power-target-tc" = 0x0 + | | | | | "#clpc-version" = 0x2 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122CLPC" + | | | | | "#cpu-lowpeak-limiter-input-tc" = 0xf + | | | | | "IOReportLegendPublic" = Yes + | | | | | "#pkg-avg-limiter-target-tc" = 0x0 + | | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | | "#pkg-avg-therm-power-target-tc" = 0x0 + | | | | | "#cpu-avg-limiter-input-tc" = 0x28 + | | | | | "`cpu-lowpeak-limiter-ki" = 0x1096c + | | | | | "#pkg-peak-power-target-tc" = 0xa + | | | | | "~pkg-power-zone-target-offset-0" = 0x0 + | | | | | "`pkg-low-power-target" = 0xffffffffff000000 + | | | | | "`cpu-avg-limiter-kp" = 0xb851d + | | | | | "~pkg-lowpeak-max-power" = 0x730000 + | | | | | "IOPropertyMatch" = {"clpc-match-version"=0x3} + | | | | | "IOProviderClass" = "ApplePMGRNub" + | | | | | "IONameMatch" = "clpc,t8122" + | | | | | "#clpc-profile-level" = 0x0 + | | | | | "#cpu-lowpeak-limiter-target-tc" = 0x0 + | | | | | "`cpu-avg-limiter-ki" = 0xded3 + | | | | | "#pkg-low-power-target-tc" = 0x64 + | | | | | "~pkg-power-split-cpu-fraction" = 0x8000 + | | | | | "`pkg-avg-therm-power-target" = 0xffffffffff000000 + | | | | | "`pkg-hip-power-target" = 0xffffffffff000000 + | | | | | "`cpu-lowpeak-limiter-kp" = 0x2c91 + | | | | | "#cpu-num-clusters" = 0x2 + | | | | | "#ane-num-clusters" = 0x1 + | | | | | "`pkg-avg-limiter-kp" = 0xd1b + | | | | | "IOPlatformHaltRestartAction" = 0x1f4 + | | | | | "`pkg-lowpeak-limiter-ki" = 0x96bc + | | | | | } + | | | | | + | | | | +-o AppleCLPCUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | | } + | | | | + | | | +-o soc-tuner + | | | | | { + | | | | | "fb-caching" = <00000000> + | | | | | "device-set-13" = <99010000> + | | | | | "AAPL,phandle" = <84000000> + | | | | | "device-set-12" = <90010000> + | | | | | "cio-config" = <01000000> + | | | | | "device-set-9" = <77000000> + | | | | | "#device-sets" = <0e000000> + | | | | | "function-mcc_ctrl" = <68000000246d654d> + | | | | | "device-set-8" = <9c010000> + | | | | | "device-set-11" = <2c000000> + | | | | | "device-set-7" = <9b010000> + | | | | | "cio-reconfig-wait-enable" = <01000000> + | | | | | "device-set-6" = <9a010000> + | | | | | "device-set-10" = <66010000> + | | | | | "name" = <736f632d74756e657200> + | | | | | "device-set-5" = <82010000> + | | | | | "compatible" = <736f632d74756e65722c743830323000> + | | | | | "device-set-4" = <0e010000> + | | | | | "ane-gpu-mccpwrgt" = <01000000> + | | | | | "device-set-3" = <4800000063000000640000006500000067000000> + | | | | | "fr-scaling-wa" = <01000000> + | | | | | "device-set-2" = <31000000> + | | | | | "mcc-configs" = <01000000020000000300000004000000> + | | | | | "soc-tuning" = <01000000> + | | | | | "device-set-1" = <62010000> + | | | | | "usb-audio-wa" = <01000000> + | | | | | "vdd-cio-pg" = <00000000> + | | | | | "device-set-0" = <290000006d0000002901000066010000> + | | | | | "mcc-power-gating" = <01000000> + | | | | | "device_type" = <736f632d74756e657200> + | | | | | "sbr-clk-gating-wa" = <00000000> + | | | | | } + | | | | | + | | | | +-o AppleT8020SOCTuner + | | | | { + | | | | "IOClass" = "AppleT8020SOCTuner" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8020SOCTuner" + | | | | "IOProviderClass" = "ApplePMGRNub" + | | | | "IOPlatformActiveAction" = 0x157c0 + | | | | "IOPlatformWakeAction" = 0x157c0 + | | | | "IOPlatformQuiesceAction" = 0x157c0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "soc-tuner,t8020" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "soc-tuner,t8020" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8020SOCTuner" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8020SOCTuner" + | | | | } + | | | | + | | | +-o ppm + | | | | { + | | | | "IOInterruptSpecifiers" = (<7f020000>,<00000000>) + | | | | "AAPL,phandle" = <85000000> + | | | | "min-update-interval-overrides" = <0200000000000000> + | | | | "cpms-batt2client" = + | | | | "ptd-ranges" = <2000000040000000> + | | | | "cpms-policy-type" = <03000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "cpms-dt-topology" = <0000000000000000000000000100000064726f6f700000000000000000000000010000000000000000000000e803000070756c73655f706f7765722e73000000> + | | | | "name" = <70706d00> + | | | | "interrupt-parent" = <69000000> + | | | | "ptd-feature-enabled" = <01000000> + | | | | "function-btm-stop" = + | | | | "compatible" = <70706d2c706173737468726f75676800> + | | | | "interrupts" = <7f02000000000000> + | | | | "function-btm-config" = + | | | | "btm-enabled" = <01000000> + | | | | "cpms-dt-curve" = <000000000000000000000000010000002d000000540000007f000000ac000000d4000000ff000000e8f70100c0d40100a58c0100054c0100c804010067ba0000ca760000cf2e00007061636b616765000000000000000000010000000000000000000000010000002d000000540000007f000000ac000000d4000000ff000000e8f70100e59d0000ac880000a6750000ae600000c94a0000e2360000b22100007061636b616765000000000000000000> + | | | | "auto-rate-change" = <01000000> + | | | | "device_type" = <70706d00> + | | | | "function-btm-start" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | } + | | | | + | | | +-o ApplePassthroughPPM + | | | { + | | | "UseWeightFactorModelPp" = 0x0 + | | | "UseSystemLoadInputsPeff" = 0x0 + | | | "UseOverrideClientPowerBudgets" = 0x0 + | | | "OverrideBatteryInputQmax" = 0x0 + | | | "OverrideDroopUtilization" = 0x0 + | | | "OverrideBatteryInputIss" = 0x0 + | | | "UseOverrideUnDroopControlEffort" = 0x0 + | | | "OverrideSnapshotSignificantChange" = 0x1999 + | | | "UseLpemData" = 0x0 + | | | "CPMSSupported" = 0x1 + | | | "IOKitDebug" = 0xffff + | | | "OverrideBatteryInputDSG" = 0x0 + | | | "OverrideEnableFilteredRssI3I4" = 0x0 + | | | "UseOverrideAllowPolicyRun" = 0x0 + | | | "UseVoltageBattMeasPrevPs" = 0x0 + | | | "minVcutDynEntry" = 0x0 + | | | "PowerServoGains" = (0x0,0x0,0x0,0x0) + | | | "weightFactorModelPp" = 0x0 + | | | "IONameMatch" = "ppm,passthrough" + | | | "UseOverrideBatteryInputResScale" = 0x0 + | | | "UseAbnormalPmaxRiseProtectThreshold" = 0x0 + | | | "IOClass" = "ApplePassthroughPPM" + | | | "ppMaxPrevious" = 0x0 + | | | "UseFilterRatioDownPs" = 0x0 + | | | "OverrideBatteryInputDOD" = 0x0 + | | | "UseOverrideBatteryInputV" = 0x0 + | | | "UseEnableVcutDynEntry" = 0x0 + | | | "OverrideBatteryInputPsCutoffVoltage" = 0x0 + | | | "voltageThreshPropDynEntry" = 0x0 + | | | "OverrideBatteryInputRaTable" = (0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0) + | | | "OverrideRtrace" = 0x0 + | | | "decayRatePmuMeasFilter" = 0x0 + | | | "UseMeasuredSystemLoad" = 0x0 + | | | "OverrideUnDroopIntegratorState" = 0x0 + | | | "voltageThreshDerivDynEntry" = 0x0 + | | | "FullOperationModePowerFractionHyst" = 0xccc + | | | "OverrideOperationMode" = 0x0 + | | | "abnormalPmaxRiseProtectThreshold" = 0x0 + | | | "OverrideBrownoutRiskCELane" = 0xffffffffffff0000 + | | | "UseVoltageThreshDerivDynEntry" = 0x0 + | | | "MeasuredSystemLoadWindowSize" = 0x0 + | | | "decayPropDynEntry" = 0x0 + | | | "delayDecayDeriv" = 0x0 + | | | "filterRatioDownPs" = 0x0 + | | | "OverridePercentileRankPs" = 0x0 + | | | "UseOverrideBatteryInputIss" = 0x0 + | | | "UseSystemLoadInputsPt" = 0x0 + | | | "UseDelayDecayDeriv" = 0x0 + | | | "PPMVector" = {"TStamp"=0x18399f32ad82508c,"BaselineSysCap"=(0xc350),"OverrideSysCap"=(0x0),"TotalDemandRaw"=(0xa),"TotalDemandAdj"=(0xa),"Client5"={"Car"=(0x0),"reqBdg"=0x10000,"Pwr"=(0xa),"Idx"=0x0,"Bdg"=0x10000},"ModeledSysCap"=(0xc350),"ProactiveSysCap"=(0xc350),"DroopCtrlEff"=(0x0),"DroopPwrRemoval"=(0x0),"NetSysCap"=(0xc350)} + | | | "OverrideDroopIntegratorState" = 0x0 + | | | "UseFlagPpMaxFusion" = 0x0 + | | | "OverrideBatteryInputFS_ACT" = 0x0 + | | | "UseFreshCellParamsForPmax" = 0x0 + | | | "UseOverrideBatteryInputTimeScales" = 0x0 + | | | "UseSocThreshPropDynEntry" = 0x0 + | | | "UseOverrideBatteryInputFS_ACT" = 0x0 + | | | "UseDecayRatePmuMeasFilterReducedMode" = 0x0 + | | | "UseEnablePMUMeasForVoltageFeedback" = 0x0 + | | | "UseOverrideBatteryInputPuCutoffVoltage" = 0x0 + | | | "UseOverrideBatteryInputWeightedRa" = 0x0 + | | | "psMaxPrevious" = 0x0 + | | | "weightFactorModelPx" = 0x0 + | | | "PPMDebug" = ({"TStamp"=0x18399f32ad82508c,"BaselineSysCap"=(0xc350),"OverrideSysCap"=(0x0),"TotalDemandRaw"=(0xa),"TotalDemandAdj"=(0xa),"Client5"={"Car"=(0x0),"reqBdg"=0x10000,"Pwr"=(0xa),"Idx"=0x0,"Bdg"=0x10000},"ModeledSysCap"=(0xc350),"ProactiveSysCap"=(0xc350),"DroopCtrlEff"=(0x0),"DroopPwrRemoval"=(0x0),"NetSysCap"=(0xc350)}) + | | | "UseOverrideUnDroopIntegratorState" = 0x0 + | | | "systemLoadInputsPk" = 0x0 + | | | "EnableBatteryAgingModel" = 0x0 + | | | "UseOverrideDroopControlEffort" = 0x0 + | | | "filterRatioUpPp" = 0x0 + | | | "UseOverrideDroopUtilization" = 0x0 + | | | "OverrideBrownoutRiskCEThreshold" = 0x0 + | | | "IOProbeScore" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPb" = 0x0 + | | | "UseCurrentRateThreshold" = 0x0 + | | | "EnableBatteryModelToSafeHarborFallback" = 0x10000 + | | | "DroopUtilizationKiUp0" = 0x0 + | | | "UseOverrideBatteryInputDSG" = 0x0 + | | | "UseFlagFilterPs" = 0x0 + | | | "OverrideBatteryInputRss" = 0x0 + | | | "voltageThreshold" = 0x0 + | | | "systemLoadInputsPt" = 0x0 + | | | "IOMatchCategory" = "ApplePPM" + | | | "OverrideBatteryInputMeasuredPp" = 0x0 + | | | "currentRateThreshold" = 0x0 + | | | "kiGainDown" = 0x0 + | | | "UseOverrideBatteryInputPsCutoffVoltage" = 0x0 + | | | "UseBaselineSystemCapability" = 0x0 + | | | "UseOverrideBatteryInputRss" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.ApplePassthroughPPM" + | | | "OverrideBatteryInputIT_MISC_STATUS" = 0x0 + | | | "OverrideClientPowerBudgets" = (0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,$ + | | | "IOFunctionParent00000085" = <> + | | | "UseOverrideBatteryInputIT_MISC_STATUS" = 0x0 + | | | "decayRatePmuMeasFilterReducedMode" = 0x0 + | | | "OverrideBatteryInputResScale" = 0x0 + | | | "enableVcutDynEntry" = 0x0 + | | | "UseDelayDecayProp" = 0x0 + | | | "PmaxOCV" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPp" = 0x0 + | | | "systemLoadInputsPeff" = 0x0 + | | | "UseOverrideSystemCapability" = 0x0 + | | | "ForceBatteryModelFallback" = 0x0 + | | | "voltageBattMeasPrevPs" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPs" = 0x0 + | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePassthroughPPM" + | | | "UseOverrideDeltaVoltageTargetVdroop" = 0x0 + | | | "maxVcutDynEntry" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPu" = 0x0 + | | | "UseOverrideBatteryPowerConsumptionPMU" = 0x0 + | | | "UseDecayRatePmuMeasFilter" = 0x0 + | | | "filterRatioDownPp" = 0x0 + | | | "UseWeightFactorModelPx" = 0x0 + | | | "OverrideBatteryInputWeightedRa" = 0x0 + | | | "UseSocThreshDerivDynEntry" = 0x0 + | | | "gainDerivDynEntry" = 0x0 + | | | "UseFilterRatioUpPp" = 0x0 + | | | "FlagFilterPp" = 0x0 + | | | "UsePsMaxPrevious" = 0x0 + | | | "UseOverrideRtrace" = 0x0 + | | | "UseOverrideBatteryInputRaTable" = 0x0 + | | | "UseWeightFactorModelPs" = 0x0 + | | | "BaselineSystemCapability" = (0xc350) + | | | "kiGainUp" = 0x0 + | | | "IOUserClientClass" = "ApplePPMUserClient" + | | | "UseOverrideDeltaVoltageTargetPmax" = 0x0 + | | | "currentMeasPuVfThreshold" = 0x0 + | | | "IOReportLegendPublic" = Yes + | | | "enablePMUMeasForVoltageFeedback" = 0x0 + | | | "UseKiGainDown" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPuSouth" = 0x0 + | | | "OverrideDroopControlEffort" = 0x0 + | | | "EnablePPMSelfDefinedLogging" = 0x10000 + | | | "UseOverrideDroopIntegratorState" = 0x0 + | | | "FlagFilterPs" = 0x0 + | | | "OverrideBrownoutRiskDebounceTime" = 0x0 + | | | "PmaxExtraFaultPowerThresholds" = (0x0,0x0,0x0) + | | | "OverrideAllowPolicyRun" = 0x0 + | | | "OverrideDeltaVoltageTargetPmax" = 0x0 + | | | "FullOperationModePowerFraction" = 0xe666 + | | | "OverridePowerServoControlEfforts" = (0x0) + | | | "UseOverrideBatteryInputDOD" = 0x0 + | | | "UseOverridePercentileRankPs" = 0x0 + | | | "UsePpMaxPrevious" = 0x0 + | | | "OverrideSystemCapability" = (0x7fffffff,0x7fffffff,0x7fffffff) + | | | "socThreshDerivDynEntry" = 0x0 + | | | "OverrideBatteryInputMeasuredPuSouth" = 0x0 + | | | "UseOverrideVoltageTargetVdroop" = 0x0 + | | | "IOReportLegend" = ({"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x5574696c697a746e,0xc00020002),(0x4374726c45666630,0xc00020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Droop Controller"},{"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x4c616e6573456e67,0x400020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPMS Lanes engagement"},{"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x537973496e737400,0xc00020$ + | | | "voltageBattMeasPrevPp" = 0x0 + | | | "OverrideBatteryInputV" = 0x0 + | | | "IONameMatched" = "ppm,passthrough" + | | | "UseFlagFilterPp" = 0x0 + | | | "OverrideBatteryInputMeasuredPu" = 0x0 + | | | "SystemCapabilityFallbackPowersLow" = (0xdac,0xdac,0xdac) + | | | "UseGainDerivDynEntry" = 0x0 + | | | "socThreshPropDynEntry" = 0x0 + | | | "UseFilterRatioDownPp" = 0x0 + | | | "UseOverrideBatteryInputVgg" = 0x0 + | | | "DroopUtilizationTarget0" = 0x0 + | | | "OverrideVoltageTargetVdroop" = 0x0 + | | | "OverrideBatteryInputTemp" = 0x0 + | | | "DroopPowerRemovalFactor0" = 0x0 + | | | "UseOverridePowerSample1sWindow" = 0x0 + | | | "IOProviderClass" = "ApplePMGRNub" + | | | "UseOverrideEnableFilteredRssI3I4" = 0x0 + | | | "OverrideBatteryInputMeasuredPs" = 0x0 + | | | "OverrideBatteryInputVgg" = 0x0 + | | | "UseKiGainUp" = 0x0 + | | | "PowerServoIntegratorMinimums" = (0x0) + | | | "DroopUtilizationKiDown0" = 0x0 + | | | "weightFactorModelPs" = 0x0 + | | | "OverrideDisableBrownoutRiskShutdownTrigger" = 0x0 + | | | "UseDecayPropDynEntry" = 0x0 + | | | "FlagPsMaxFusion" = 0x0 + | | | "delayDecayProp" = 0x0 + | | | "OverrideBatteryPowerConsumptionPMU" = (0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0) + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "UseCurrentMeasPuVfThreshold" = 0x0 + | | | "UseVoltageBattMeasPrevPp" = 0x0 + | | | "UseOverrideBatteryInputQmax" = 0x0 + | | | "FlagPpMaxFusion" = 0x0 + | | | "UseSystemLoadInputsPk" = 0x0 + | | | "UseOverridePercentileRankPp" = 0x0 + | | | "UseDecayDerivDynEntry" = 0x0 + | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePassthroughPPM" + | | | "OverridePowerSample1sWindow" = 0x0 + | | | "ClientDemandScaleFactor" = (0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64) + | | | "UseFlagPsMaxFusion" = 0x0 + | | | "UseMinVcutDynEntry" = 0x0 + | | | "OverrideBatteryInputTimeScales" = (0x0,0x0,0x0) + | | | "UseFilterRatioUpPs" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "SystemCapabilityFilterConstants" = (0x0,0x0,0x0,0x0,0x0,0x0) + | | | "OverrideUnDroopControlEffort" = 0x0 + | | | "CEFusionGains" = (0x0,0x0) + | | | "decayDerivDynEntry" = 0x0 + | | | "UseASBFastBatteryInput" = 0x0 + | | | "UseOverrideOperationMode" = 0x0 + | | | "UseMaxVcutDynEntry" = 0x0 + | | | "UseOverrideBatteryInputTemp" = 0x0 + | | | "UseVoltageThreshold" = 0x0 + | | | "OverrideBatteryInputPuCutoffVoltage" = 0x0 + | | | "OverrideBatteryInputMeasuredPb" = 0x0 + | | | "OverrideDeltaVoltageTargetVdroop" = 0x0 + | | | "OverridePercentileRankPp" = 0x0 + | | | "OverrideBrownoutRiskPmargin" = 0x0 + | | | "MinPeriodMSIntervalsKey" = (0x0,0x0,0x0) + | | | "UseOverridePowerServoControlEfforts" = 0x0 + | | | "UseVoltageThreshPropDynEntry" = 0x0 + | | | "filterRatioUpPs" = 0x0 + | | | } + | | | + | | +-o nco@C0044000 + | | | | { + | | | | "name" = <6e636f00> + | | | | "compatible" = <6e636f2c7438313031006e636f2c73356c383936307800> + | | | | "pmgr-nco-page-size" = <00400000> + | | | | "IODeviceMemory" = (({"address"=0x2d0044000,"length"=0x14000})) + | | | | "clock-ids" = <82010000830100008001000081010000> + | | | | "device_type" = <6e636f00> + | | | | "reg" = <004004c0000000000040010000000000> + | | | | "AAPL,phandle" = <86000000> + | | | | } + | | | | + | | | +-o AppleS5L8960XNCO + | | | { + | | | "IOClass" = "AppleS5L8960XNCO" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8960XNCO" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOFunctionParent00000086" = <> + | | | "IOPlatformActiveAction" = 0x14c08 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "nco,s5l8960x" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "nco,s5l8960x" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8960XNCO" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8960XNCO" + | | | } + | | | + | | +-o event-log-handler@C0700000 + | | | | { + | | | | "event-logs" = <0000000000000000b4800300000000000000000000600700010000000100000040c20300020000000200000004c006000300000003000000008007000400000004000000f03f00000500000005000000f03f00000600000006000000f03f00000700000007000000f03f00000800000008000000f00f00000900000009000000002a00000a0000000a000000f00f00000b0000000b0000000c4000000c0000000c0000000c400000> + | | | | "compatible" = <6576656e742d6c6f672d68616e646c65722c743831303100> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <87000000> + | | | | "interrupts" = + | | | | "reg" = <000070c00000000000c00c0000000000000028d4000000000000080000000000000000c0000000000000070000000000000020d40000000000c0070000000000000029c0000000000040000000000000004029c0000000000040000000000000008029c000000000004000000000000000c028c0000000000040000000000000000028c00000000000800000000000000080860101000000004000000000000000808301010000000080000000000000000034c00000000000c0000000000000000035c00000000000c0000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,<1d000000>,<20000000>,<23000000>,<27000000>,<28000000>,<07020000>,,,) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6576656e742d6c6f672d68616e646c657200> + | | | | "IODeviceMemory" = (({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e4280000,"length"=0x80000}),({"address"=0x2d0000000,"length"=0x70000}),({"address"=0x2e4200000,"length"=0x7c000}),({"address"=0x2d0290000,"length"=0x4000}),({"address"=0x2d0294000,"length"=0x4000}),({"address"=0x2d0298000,"length"=0x4000}),({"address"=0x2d028c000,"length"=0x4000}),({"address"=0x2d0280000,"length"=0x8000}),({"address"=0x311868000,"length"=0x4000}),({"address"=0x311838000,"length"=0x8000}),({"address"=0x2d0340000,"length"=0xc000}),({"ad$ + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "panic-on-event-log-intr" = <01000000> + | | | | "name" = <6576656e742d6c6f672d68616e646c657200> + | | | | } + | | | | + | | | +-o AppleEventLogHandler + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleEventLogHandler" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleEventLogHandler" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEventLogHandler" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEventLogHandler" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "event-log-handler,t8101" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "event-log-handler,t8101" + | | | } + | | | + | | +-o pmp@C0C00000 + | | | | { + | | | | "segment-ranges" = <000050d0020000000000000100000000000050d0020000000060030003000000006053d0020000000060030100000000006053d0020000000070040006000000> + | | | | "IOInterruptSpecifiers" = (<6e020000>,<6d020000>,<70020000>,<6f020000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <7a0000007b000000> + | | | | "AAPL,phandle" = <88000000> + | | | | "IODeviceMemory" = (({"address"=0x2d0c00000,"length"=0x6c000}),({"address"=0x2d0850000,"length"=0x4000}),({"address"=0x2d0500000,"length"=0x80000}),({"address"=0x2d03d0000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <8b000000> + | | | | "pio-vm-base" = <000000c000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <706d7000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <6e0200006d020000700200006f020000> + | | | | "clock-ids" = <> + | | | | "ptd-update-reg-index" = <03000000> + | | | | "role" = <504d5000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <706d7000> + | | | | "power-gates" = <7a0000007b000000> + | | | | "reg" = <0000c0c00000000000c0060000000000000085c0000000000040000000000000000050c000000000000008000000000000003dc0000000000040000000000000> + | | | | "pio-vm-size" = <0000004000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "PMP" + | | | | } + | | | | + | | | +-o iop-pmp-nub + | | | | { + | | | | "agx-fast-af-rd-bw-dvfs-filter" = + | | | | "dcs-bwr-threshold" = <33b30b00008018009919220033b32b0033333300> + | | | | "mc_quota_req_ptd_count" = <08000000> + | | | | "ane-slow-af-bw-dvfs-filter" = <3f000000> + | | | | "mc_cmd_ptd_count" = <02000000> + | | | | "KDebugCoreID" = 0x9 + | | | | "sochot-sensors" = <010000000200000003000000040000000500000006000000090000000a0000000b000000> + | | | | "pre-loaded" = <01000000> + | | | | "ptd-range" = <010000000000000001000000000000004e554c4c00000000000000000000000002000000010000000100000000000000504d502d53544154555300000000000003000000080000000400000000000000445646532d5354415445000000000000040000000c0000000400000000000000504d50544f4f4c00000000000000000005000000100000001000000000000000504d532d504d47522d504b540000000006000000200000001000000000000000504d532d4450452d504b54000000000007000000300000001000000000000000504d532d444556432d504b54000000000900000040000000c000000000000000534f432d4445562d504b5400000000000a$ + | | | | "sram-index" = <01000000> + | | | | "no-shutdown" = <01000000> + | | | | "uuid" = <43463838434341312d454546322d333133372d383744372d39433442374530383136304600> + | | | | "dvfs-domain" = <01000000050000000000000044435300000000000000000000000000020000000300000000000000534f4300000000000000000000000000030000000300000000000000444953505f494e540000000000000000040000000400000000000000444953505f4558540000000000000000> + | | | | "fast-die-ctrl-ce-map" = <010000000000000000000000010000000000000000000000000000004541434300000000000000000000000002000000000000000100000002000000030000000000000000000000504143435f414e450000000000000000> + | | | | "ane-fast-af-bw-threshold" = <0000050000000000000000000000000000000e00000000000000040006000000000000000000000000000d0006000000> + | | | | "user-power-managed" = <01000000> + | | | | "dcs-rd-bwr-threshold" = <33b30b00008018009919220033b32b0033333300> + | | | | "lts-voltage" = <01000000030000000300000001000000454143430000000002000000030000000400000002000000504143430000000003000000010000000600000000000000414e450000000000040000000300000005000000040000004147580000000000> + | | | | "bwr-catch-up-factor" = <00000100> + | | | | "controller" = <010000001f0000004300000000000000000000004449452d54454d5000000000000000000000000000000000000000000000000002000000000000000000000000000000000000004443532d4257000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000004147582d534c4f572d41462d52442d425700000000000000000000000000000004000000000000000000000000000000000000004147582d464153542d41462d52442d425700000000000000000000000000000005000000000000000000000000000000000000004147582d534c4f572d41462d57522d425700000000000000000000000$ + | | | | "ioa0-afnc-bw-threshold" = <66a61900000000000000000000000000333322000000000066a618000300000000000000000000003333210003000000> + | | | | "agx-fast-af-wr-bw-dvfs-filter" = + | | | | "agx-slow-af-rd-bw-dvfs-filter" = <0e000000> + | | | | "soc-device-ps-group" = + | | | | "mc_quota_rsp_ptd_count" = <08000000> + | | | | "lts-ctrl-ts" = <00000500> + | | | | "temp-sensor" = <01000000060000000600000000000000000000000000000000000000000000006e0000007d00000054613030306d0000000000000000000002000000060000000300000000000000000000000000000000000000000000006e0000007d00000054653030306d0000000000000000000003000000060000000300000001000000000000000000000000000000000000006e0000007d00000054653030316d0000000000000000000004000000060000000400000000000000000000000000000000000000000000006e0000007d00000054703030306d000000000000000000000500000006000000040000000100000000000000000000000000000000000000$ + | | | | "ane-slow-dcs-bw-threshold" = <8fc212000000000000000000000000005c8f2500000000008fc211000300000099993600000000005c8f240003000000c2f545000000000099993500030000000000000000000000c2f5440003000000> + | | | | "name" = <696f702d706d702d6e756200> + | | | | "ioa1-afnc-bw-threshold" = <66a61900000000000000000000000000333322000000000066a618000300000000000000000000003333210003000000> + | | | | "dcs-bw-threshold" = <8fc212000000000000000000000000005c8f2500000000008fc211000300000099993600000000005c8f240003000000c2f545000000000099993500030000000000000000000000c2f5440003000000> + | | | | "mc_cmd_ack_ptd_count" = <01000000> + | | | | "AAPL,phandle" = <89000000> + | | | | "agx-fast-dcs-bw-dvfs-filter" = + | | | | "agx-slow-dcs-bw-dvfs-filter" = <0e000000> + | | | | "ane-fast-dcs-bw-threshold" = <0000050000000000000000000000000000000e0000000000000004000600000000002a000000000000000d00060000000000460000000000000029000600000000000000000000000000450006000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "ane-fast-af-bw-dvfs-filter" = + | | | | "fast-die-ctrl-loop" = <0100000000000000000000001e0500009919040000006e000000010000000000000001000000000000000000000001001600000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454143430000000000000000000000000200000000000000010000001e0500009919040000006e000000010000000000000001000000000000000000000001001600000004000000050000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000504143430$ + | | | | "soc0-wr-bwr-threshold" = <3333160099991d0066662c00> + | | | | "firmware-name" = <7438313232706d7000> + | | | | "agx-slow-dcs-bw-threshold" = <000012000000000000000000000000000000240000000000000011000600000000003000000000000000230006000000000044000000000000002f000600000000000000000000000000430006000000> + | | | | "soc0-rd-bwr-threshold" = <3333160099991d0066662c00> + | | | | "lts-clpc-voltage" = <01000000ee0300000000690000006a00000000005041434300000000> + | | | | "soc1-rd-bwr-threshold" = <3333160099991d0066662c00> + | | | | "energy-counter" = <0100000001000000050000000100000041475800000000000000000000000000020000000100000005000000020000004147582d5352414d000000000000000003000000010000000600000001000000414e4500000000000000000000000000040000000000000014000000000000005644454300000000000000000000000005000000000000001500000000000000534f435f414f4e00000000000000000006000000000000001600000000000000534f435f524553540000000000000000> + | | | | "agx-fast-dcs-bw-threshold" = <0000010000000000000000000000000000000e0000000000000000000600000000001c000000000000000d0006000000000020000000000000001b0006000000000000000000000000001f0006000000> + | | | | "agx-fast-af-wr-bw-threshold" = <0000050000000000000000000000000000002c00000000000000040006000000000000000000000000002b0006000000> + | | | | "lts-config" = <000000000000000042bc10000000000087d30f006e000000690000000000110033b300000e0d1e03010000003b01000042bc10000000000087d30f006e000000690000000000110033b300002dd24b00020000000d020000ca63000000000000f4dd0f006e000000690000000000110033b3000070fd2203> + | | | | "agx-slow-af-wr-bw-threshold" = <00000e0000000000000000000000000000004c000000000000000d0006000000000000000000000000004b0006000000> + | | | | "soc1-wr-bwr-threshold" = <3333160099991d0066662c00> + | | | | "segment-ranges" = <000050d0020000000000000100000000000050d0020000000060030003000000006053d0020000000060030100000000006053d0020000000070040006000000> + | | | | "mcache-stream" = <1e00000003000000010000000b0000000e0000000e0000000200000000000000000000000400000001000000050000000100000001000000020000001400000014000000020000000000000000000000040000000100000006000000020000000100000003000000120000001200000002000000000000000000000004000000000000000b000000050000000100000005000000210000002100000002000000000000000000000004000000010000000e000000040000000100000010000000150000001500000002000000000000000000000004000000000000001100000004000000010000001100000016000000160000000200000000000000000000$ + | | | | "dcs-wr-bwr-threshold" = <0000070033b30e006666140033331a0033b31e00> + | | | | "agx-slow-af-wr-bw-dvfs-filter" = <0e000000> + | | | | "ptd-driver-version" = <01000000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "agx-fast-af-rd-bw-threshold" = <0000050000000000000000000000000000002c00000000000000040006000000000000000000000000002b0006000000> + | | | | "agx-slow-af-rd-bw-threshold" = <00000e0000000000000000000000000000004c000000000000000d0006000000000000000000000000004b0006000000> + | | | | "region-size" = <0000080000000000> + | | | | "coredump-enable" = <40000000> + | | | | "ane-fast-dcs-bw-dvfs-filter" = + | | | | "ane-slow-af-bw-threshold" = <47a11900000000000000000000000000142e22000000000047a11800030000000000000000000000142e210003000000> + | | | | "ane-slow-dcs-bw-dvfs-filter" = <3f000000> + | | | | "fast-die-ctrl-ts-avg-temp" = <00006400> + | | | | "lts-ctrl-loop" = <010000000000000000000000000000000000000001000000010000000000000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454143430000000000000000000000000200000000000000010000000100000001000000020000000200000001000000040000000500000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005041434300000000000000000000000003000000000000000200000002000000000000000000000004000000000000$ + | | | | "soc-device" = <01000000454e4f4e010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444353000000000002000000454e4f4e010000001000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414d43430000000013000000454e4f4e0$ + | | | | "region-base" = <000050d002000000> + | | | | "pm-ptd-ranges" = <010000000200000003000000040000000500000006000000070000000000000000000000090000000a0000000b0000000c0000000d00000000000000> + | | | | "fast-die-ctrl-ts" = <00000500> + | | | | } + | | | | + | | | +-o RTBuddy(PMP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <89000000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8002,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "FirmwareUUID" = "cf88cca1-eef2-3137-87d7-9c4b7e08160f" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "not set" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "PMP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="PMP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "PMP" + | | | | } + | | | | + | | | +-o ApplePMPFirmware + | | | | { + | | | | "IOPropertyMatch" = {"role"="PMP"} + | | | | "CFBundleIdentifier" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOMatchCategory" = "RTBuddyFirmwareService" + | | | | "IOClass" = "ApplePMPFirmware" + | | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Role" = "PMP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="PMP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="PMP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="PMP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o PMPEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o ApplePMPv2 + | | | { + | | | "ane-fast-dcs-bw-thr-dcs-f2-dn-lev" = + | | | "agx-p6-min-dcs-state" = <03000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmin-up-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "lts-ctrl-die-count" = <01000000> + | | | "dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "fast-die-ctrl-ts-ms" = <00000500> + | | | "agx-fast-dcs-bw-dvfs-filter" = + | | | "die-temp-ctrl-acc-cpmu-enable" = <01000000> + | | | "dcs-bw-thr-dcs-f3-dn-deb" = <03000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-dn-deb" = <03000000> + | | | "agx-slow-af-rd-bw-dvfs-filter" = <0e000000> + | | | "ioa1-afnc-bw-thr-soc-vmax-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "agx-p4-min-dcs-state" = <01000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "fast-die-loop-eacc-engage-delta" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-dn-lev" = + | | | "cpmu-acc-0-gradient-0" = <00c00800> + | | | "pmptool-config" = <444353000000000000000000000000004631000000000000670200004632000000000000ad0200004633000000000000f302000046340000000000004303000046350000000000007a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000534f4300000000000000000000000000564d494e0000000094020000564e4f4d00000000d5020000564d415$ + | | | "soc0-wr-bwr-thr-soc-vmax" = <5c662c00> + | | | "lts-ctrl-ecore-dtt_min" = <69000000> + | | | "agx-slow-dcs-bw-thr-dcs-f1-up-lev" = + | | | "agx-slow-af-wr-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-fast-af-wr-bw-dvfs-filter" = + | | | "ioa0-afnc-bw-thr-soc-vnom-up-lev" = <05332200> + | | | "ioa0-afnc-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "agx-p7-min-soc-state" = <01000000> + | | | "agx-fast-dcs-bw-thr-dcs-f3-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f4-up-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "IOPlatformSleepAction" = 0x262 + | | | "soc1-wr-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-slow-dcs-bw-dvfs-filter" = <3f000000> + | | | "agx-p2-min-dcs-state" = <01000000> + | | | "agx-fast-af-wr-bw-thr-soc-vmin-up-lev" = + | | | "agx-slow-af-rd-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "lts-ctrl-0-1-is" = <7b960b81690e4541> + | | | "fast-die-loop-eacc-kp" = <1e050000> + | | | "pmptool-fast-die-lp-config" = <01000000454143430000000000000000000000000200000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000504143430000000000000000000000000400000005000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000414e45000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "fast-die-loop-pacc-max-valid-temp-lag" = <00001600> + | | | "temp-sensor-te001m-offset" = <00000000> + | | | "registry-dictionary" = {"ane-fast-dcs-bw-thr-dcs-f2-dn-lev"={"format"="16p16","unit"="GB/s"},"agx-p6-min-dcs-state"={"format"="uint","unit"=""},"agx-slow-af-rd-bw-thr-soc-vmin-up-lev"={"format"="16p16","unit"="GB/s"},"agx-slow-dcs-bw-thr-dcs-f2-up-deb"={"format"="uint","unit"=""},"agx-fast-dcs-bw-thr-dcs-f4-up-deb"={"format"="uint","unit"=""},"dcs-bw-thr-dcs-f2-up-deb"={"format"="uint","unit"=""},"ane-fast-dcs-bw-thr-dcs-f1-up-deb"={"format"="uint","unit"=""},"agx-slow-dcs-bw-thr-dcs-f5-dn-deb"={"format"="uint","unit$ + | | | "cpmu-acc-0-gradient-2" = <00c00500> + | | | "fast-die-loop-eacc-invalid-temp-offset" = <00000100> + | | | "agx-slow-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "dcs-bw-thr-dcs-f4-dn-deb" = <03000000> + | | | "agx-p5-min-soc-state" = <01000000> + | | | "fast-die-loop-eacc-hs-target" = <00006e00> + | | | "ane-fast-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-p0-min-dcs-state" = <00000000> + | | | "IOPlatformWakeAction" = 0x262 + | | | "agx-fast-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "ioa0-afnc-bw-thr-soc-vnom-dn-lev" = <61a61800> + | | | "lts-ctrl-ovrd-reset" = <00000000> + | | | "dcs-bwr-thr-dcs-f5" = <2a333300> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePMP" + | | | "ane-slow-dcs-bw-thr-dcs-f3-dn-deb" = <03000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-up-lev" = <05332200> + | | | "ioa1-afnc-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "lts-ctrl-enbl-thrtl" = <01000000> + | | | "ane-fast-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "soc0-rd-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePMP" + | | | "agx-p3-min-soc-state" = <00000000> + | | | "soc1-rd-bwr-thr-soc-vnom" = <65991d00> + | | | "ioa0-afnc-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-up-lev" = + | | | "dcs-bw-thr-dcs-f1-up-lev" = <4fc21200> + | | | "agx-fast-af-wr-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-up-lev" = + | | | "dcs-bw-thr-dcs-f2-dn-lev" = <7dc21100> + | | | "ane-fast-dcs-bw-thr-dcs-f1-up-lev" = + | | | "agx-slow-af-wr-bw-dvfs-filter" = <0e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "ane-slow-af-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-dn-lev" = <7dc21100> + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "agx-fast-af-rd-bw-thr-soc-vmax-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "ane-fast-af-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-p1-min-soc-state" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "CFBundleIdentifier" = "com.apple.driver.ApplePMP" + | | | "dcs-bwr-thr-dcs-f3" = <85192200> + | | | "ioa1-afnc-bw-thr-soc-vnom-dn-lev" = <61a61800> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-dn-lev" = + | | | "lts-ctrl-loop-count" = <03000000> + | | | "temp-sensor-th002i-offset" = <00000000> + | | | "IONameMatch" = ("PMPEndpoint1","PMP0Endpoint1","PMP1Endpoint1") + | | | "temp-sensor-tp002m-offset" = <00000000> + | | | "dcs-wr-bwr-thr-dcs-f2" = <32b30e00> + | | | "dcs-rd-bwr-thr-dcs-f1" = + | | | "agx-slow-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "IONameMatched" = "PMPEndpoint1" + | | | "soc0-rd-bwr-thr-soc-vmin" = <0c331600> + | | | "ioa0-afnc-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "ane-fast-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmin-up-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "lts-ctrl-0-0-is" = <246ad01bcfef4441> + | | | "fast-die-loop-ane-engage-delta" = <00000000> + | | | "fast-die-loop-eacc-ki" = <99190400> + | | | "ane-slow-dcs-bw-thr-dcs-f4-dn-deb" = <03000000> + | | | "ane-fast-dcs-bw-dvfs-filter" = + | | | "lts-ctrl-0-0-is-inuse" = <22cdb5297e0b4e41> + | | | "temp-sensor-ta002i-offset" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vmin-up-lev" = <19a11900> + | | | "soc1-rd-bwr-thr-soc-vmin" = <0c331600> + | | | "ane-slow-af-bw-thr-soc-vmax-dn-lev" = + | | | "agx-p7-min-dcs-state" = <04000000> + | | | "lts-ctrl-pcore-dtt_min" = <69000000> + | | | "dcs-bw-thr-dcs-f2-up-lev" = <5b8f2500> + | | | "temp-sensor-te000m-offset" = <00000000> + | | | "dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vmin-up-lev" = + | | | "dcs-rd-bwr-thr-dcs-f3" = <85192200> + | | | "ane-fast-af-bw-thr-soc-vmax-dn-lev" = + | | | "dcs-bw-thr-dcs-f3-dn-lev" = <458f2400> + | | | "dcs-wr-bwr-thr-dcs-f4" = <20331a00> + | | | "dcs-bw-thr-dcs-f5-dn-deb" = <03000000> + | | | "agx-slow-dcs-bw-thr-dcs-f3-up-lev" = + | | | "dcs-bwr-thr-dcs-f1" = + | | | "ane-fast-af-bw-dvfs-filter" = + | | | "lts-ctrl-gpu-dtt_min" = <69000000> + | | | "fast-die-loop-eacc-max-valid-temp-lag" = <00001600> + | | | "lts-ctrl-0-1-is-inuse" = <238c139a5b334e41> + | | | "ane-slow-af-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "temp-sensor-mtr_top_agx-offset" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f2-up-lev" = + | | | "lts-ctrl-ecore-dtt_max" = <6e000000> + | | | "temp-sensor-th001i-offset" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f2-dn-lev" = <00000000> + | | | "fast-die-loop-ane-ki" = <99190400> + | | | "agx-p5-min-dcs-state" = <02000000> + | | | "fast-die-loop-pacc-invalid-temp-offset" = <00000100> + | | | "cpmu-acc-0-round-1" = <00800000> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "temp-sensor-tp000m-alarm1-temp" = <00007d00> + | | | "ane-slow-dcs-bw-thr-dcs-f3-dn-lev" = <458f2400> + | | | "ane-fast-af-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "temp-sensor-version" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "temp-sensor-ta001i-alarm1-temp" = <00007d00> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "dcs-rd-bwr-thr-dcs-f5" = <2a333300> + | | | "lts-ctrl-ts-ms" = <0000a040> + | | | "agx-slow-af-wr-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "lts-ctrl-ppi-min" = <3c000000> + | | | "temp-sensor-ta001i-offset" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "soc0-rd-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-fast-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-p3-min-dcs-state" = <01000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "IOMatchedAtBoot" = Yes + | | | "ane-slow-dcs-bw-thr-dcs-f5-dn-deb" = <03000000> + | | | "dcs-bw-thr-dcs-f4-dn-lev" = <58993500> + | | | "fast-die-loop-pacc-engage-delta" = <00000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmax-dn-lev" = + | | | "fast-die-loop-pacc-hs-target" = <00006e00> + | | | "ane-slow-af-bw-thr-soc-vnom-dn-lev" = <03a11800> + | | | "soc1-rd-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-fast-af-bw-thr-soc-vnom-dn-lev" = + | | | "temp-sensor-te000m-alarm1-temp" = <00007d00> + | | | "temp-sensor-tp001m-offset" = <00000000> + | | | "fast-die-loop-ane-hs-target" = <00006e00> + | | | "temp-sensor-th000i-alarm1-temp" = <00007d00> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-up-lev" = + | | | "ane-slow-af-bw-thr-soc-vnom-up-lev" = + | | | "agx-fast-af-wr-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "lts-ctrl-gpu-dtt_max" = <6e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f4-up-lev" = + | | | "agx-p1-min-dcs-state" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f1-up-lev" = <4fc21200> + | | | "IOClass" = "ApplePMPv2" + | | | "fast-die-loop-pacc-kp" = <1e050000> + | | | "ane-fast-af-bw-thr-soc-vnom-up-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f3-up-lev" = + | | | "cpmu-acc-0-gradient-1" = <00c00300> + | | | "agx-fast-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "agx-p8-min-soc-state" = <02000000> + | | | "lts-ctrl-0-2-is-inuse" = <88dfe450bb1c4641> + | | | "fast-die-ctrl-loop-version" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f4-dn-lev" = <58993500> + | | | "dcs-bw-thr-dcs-f3-up-lev" = <6f993600> + | | | "cpmu-acc-0-alpha-down" = <33330000> + | | | "ioa0-afnc-bw-thr-soc-vmin-up-lev" = <33a61900> + | | | "agx-fast-af-wr-bw-thr-soc-vmax-dn-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "IOUserClientClass" = "ApplePMPv2UserClient" + | | | "die-temp-ctrl-avg-temp-enable" = <01000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-dn-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "temp-sensor-tp001m-alarm1-temp" = <00007d00> + | | | "temp-sensor-th001i-alarm1-temp" = <00007d00> + | | | "agx-p6-min-soc-state" = <01000000> + | | | "ane-slow-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "cpmu-acc-0-gradient-3" = <00800700> + | | | "agx-fast-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "temp-sensor-th000i-offset" = <00000000> + | | | "temp-sensor-tp000m-offset" = <00000000> + | | | "temp-sensor-ta002i-alarm1-temp" = <00007d00> + | | | "lts-ctrl-0-0-is-ovrd" = <10e28549> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-up-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "IOProbeScore" = 0x2 + | | | "agx-slow-af-rd-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "fast-die-loop-ane-max-valid-temp-lag" = <00001600> + | | | "ane-slow-af-bw-dvfs-filter" = <3f000000> + | | | "lts-ctrl-pcore-dtt_max" = <6e000000> + | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | "agx-fast-af-rd-bw-thr-soc-vmin-up-lev" = + | | | "dcs-bwr-thr-dcs-f4" = <0cb32b00> + | | | "agx-p4-min-soc-state" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f1-up-lev" = + | | | "ioa1-afnc-bw-thr-soc-vmin-up-lev" = <33a61900> + | | | "dcs-bw-thr-dcs-f4-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f2-up-lev" = <5b8f2500> + | | | "soc0-wr-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-slow-dcs-bw-dvfs-filter" = <0e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-up-lev" = + | | | "dcs-bw-thr-dcs-f5-dn-lev" = + | | | "temp-sensor-te001m-alarm1-temp" = <00007d00> + | | | "agx-fast-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "dcs-wr-bwr-thr-dcs-f1" = + | | | "temp-sensor-tp002m-alarm1-temp" = <00007d00> + | | | "ane-slow-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "soc1-wr-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-fast-af-wr-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "dvfs_constraint_disable" = <00000000> + | | | "ioa0-afnc-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "die-temp-ctrl-alarm0-enable" = <01000000> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "agx-slow-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-p2-min-soc-state" = <00000000> + | | | "cpmu-acc-0-alpha-up" = <1e050000> + | | | "fast-die-loop-pacc-ki" = <99190400> + | | | "lts-ctrl-0-1-is-ovrd" = <10e28549> + | | | "agx-fast-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "mc_ctrl_tracing" = <00000000> + | | | "agx-fast-af-rd-bw-dvfs-filter" = + | | | "fast-die-loop-ane-kp" = <1e050000> + | | | "ane-slow-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "dcs-wr-bwr-thr-dcs-f3" = <24661400> + | | | "dcs-rd-bwr-thr-dcs-f2" = + | | | "dcs-bwr-thr-dcs-f2" = + | | | "temp-sensor-ta000m-alarm1-temp" = <00007d00> + | | | "ane-fast-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-p0-min-soc-state" = <00000000> + | | | "cpmu-acc-0-round-2" = <00c00000> + | | | "dcs-bw-thr-dcs-f2-dn-deb" = <03000000> + | | | "fast-die-loop-ane-invalid-temp-offset" = <00000100> + | | | "agx-p8-min-dcs-state" = <04000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmax-dn-lev" = + | | | "pmptool-temp-sensor-config" = <0100000074613030306d000000000000000000000200000074653030306d000000000000000000000300000074653030316d000000000000000000000400000074703030306d000000000000000000000500000074703030316d000000000000000000000600000074703030326d000000000000000000000700000074613030316900000000000000000000080000007461303032690000000000000000000009000000746830303069000000000000000000000a000000746830303169000000000000000000000b000000746830303269000000000000000000000c0000006d74725f746f705f6167780000000000> + | | | "temp-sensor-th002i-alarm1-temp" = <00007d00> + | | | "soc0-wr-bwr-thr-soc-vmin" = <0c331600> + | | | "temp-sensor-ta000m-offset" = <00000000> + | | | "lts-ctrl-0-2-is" = <4d3f9272d5e93941> + | | | "ioa0-afnc-bw-thr-soc-vmax-dn-lev" = + | | | "ioa1-afnc-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f2-up-lev" = + | | | "die-temp-ctrl-alarm1-enable" = <01000000> + | | | "temp-sensor-mtr_top_agx-alarm1-temp" = <00006d00> + | | | "ane-slow-dcs-bw-thr-dcs-f3-up-lev" = <6f993600> + | | | "dcs-wr-bwr-thr-dcs-f5" = + | | | "dcs-rd-bwr-thr-dcs-f4" = <0cb32b00> + | | | "agx-slow-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "soc1-wr-bwr-thr-soc-vmin" = <0c331600> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-up-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "lts-ctrl-0-2-is-ovrd" = <0094c746> + | | | } + | | | + | | +-o dart-pmp@C0300000 + | | | | { + | | | | "dart-id" = <06000000> + | | | | "bypass-13" = <> + | | | | "IOInterruptSpecifiers" = (<71020000>) + | | | | "AAPL,phandle" = <8a000000> + | | | | "IODeviceMemory" = (({"address"=0x2d0300000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "apf-bypass-13" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d706d7000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000d000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <71020000> + | | | | "l2-tt-0" = <0040f4ff030100000200000000000000> + | | | | "dapf-instance-0" = <00c0012002000000ffff0220020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0052002000000ffff0620020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0012202000000ffff0222020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0052202000000ffff062202000000010000000000000000000000000000000000000000000000000000000000000000030100000000000000152002000000ffbf1d200200000001000000000000000000000000000000$ + | | | | "pt-region-0" = <0040f4ff030100000080f4ff03010000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <000030c0000000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000008A" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <8a000000> + | | | | } + | | | | + | | | +-o mapper-pmp@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d706d7000> + | | | | "AAPL,phandle" = <8b000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <8b000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sep@8E400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<3f010000>,<3e010000>,<41010000>,<40010000>) + | | | | "aot-power" = <01000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = <8c000000> + | | | | "sepfw-booted" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x29e400000,"length"=0x6c000}),({"address"=0x29e050000,"length"=0x60000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "self-power-gate" = <> + | | | | "iommu-parent" = <92000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "sika-support" = <01000000> + | | | | "name" = <73657000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702d7365702c617363777261702d763600> + | | | | "interrupts" = <3f0100003e0100004101000040010000> + | | | | "clock-ids" = <91010000> + | | | | "role" = <53455000> + | | | | "sepfw-loaded" = <01000000> + | | | | "aarch64" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <73657000> + | | | | "cpu-ctrl-filtered" = <> + | | | | "reg" = <0000408e0000000000c00600000000000000058e000000000000060000000000> + | | | | "power-gates" = <> + | | | | } + | | | | + | | | +-o AppleASCWrapV6SEP + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6SEP" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop-sep,ascwrap-v6","iop-sep,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop-sep,ascwrap-v6" + | | | | "role" = "SEP" + | | | | } + | | | | + | | | +-o iop-sep-nub + | | | | { + | | | | "AAPL,phandle" = <8d000000> + | | | | "compatible" = <696f702d6e75622c73657000> + | | | | "tz0-size-set" = <01000000> + | | | | "tz0-size" = <0080ee01> + | | | | "function-wait_for_power_gate" = <8200000074696157900000000000000000000000> + | | | | "rom-panic-bytes" = <88010000> + | | | | "name" = <696f702d7365702d6e756200> + | | | | } + | | | | + | | | +-o AppleSEPManager + | | | | { + | | | | "IOClass" = "AppleSEPManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | "IOUserClientClass" = "AppleSEPUserClient" + | | | | "IOPlatformQuiesceAction" = 0x15f8f + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,sep" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "SEPCameraDisable" = No + | | | | "IONameMatched" = "iop-nub,sep" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "sep-booted" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "HasXART" = Yes + | | | | } + | | | | + | | | +-o NVMeSEPNotifier + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMatchCategory" = "NVMeSEPNotifier" + | | | | "IOClass" = "NVMeSEPNotifier" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONVMeFamily" + | | | | "IOProviderClass" = "AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,hibe + | | | | | { + | | | | | } + | | | | | + | | | | +-o HibernationService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.SEPHibernation" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "HibernationService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.SEPHibernation" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.SEPHibernation" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,hibe" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,hibe" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | } + | | | | + | | | +-o sep-endpoint,stac + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleTrustedAccessoryManager + | | | | | { + | | | | | "IOClass" = "AppleTrustedAccessoryManager" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTrustedAccessory" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleTrustedAccessoryManagerUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "sep-endpoint,stac" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "com_apple_driver_AppleTrustedAccessoryManager" + | | | | | "IONameMatched" = "sep-endpoint,stac" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTrustedAccessory" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTrustedAccessory" + | | | | | } + | | | | | + | | | | +-o AppleTrustedAccessoryManagerUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,pnon + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,xars + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPXARTService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "AppleSEPXARTService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,xars" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,xars" + | | | | "XartApToSep" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,xarm + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPXARTService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "AppleSEPXARTService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,xarm" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,xarm" + | | | | } + | | | | + | | | +-o sep-endpoint,cntl + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,hdcp + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPHDCPManager + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOClass" = "AppleSEPHDCPManager" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IONameMatch" = "sep-endpoint,hdcp" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IONameMatched" = "sep-endpoint,hdcp" + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x0 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x1 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x2 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x3 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x4 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x5 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x6 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x7 + | | | | | "HDCPRole" = "Transmitter" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | { + | | | | "HDCPChannel" = 0x8 + | | | | "HDCPRole" = "(None - Not Open)" + | | | | "HDCPTransport" = 0x1 + | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "HDCPCapabilityMask" = 0x2 + | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | } + | | | | + | | | +-o sep-endpoint,sbio + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleMesaSEPDriver + | | | | | { + | | | | | "IOClass" = "AppleMesaSEPDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "ScanningState" = 0x0 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "IONameMatch" = "sep-endpoint,sbio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "com_apple_driver_AppleMesaSEPDriver" + | | | | | "MesaCalBlobSource" = "FDR" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IONameMatched" = "sep-endpoint,sbio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | } + | | | | | + | | | | +-o AppleBiometricServices + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOMatchCategory" = "com_apple_driver_AppleBiometricServices" + | | | | | "IOClass" = "AppleBiometricServices" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOProviderClass" = "AppleMesaSEPDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "AppleBiometricServicesUserClient" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o AppleBiometricServicesUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,skdl + | | | | | { + | | | | | } + | | | | | + | | | | +-o CoreKDLDriver + | | | | | { + | | | | | "IOClass" = "CoreKDLDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.CoreKDL" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "CoreKDLUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "sep-endpoint,skdl" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "CoreKDLDriver" + | | | | | "IONameMatched" = "sep-endpoint,skdl" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.CoreKDL" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.CoreKDL" + | | | | | } + | | | | | + | | | | +-o CoreKDLUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o CoreKDLUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,sse + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,scrd + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,sks + | | | { + | | | } + | | | + | | +-o dart-sep@8CAC0000 + | | | | { + | | | | "dart-id" = <07000000> + | | | | "IOInterruptSpecifiers" = (<44010000>) + | | | | "AAPL,phandle" = <91000000> + | | | | "IODeviceMemory" = (({"address"=0x29cac0000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d73657000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <44010000> + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000ac8c000000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <91000000> + | | | | "IOFunctionParent00000091" = <> + | | | | } + | | | | + | | | +-o mapper-sep@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d73657000> + | | | | "AAPL,phandle" = <92000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <92000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sio@91C00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<1f030000>,<1e030000>,<21030000>,<20030000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <81010000> + | | | | "AAPL,phandle" = <93000000> + | | | | "asio-ascwrap-tunables" = <400000000400000000ff00000000000000040000000000000c0800000400000001000060000000000100006000000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1c00000,"length"=0x6c000}),({"address"=0x2a1850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "map-range" = <4353494d000000a1020000000040000000000000> + | | | | "iommu-parent" = <97000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "dmashim" = <49505353000010a10200000000001000000000000d0000000e0000000f0000000040000052415553000020a10200000000001000000000000100000002000000030000000040000044554153000030a30200000000001000000000001e0000001f0000002000000000400000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <1f0300001e0300002103000020030000> + | | | | "clock-ids" = <940100009201000093010000> + | | | | "device-type" = <49505364060000000000000052415564070000000000000041504464050000000c000000> + | | | | "role" = <53494f00> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <73696f00> + | | | | "power-gates" = <81010000> + | | | | "reg" = <0000c0910000000000c006000000000000008591000000000040000000000000> + | | | | "segment-ranges" = <00009600000100000000000000000000000000000001000000c0010001000000000075010001000000c0010000000000000002000001000000800f0000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "SIO" + | | | | } + | | | | + | | | +-o iop-sio-nub + | | | | { + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "KDebugCoreID" = 0xa + | | | | "segment-ranges" = <00009600000100000000000000000000000000000001000000c0010001000000000075010001000000c0010000000000000002000001000000800f0000000000> + | | | | "uuid" = <42343236444544332d433839322d333830412d413939442d35413146423939334139443400> + | | | | "coredump-enable" = <40000000> + | | | | "no-firmware-service" = <> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "user-power-managed" = <01000000> + | | | | "name" = <696f702d73696f2d6e756200> + | | | | "AAPL,phandle" = <94000000> + | | | | } + | | | | + | | | +-o RTBuddy(SIO) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "FirmwareUUID" = "b426ded3-c892-380a-a99d-5a1fb993a9d4" + | | | | "FirmwareVersion" = "not set" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "SIO" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <94000000> + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "SIO" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o SIOEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o AppleSmartIO + | | | | { + | | | | "IOClass" = "AppleSmartIO" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartIO2" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "IOPlatformWakeAction" = 0x24e + | | | | "IOPlatformQuiesceAction" = 0x13880 + | | | | "IOPlatformSleepAction" = 0x24e + | | | | "IONameMatch" = ("SIOEndpoint1","SIO1Endpoint1") + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "AppleSmartIOUserClient" + | | | | "IONameMatched" = "SIOEndpoint1" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartIO2" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartIO2" + | | | | } + | | | | + | | | +-o sio-dma + | | | | { + | | | | "device_type" = <73696f2d646d6100> + | | | | "name" = <73696f2d646d6100> + | | | | "AAPL,phandle" = <95000000> + | | | | "compatible" = <73696f2d646d612d636f6e74726f6c6c657200> + | | | | } + | | | | + | | | +-o IODMAController00000095 + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartIO2" + | | | "IOMatchCategory" = "DMA" + | | | "IOClass" = "AppleSmartIODMAController" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartIO2" + | | | "IOProviderClass" = "AppleSmartIODMANub" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartIO2" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o dart-sio@91004000 + | | | | { + | | | | "dart-id" = <08000000> + | | | | "IOInterruptSpecifiers" = (<18030000>) + | | | | "AAPL,phandle" = <96000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1004000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000100000002000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <18030000> + | | | | "vm-base" = <00c0010000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000004000000000004080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00400091000000000040000000000000> + | | | | "vm-size" = <0040feffff020000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <96000000> + | | | | "IOFunctionParent00000096" = <> + | | | | } + | | | | + | | | +-o mapper-sio@0 + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d73696f00> + | | | | | "AAPL,phandle" = <97000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <97000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-aes@1 + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d61657300> + | | | | | "AAPL,phandle" = <98000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <98000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-admac@2 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <02000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d61646d616300> + | | | | "AAPL,phandle" = <99000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <99000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ans@F9400000 + | | | | { + | | | | "nvme-interrupt-idx" = <04000000> + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <04020000> + | | | | "nvme-queue-entries" = <40000000> + | | | | "AAPL,phandle" = <9a000000> + | | | | "IODeviceMemory" = (({"address"=0x309400000,"length"=0x6c000}),({"address"=0x309050000,"length"=0x4000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x30dcc0000,"length"=0x60000}),({"address"=0x30b000000,"length"=0x1000000}),({"address"=0x30db90000,"length"=0xc000}),({"address"=0x30dd47c00,"length"=0x4000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x21000000$ + | | | | "IOReportLegendPublic" = Yes + | | | | "nvme-linear-sq" = <> + | | | | "iommu-parent" = <9c000000> + | | | | "ccu-security-interrupt-tunables" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "nand-debug" = <0100000000000000> + | | | | "namespaces" = <010000000100000000000000020000000800000000030000030000000d00000000800000> + | | | | "interrupt-parent" = <69000000> + | | | | "name" = <616e7300> + | | | | "afc-aiu-ans-dual-tunables" = <0000000004000000030200000000000001020000000000000c00000004000000ffff0f000000000000680100000000001000000004000000ffff0f000000000000b40000000000003c00000004000000ffffffff0000000020000500000000004000000004000000ffffffff0000000040000a000000000008010000040000003300ffff0000000031000c00000000000c01000004000000ffff0f000000000000680100000000001001000004000000ffff0f000000000000b40000000000000006000004000000ff03f1c300000000010001c000000000000c000004000000ffffff0100000000ffffff0100000000480d000004000000ff07ff$ + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "msp-bfh-params" = <01000100efbeadde020000006c000000ffffffff01002a00008c00000278088e1b0836007c8e7b630c00489000000000549000000000509000f000005c9000f0000002001800900800204000a80861100004900800204001a80861100004030014006d6163626f6f6b3135675f31335f31355f4d4c4204000400010000000000> + | | | | "interrupts" = + | | | | "clock-ids" = <4c0100004b0100004d010000> + | | | | "nvme-vdma-wa" = <> + | | | | "command-accelerator-tunables" = <> + | | | | "role" = <414e533200> + | | | | "tunable-table-bundle" = <766b64617267767300> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616e7300> + | | | | "power-gates" = <04020000> + | | | | "reg" = <000040f90000000000c0060000000000000005f9000000000040000000000000000000000000000000000000000000000000ccfd000000000000060000000000000000fb0000000000000001000000000000b9fd0000000000c0000000000000007cd4fd000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010fd000000000040040000000000> + | | | | "storage-lane-common-tunables" = <> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "ANS2" + | | | | } + | | | | + | | | +-o iop-ans-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "shutdown-sleep" = <> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "AAPL,phandle" = <9b000000> + | | | | "region-base" = <0000d2e603010000> + | | | | "KDebugCoreID" = 0xc + | | | | "power-managed" = <01000000> + | | | | "running" = <01000000> + | | | | "region-size" = <0000001900000000> + | | | | "continuous-time" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "no-hibernate-sleep" = <> + | | | | "segment-ranges" = <00400000000100000000000000000000004000000001000000001d0001000000000097ff0301000000001d0000000000000097ff0301000000003b0000000000> + | | | | "crashlog-non-fatal" = <> + | | | | "name" = <696f702d616e732d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ANS2) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254537461740000,0x600020002,"power state")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Power State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ANS2" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <9b000000> + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sle$ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o ANS2Endpoint1 + | | | | { + | | | | } + | | | | + | | | +-o ANS2Endpoint2 + | | | | { + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "ANS2" + | | | | } + | | | | + | | | +-o AppleANS3NVMeController + | | | | { + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOPolledInterface" = "IONVMeControllerPolledAdapter is not serializable" + | | | | "IOMinimumSaturationByteCount" = 0x800000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x1000 + | | | | "IOMaximumByteCountWrite" = 0x100000 + | | | | "Physical Interconnect" = "Apple Fabric" + | | | | "Physical Interconnect Location" = "Internal" + | | | | "Vendor Name" = "Apple" + | | | | "Serial Number" = "0ba028e440b0d625" + | | | | "IOMaximumSegmentByteCountWrite" = 0x1000 + | | | | "IOMaximumByteCountRead" = 0x100000 + | | | | "Model Number" = "APPLE SSD AP0256Z" + | | | | "IOPropertyMatch" = {"role"="ANS2"} + | | | | "AppleNANDStatus" = "Ready" + | | | | "IOCommandPoolSize" = 0x40 + | | | | "Chipset Name" = "SSD Controller" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONVMeFamily" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "Firmware Revision" = "532.100." + | | | | "NVMe Revision Supported" = "1.10" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMaximumSegmentCountWrite" = 0x100 + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOMaximumSegmentByteCountRead" = 0x1000 + | | | | "IOClass" = "AppleANS3NVMeController" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONVMeFamily" + | | | | "IOPlatformPanicAction" = 0x0 + | | | | "IOMaximumSegmentCountRead" = 0x100 + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x4e564d6520507772,0x200020002,"NVMe Power States")),"IOReportGroupName"="NVMe","IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018}}) + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Controller Characteristics" = {"default-bits-per-cell"=0x3,"firmware-version"="532.100.","controller-unique-id"="0ba028e440b0d625 ","capacity"=0x3b9aca0000,"pages-per-block-mlc"=0x540,"pages-in-read-verify"=0x540,"sec-per-full-band-slc"=0x3800,"pages-per-block0"=0x0,"cell-type"=0x3,"bytes-per-sec-meta"=0x10,"Preferred IO Size"=0x100000,"program-scheme"=0x0,"bus-to-msp"=(0x0,0x0,0x1,0x1),"num-dip"=0x8,"nand-marketing-name"="tlc_3d_g5_2p_512 ","package_blocks_at_EOL"=0x3110,"sec-per-full-band"=0xa800,$ + | | | | "IOProbeScore" = 0x493e0 + | | | | } + | | | | + | | | +-o AppleEmbeddedNVMeTemperatureSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "NAND CH0 temp" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x544e306e + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o NS_01@1 + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "IOMaximumBlockCountWrite" = 0x100 + | | | | | "IOMaximumSegmentByteCountRead" = 0x100000 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOMaximumSegmentByteCountWrite" = 0x100000 + | | | | | "NamespaceID" = 0x1 + | | | | | "IOMaximumSegmentCountRead" = 0x100 + | | | | | "IOMaximumSegmentCountWrite" = 0x100 + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "IOUnit" = 0x1 + | | | | | "NamespaceUUID" = 0x0 + | | | | | "Encryption" = Yes + | | | | | "Device Characteristics" = {"Serial Number"="0ba028e440b0d625","Medium Type"="Solid State","Product Name"="APPLE SSD AP0256Z","Vendor Name"="","Product Revision Level"="532.100."} + | | | | | "IOMaximumBlockCountRead" = 0x100 + | | | | | "IOCFPlugInTypes" = {"AA0FA6F9-C2D6-457F-B10B-59A13253292F"="NVMeSMARTLib.plugin"} + | | | | | "IOMinimumSegmentAlignmentByteCount" = 0x1000 + | | | | | "IOMaximumByteCountRead" = 0x100000 + | | | | | "IOMaximumByteCountWrite" = 0x100000 + | | | | | "device-type" = "Generic" + | | | | | "EmbeddedDeviceTypeRoot" = Yes + | | | | | "Physical Block Size" = 0x1000 + | | | | | "Protocol Characteristics" = {"Physical Interconnect"="Apple Fabric","Physical Interconnect Location"="Internal"} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="NVMe","IOReportChannels"=((0x5469657230204257,0x180000001,"Tier0 BW Scale Factor"),(0x5469657231204257,0x180000001,"Tier1 BW Scale Factor"),(0x5469657232204257,0x180000001,"Tier2 BW Scale Factor"),(0x5469657233204257,0x180000001,"Tier3 BW Scale Factor")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="BW Limits"},{"IOReportGroupName"="NVMe","IOReportChannels"=((0x546f742054696d65,0x180000001,"Total time elapsed"),(0x5469657230202020,0x180000001,"Tie$ + | | | | | "ThermalThrottlingSupported" = Yes + | | | | | "NVMe SMART Capable" = Yes + | | | | | } + | | | | | + | | | | +-o IOBlockStorageDriver + | | | | | { + | | | | | "IOClass" = "IOBlockStorageDriver" + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Statistics" = {"Operations (Write)"=0x7f5761,"Latency Time (Write)"=0x0,"Bytes (Read)"=0xc6fb00a000,"Errors (Write)"=0x0,"Total Time (Read)"=0xb0e4d56059d,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0xee0239a8f5,"Bytes (Write)"=0x40c8ac2000,"Operations (Read)"=0x14b0a5a,"Retries (Write)"=0x0} + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | } + | | | | | + | | | | +-o APPLE SSD AP0256Z Media + | | | | | { + | | | | | "Content" = "GUID_partition_scheme" + | | | | | "Removable" = No + | | | | | "Whole" = Yes + | | | | | "Leaf" = No + | | | | | "BSD Name" = "disk0" + | | | | | "Ejectable" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Internal.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | | "BSD Minor" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Writable" = Yes + | | | | | "BSD Major" = 0x1 + | | | | | "Size" = 0x3a70c70000 + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Open" = Yes + | | | | | "Content Hint" = "" + | | | | | "BSD Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7530 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IOGUIDPartitionScheme + | | | | | { + | | | | | "IOProbeScore" = 0xfa0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "Content Mask" = "GUID_partition_scheme" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "UUID" = "96AE2D69-7830-4BC9-A4F9-8F9A1240A765" + | | | | | } + | | | | | + | | | | +-o iBootSystemContainer@1 + | | | | | | { + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Base" = 0x6000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "69646961-6700-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x1 + | | | | | | "Whole" = No + | | | | | | "Removable" = No + | | | | | | "UUID" = "20593001-0A3D-4F25-98B5-70369CB522B5" + | | | | | | "BSD Unit" = 0x0 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk0s1" + | | | | | | "Partition ID" = 0x1 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "GPT Attributes" = 0x0 + | | | | | | "Content Hint" = "69646961-6700-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "TierType" = "Main" + | | | | | | } + | | | | | | + | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainerScheme + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="69646961-6700-11AA-AA11-00306543ECAC"}) + | | | | | | "IOProbeScore" = 0x7d0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Operations (Read)"=0x158a,"Bytes (Write)"=0x3dd1000,"Operations (Write)"=0x20eb,"Bytes (Read)"=0x15bb000} + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "APFSComposited" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMedia + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x4 + | | | | | | "Whole" = Yes + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | | "UUID" = "BC43A98F-291A-4B26-8EC0-0EC23BF40EB9" + | | | | | | "BSD Unit" = 0x1 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk1" + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "OSInternal" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainer + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x1aa000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x198,"Write burst: Total number of I/Os"=0x27,"Write burst: Total time"=0x85a86b,"Bytes read from block device"=0x27c000,"Object cache: Number of writes"=0x1df2,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x24b,"Metadata: Number of bytes written"=0x1df2000,"Write burst: Total time betw$ + | | | | | | "UUID" = "BC43A98F-291A-4B26-8EC0-0EC23BF40EB9" + | | | | | | "ContainerBlockSize" = 0x1000 + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "Status" = "Online" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOAPFSPreBootDevice" = ("iSCPreboot@1") + | | | | | | } + | | | | | | + | | | | | +-o iSCPreboot@1 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x10 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "iSCPreboot" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xa + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "20146CCB-102A-4E49-9DE9-6F1D91F4BCA4" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x1c0000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x2b7,"Calls to VNOP_GETATTRLISTBULK"=0x2b,"Calls to VNOP_CLOSE"=0x97c,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x6ba,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x6a5,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x1bc,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=$ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Preboot") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s1" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o xART@2 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x100 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "xART" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x8 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "6D4F1EF2-0D94-4B9F-AF85-E7F2CB81C85E" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x190,"Calls to VNOP_GETATTRLISTBULK"=0x1a,"Calls to VNOP_CLOSE"=0x2bf,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls $ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("xART") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s2" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Hardware@3 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x140 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Hardware" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x7 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "8DCE2EB7-9962-48CE-A3BC-5D2F2B002084" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x573000,"Bytes read from block device"=0xbc000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x82b,"Calls to VNOP_GETATTRLISTBULK"=0x2d,"Calls to VNOP_CLOSE"=0x6c1,"Calls to VNOP_MNOMAP"=0x2,"Calls to VNOP_INACTIVE"=0x414,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x11d,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x360,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to wri$ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Hardware") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s3" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Recovery@4 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = No + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x4 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "Recovery" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x9 + | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "87E92CF5-99CE-442C-A26D-0D84138F8250" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | | "BSD Unit" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("Recovery") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk1s4" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o Container@2 + | | | | | | { + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Base" = 0x1f406000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x2 + | | | | | | "Whole" = No + | | | | | | "Removable" = No + | | | | | | "UUID" = "0D2CE055-9155-4F5F-BDF4-C3A425190FFE" + | | | | | | "BSD Unit" = 0x0 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk0s2" + | | | | | | "Partition ID" = 0x2 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "GPT Attributes" = 0x0 + | | | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "TierType" = "Main" + | | | | | | } + | | | | | | + | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainerScheme + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "IOProbeScore" = 0x7d0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Operations (Read)"=0x14aaaa4,"Bytes (Write)"=0x40c4cf1000,"Operations (Write)"=0x7f3676,"Bytes (Read)"=0xc6f4e79000} + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "APFSComposited" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMedia + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xc + | | | | | | "Whole" = Yes + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | | "UUID" = "6A706C2C-A61E-4FB2-BF75-DFB81ABE9045" + | | | | | | "BSD Unit" = 0x3 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk3" + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainer + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0xc508000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x108e31e,"Write burst: Total time"=0xc29320cc50b,"Bytes read from block device"=0xafc0c9a000,"Object cache: Number of writes"=0x571a26,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0xe1bc14,"Metadata: Number of bytes written"=0x571a26000,"Write bu$ + | | | | | | "UUID" = "6A706C2C-A61E-4FB2-BF75-DFB81ABE9045" + | | | | | | "ContainerBlockSize" = 0x1000 + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "Status" = "Online" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOAPFSPreBootDevice" = ("Preboot@2") + | | | | | | } + | | | | | | + | | | | | +-o Macintosh HD@1 + | | | | | | | { + | | | | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | | | | "RoleValue" = 0x1 + | | | | | | | "IncompatibleFeatures" = 0x21 + | | | | | | | "Writable" = Yes + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "VolBootable" = Yes + | | | | | | | "BSD Name" = "disk3s1" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Whole" = No + | | | | | | | "Open" = Yes + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "Status" = "Online" + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0xae2c48000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x730ce84,"Calls to VNOP_GETATTRLISTBULK"=0xa1dbd,"Calls to VNOP_CLOSE"=0x6bbd7c,"Calls to VNOP_MNOMAP"=0x2d232,"Calls to VNOP_INACTIVE"=0x1054ce,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x6853c3,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x1fdcc8,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of$ + | | | | | | | "UUID" = "4D2A614C-A710-4107-8AEC-0AF9A08A8198" + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Ejectable" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "VolGroupMntFromName" = "/dev/disk3s1s1" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Leaf" = Yes + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "FullName" = "Macintosh HD" + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Removable" = No + | | | | | | | "Role" = ("System") + | | | | | | | "BSD Minor" = 0x10 + | | | | | | | "autodiskmount" = No + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o com.apple.os.update-83920663FCCF8FEE21340F708B980423F7822AE195EAD15998C70BD0F7B8AF23@1 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Writable" = No + | | | | | | | "Sealed" = "Yes" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "com.apple.os.update-83920663FCCF8FEE21340F708B980423F7822AE195EAD15998C70BD0F7B8AF23" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x13 + | | | | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "53435747-C371-4509-B67B-6673C9E4145D" + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "BSD Name" = "disk3s1s1" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Preboot@2 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x10 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Preboot" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xf + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "FF64E779-F6B1-47D8-B749-4D46CD44F67E" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x734000,"Bytes read from block device"=0x60b0000,"Calls to VNOP_ALLOCATE"=0x92f,"Calls to VNOP_LOOKUP"=0x392a4c,"Calls to VNOP_GETATTRLISTBULK"=0xf019,"Calls to VNOP_CLOSE"=0x1005fc,"Calls to VNOP_MNOMAP"=0x1d7a,"Calls to VNOP_INACTIVE"=0xf635,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x17aca,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x1b762e,"Calls to VNOP_CREATE"=0x56b,"Metadata: Number o$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Preboot") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s2" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o GlowE24E263.arm64eSystemCryptex + | | | | | | | { + | | | | | | | "FullName" = "GlowE24E263.arm64eSystemCryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x11 + | | | | | | | "inode range base" = 0x8f1c + | | | | | | | "System content" = Yes + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0xe19c47000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | | "inode range length" = 0x2fd4 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0xe19c47000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1a6ef7,"Metadata: Number of bytes written"=0x0,"Write burst: Total time betwee$ + | | | | | | | "Cryptex inode" = 0x88b3 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppCryptex + | | | | | | | { + | | | | | | | "FullName" = "AppCryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x12 + | | | | | | | "inode range base" = 0xbef0 + | | | | | | | "System content" = Yes + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x6668000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | | "inode range length" = 0x12d9 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x6668000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1bb8,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bu$ + | | | | | | | "Cryptex inode" = 0x88b7 + | | | | | | | } + | | | | | | | + | | | | | | +-o GlowE24E263.arm64eSystemCryptex + | | | | | | { + | | | | | | "FullName" = "GlowE24E263.arm64eSystemCryptex" + | | | | | | "Sealed" = "Yes" + | | | | | | "Graft directory inode" = 0x14 + | | | | | | "inode range base" = 0xd1c9 + | | | | | | "System content" = Yes + | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x6681000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | "inode range length" = 0x2fd4 + | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x6681000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1175,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bu$ + | | | | | | "Cryptex inode" = 0x88b4 + | | | | | | } + | | | | | | + | | | | | +-o Recovery@3 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = No + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x4 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Recovery" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x11 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "C16E6524-0B49-4D3A-A8CD-1FE01E3CBF10" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x4000,"Bytes read from block device"=0x156e1000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x9c,"Calls to VNOP_GETATTRLISTBULK"=0x23,"Calls to VNOP_CLOSE"=0x2f,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x6a,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x30aa,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x13da,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to wri$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Recovery") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s3" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Update@4 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0xc0 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Update" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xd + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "12606787-8A52-4103-805B-9B783BC225C5" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x17d000,"Bytes read from block device"=0x11d000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x1967,"Calls to VNOP_GETATTRLISTBULK"=0x418,"Calls to VNOP_CLOSE"=0x88a,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x601,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0xa0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x85,"Calls to VNOP_CREATE"=0x1c,"Metadata: Number of objects failed to w$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Update") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s4" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | "OSInternal" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Data@5 + | | | | | | | { + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "RoleValue" = 0x40 + | | | | | | | "IncompatibleFeatures" = 0x41 + | | | | | | | "Locked" = No + | | | | | | | "Writable" = Yes + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "EncryptionType" = "ScalablePFK" + | | | | | | | "BSD Name" = "disk3s5" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Whole" = No + | | | | | | | "Open" = Yes + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "Status" = "Online" + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x1bd66f000,"Bytes read from block device"=0xa2abf60000,"Calls to VNOP_ALLOCATE"=0x76bb,"Calls to VNOP_LOOKUP"=0x1e1a710f,"Calls to VNOP_GETATTRLISTBULK"=0x210671,"Calls to VNOP_CLOSE"=0x1003221,"Calls to VNOP_MNOMAP"=0x163b8d,"Calls to VNOP_INACTIVE"=0xa32adb,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x3c4c4cd,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0xf163c6,"Calls to VNOP_CREATE"=0x7616b$ + | | | | | | | "UUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "Encrypted" = Yes + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Ejectable" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "VolGroupMntFromName" = "/dev/disk3s5" + | | | | | | | "Sealed" = "No" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Leaf" = Yes + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "FullName" = "Data" + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Removable" = No + | | | | | | | "Role" = ("Data") + | | | | | | | "BSD Minor" = 0x12 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200731.UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200731.UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb719 + | | | | | | | "inode range base" = 0x1eb71a + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x8b + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x66ad + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200448.UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200448.UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb935 + | | | | | | | "inode range base" = 0x1eb936 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x73 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x65ff + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200451.UC_FM_PHOTOS_GENEDIT_MAGICCLEANUP_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200451.UC_FM_PHOTOS_GENEDIT_MAGICCLEANUP_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb6d9 + | | | | | | | "inode range base" = 0x1eb6da + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x16f818000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | | "inode range length" = 0x3f + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x16f818000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1a44b,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between$ + | | | | | | | "Cryptex inode" = 0x68a9 + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200703.UC_FM_LANGUAGE_INSTRUCT_3B_DRAFTS_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200703.UC_FM_LANGUAGE_INSTRUCT_3B_DRAFTS_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb7a5 + | | | | | | | "inode range base" = 0x1eb7a6 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x166 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x665b + | | | | | | | } + | | | | | | | + | | | | | | +-o Creedence11M6270.SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "Creedence11M6270.SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1ab683 + | | | | | | | "inode range base" = 0x1ab688 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x16cd000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | | "inode range length" = 0x22 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x16cd000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x450,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bur$ + | | | | | | | "Cryptex inode" = 0x1ab47d + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200516.UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200516.UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb664 + | | | | | | | "inode range base" = 0x1eb665 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x74 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x62a1 + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200730.UC_IF_PLANNER_NLROUTER_BASE_EN_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200730.UC_IF_PLANNER_NLROUTER_BASE_EN_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb90c + | | | | | | | "inode range base" = 0x1eb90d + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x28 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x897c + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M201387.UC_FM_CODE_GENERATE_SAFETY_GUARDRAIL_BASE_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M201387.UC_FM_CODE_GENERATE_SAFETY_GUARDRAIL_BASE_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x2fdfb4 + | | | | | | | "inode range base" = 0x2fdfb5 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x86935000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=$ + | | | | | | | "inode range length" = 0x2e + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x86935000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0xef0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bu$ + | | | | | | | "Cryptex inode" = 0x2fb32f + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M201387.UC_FM_CODE_GENERATE_SMALL_V1_BASE_GENERIC_H15_Cryptex + | | | | | | { + | | | | | | "FullName" = "RevivalB13M201387.UC_FM_CODE_GENERATE_SMALL_V1_BASE_GENERIC_H15_Cryptex" + | | | | | | "Sealed" = "Yes" + | | | | | | "Graft directory inode" = 0x2fdfe5 + | | | | | | "inode range base" = 0x2fdfe6 + | | | | | | "System content" = No + | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x1fa6b8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | "inode range length" = 0x21 + | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x1fa6b8000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x2dc40,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between$ + | | | | | | "Cryptex inode" = 0x2fc762 + | | | | | | } + | | | | | | + | | | | | +-o VM@6 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x8 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "VM" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xe + | | | | | | "FormattedBy" = "apfs_boot_util (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "3851BA68-DEC8-4EB1-9F4B-295935E2B63D" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x1c000,"Bytes read from block device"=0x216844000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x1c0,"Calls to VNOP_GETATTRLISTBULK"=0x1a,"Calls to VNOP_CLOSE"=0x2cc,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x19,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0xaf02d,"Calls to VNOP_CREATE"=0xf,"Metadata: Number of objects failed to w$ + | | | | | | "BSD Unit" = 0x3 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("VM") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk3s6" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o RecoveryOSContainer@3 + | | | | | { + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "Base" = 0x3930c76000 + | | | | | "Writable" = Yes + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "52637672-7900-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x3 + | | | | | "Whole" = No + | | | | | "Removable" = No + | | | | | "UUID" = "D57DAE4C-FEF6-4563-A333-B5195DD08064" + | | | | | "BSD Unit" = 0x0 + | | | | | "BSD Major" = 0x1 + | | | | | "Ejectable" = No + | | | | | "BSD Name" = "disk0s3" + | | | | | "Partition ID" = 0x3 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "GPT Attributes" = 0x0 + | | | | | "Content Hint" = "52637672-7900-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = No + | | | | | "TierType" = "Main" + | | | | | } + | | | | | + | | | | +-o IOMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7530 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o AppleAPFSContainerScheme + | | | | | { + | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "IOPropertyMatch" = ({"Content Hint"="52637672-7900-11AA-AA11-00306543ECAC"}) + | | | | | "IOProbeScore" = 0x7d0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "Statistics" = {"Operations (Read)"=0x4a1f,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x4bc3000} + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "APFSComposited" = No + | | | | | } + | | | | | + | | | | +-o AppleAPFSMedia + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "Writable" = Yes + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x5 + | | | | | "Whole" = Yes + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "Removable" = No + | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | "UUID" = "3CE0A222-E76A-4C15-8931-E99A8A5EAE24" + | | | | | "BSD Unit" = 0x2 + | | | | | "BSD Major" = 0x1 + | | | | | "Ejectable" = No + | | | | | "BSD Name" = "disk2" + | | | | | "Physical Block Size" = 0x1000 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = No + | | | | | "OSInternal" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAPFSMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o AppleAPFSContainer + | | | | | { + | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | "Logical Block Size" = 0x1000 + | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache$ + | | | | | "UUID" = "3CE0A222-E76A-4C15-8931-E99A8A5EAE24" + | | | | | "ContainerBlockSize" = 0x1000 + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "Status" = "Online" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | } + | | | | | + | | | | +-o Recovery@1 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = No + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x4 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "Recovery" + | | | | | | "Size" = 0x13fff5000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xb + | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "D965D3BA-3A8A-4B4A-B531-1936DAFA712A" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | | "BSD Unit" = 0x2 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("Recovery") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk2s1" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o Update@2 + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "RoleValue" = 0xc0 + | | | | | "Writable" = Yes + | | | | | "IncompatibleFeatures" = 0x1 + | | | | | "Sealed" = "No" + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "FullName" = "Update" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x6 + | | | | | "FormattedBy" = "com.apple.MobileSof (2317.61.2)" + | | | | | "Whole" = No + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "Removable" = No + | | | | | "UUID" = "15F8AF8C-924E-41AA-87F6-A864D47A7FE4" + | | | | | "CaseSensitive" = No + | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | "BSD Unit" = 0x2 + | | | | | "Ejectable" = No + | | | | | "Role" = ("Update") + | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | "BSD Name" = "disk2s2" + | | | | | "BSD Major" = 0x1 + | | | | | "Physical Block Size" = 0x1000 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "autodiskmount" = No + | | | | | "Status" = "Online" + | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = Yes + | | | | | "OSInternal" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAPFSVolumeBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o NS_02 + | | | | { + | | | | "EmbeddedDeviceTypePanicLog" = Yes + | | | | } + | | | | + | | | +-o NS_03 + | | | | { + | | | | "EmbeddedDeviceTypeEAN" = Yes + | | | | } + | | | | + | | | +-o AppleNVMeEANUC + | | | { + | | | "IOUserClientCreator" = "pid 548, suhelperd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o sart-ans@FDC50000 + | | | | { + | | | | "sart-version" = <03000000> + | | | | "sart-power-managed" = <> + | | | | "compatible" = <736172742c636f617374677561726400> + | | | | "name" = <736172742d616e7300> + | | | | "IODeviceMemory" = (({"address"=0x30dc50000,"length"=0xc000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x30dcc0000,"length"=0x4000})) + | | | | "sart-power-reg-offset" = + | | | | "device_type" = <7361727400> + | | | | "AAPL,phandle" = <9c000000> + | | | | "reg" = <0000c5fd0000000000c0000000000000000000000000000000000000000000000000ccfd000000000040000000000000> + | | | | } + | | | | + | | | +-o IOCoastGuardSARTMapper + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSART" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "IOCoastGuardSARTMapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSART" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSART" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("sart,coastguard") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "sart,coastguard" + | | | "IOMapperID" = <9c000000> + | | | } + | | | + | | +-o smc@DC400000 + | | | | { + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "clock-ids" = <> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "clock-gates" = <> + | | | | "reg" = <000040dc0000000000c0060000000000000005dc000000000040000000000000000081dc000000001400000000000000> + | | | | "AAPL,phandle" = <9d000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "iop-version" = <01000000> + | | | | "device_type" = <736d6300> + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "IODeviceMemory" = (({"address"=0x2ec400000,"length"=0x6c000}),({"address"=0x2ec050000,"length"=0x4000}),({"address"=0x2ec810000,"length"=0x14})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <534d4300> + | | | | "power-gates" = <> + | | | | "timers-reg-index" = <02000000> + | | | | "name" = <736d6300> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "SMC" + | | | | } + | | | | + | | | +-o iop-smc-nub + | | | | { + | | | | "pre-loaded" = <01000000> + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <9e000000> + | | | | "region-base" = <0000e0ed02000000> + | | | | "firmware-name" = <7438313232736d6300> + | | | | "running" = <01000000> + | | | | "no-shutdown" = <01000000> + | | | | "region-size" = <0000100000000000> + | | | | "continuous-time" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "KDebugCoreID" = 0x8 + | | | | "no-hibernate-sleep" = <> + | | | | "watchdog-enable" = <> + | | | | "coredump-active-only" = <> + | | | | "name" = <696f702d736d632d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(SMC) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SMC","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "SMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <9e000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "SMC" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="SMC","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="SMC","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="SMC","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o SMCEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o AppleSMCKeysEndpoint + | | | | { + | | | | "IOClass" = "AppleSMCKeysEndpoint" + | | | | "IOPlatformSleepAction" = 0x320 + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "socd-data-in-progress" = No + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "AppleSMCClient" + | | | | "remove-socd-data" = 0x0 + | | | | "IONameMatch" = "SMCEndpoint1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "Generation" = 0x4 + | | | | "IOMatchCategory" = "AppleSMCKeysEndpoint" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IONameMatched" = "SMCEndpoint1" + | | | | "role" = "SMC" + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOPlatformWakeAction" = 0x320 + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU VP0u" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503075 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tcal" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450305a + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503164 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503264 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503364 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503464 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503564 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503664 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503764 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503864 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503062 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503762 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503962 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650316c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650326c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650336c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650356c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650626c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650636c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650656c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo15" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650666c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo17" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650686c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo21" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506c6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503062 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503762 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503962 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950316c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950326c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950336c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950356c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950626c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950636c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950656c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo15" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950666c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo17" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950686c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo21" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506c6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 VR0u" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523075 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tcal" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452305a + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523164 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523264 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523364 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523464 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523564 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523862 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652346c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652366c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652646c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo16" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652676c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo18" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652696c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo19" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526a6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523862 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952346c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952366c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952646c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo16" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952676c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo18" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952696c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo19" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526a6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473042 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473043 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473048 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473056 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473142 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473242 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o smc-pmu + | | | | | { + | | | | | "#address-cells" = <00000000> + | | | | | "AAPL,phandle" = <9f000000> + | | | | | "event_name-bit48" = <72746300> + | | | | | "event_name-bit22" = <747261636b7061646b6579626f61726400> + | | | | | "has_pmu_gpio0" = <01000000> + | | | | | "event_name-bit44" = <555342325f77616b6500> + | | | | | "has_lid_open_sensor" = <01000000> + | | | | | "InterruptControllerName" = "IOInterruptController0000009F" + | | | | | "event_name-bit42" = <5553422d435f706c756700> + | | | | | "event_name-bit8" = <6c696400> + | | | | | "event_name-bit0" = <70777262746e00> + | | | | | "event_name-bit40" = <616361747461636800> + | | | | | "name" = <736d632d706d7500> + | | | | | "event_name-bit13" = <77696669627400> + | | | | | "compatible" = <736d632d706d7500> + | | | | | "interrupt-controller" = <> + | | | | | "event_name-bit9" = <636f64656300> + | | | | | "#interrupt-cells" = <01000000> + | | | | | "event_name-bit11" = <6368617267657200> + | | | | | "event_name-bit45" = <6175706f00> + | | | | | "event_name-bit43" = <555342325f706c756700> + | | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | | "event_name-bit41" = <616364657461636800> + | | | | | "function-pmu_button" = <2101000044747542> + | | | | | } + | | | | | + | | | | +-o AppleSMCPMU + | | | | { + | | | | "IOClass" = "AppleSMCPMU" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOPlatformWakeAction" = 0x2bc + | | | | "IOPlatformSleepAction" = 0x2bc + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = ("smc-pmu") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOFunctionParent0000009F" = <> + | | | | "IONameMatched" = "smc-pmu" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "InterruptControllerName" = "IOInterruptController0000009F" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | } + | | | | + | | | +-o smc-charger-util-0 + | | | | | { + | | | | | "name" = <736d632d636861726765722d7574696c2d3000> + | | | | | "compatible" = <736d632d636861726765722d7574696c00> + | | | | | "dock-num" = <01000000> + | | | | | "port-number" = <01000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <02000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o smc-charger-util-1 + | | | | | { + | | | | | "name" = <736d632d636861726765722d7574696c2d3100> + | | | | | "compatible" = <736d632d636861726765722d7574696c00> + | | | | | "dock-num" = <02000000> + | | | | | "port-number" = <02000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <02000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o smc-charger-util + | | | | | { + | | | | | "magsafe-auth" = <01000000> + | | | | | "name" = <736d632d636861726765722d7574696c00> + | | | | | "port-number" = <01000000> + | | | | | "dock-num" = <03000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <11000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o AppleSmartBatteryManager + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOMatchCategory" = "AppleSmartBatteryManager" + | | | | | "IOClass" = "AppleSmartBatteryManager" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOProviderClass" = "AppleSMC" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "AppleSmartBatteryManagerUserClient" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | } + | | | | | + | | | | +-o AppleSmartBattery + | | | | { + | | | | "PostChargeWaitSeconds" = 0x78 + | | | | "built-in" = Yes + | | | | "AppleRawAdapterDetails" = () + | | | | "CurrentCapacity" = 0x45 + | | | | "PackReserve" = 0x7f + | | | | "DeviceName" = "bq40z651" + | | | | "PostDischargeWaitSeconds" = 0x78 + | | | | "CarrierMode" = {"CarrierModeLowVoltage"=0xe10,"CarrierModeHighVoltage"=0x1004,"CarrierModeStatus"=0x0} + | | | | "TimeRemaining" = 0x9f + | | | | "ChargerConfiguration" = 0x0 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x6379636c65636e74,0x181120001,"BatteryCycleCount")),"IOReportGroupName"="Battery","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}}) + | | | | "AtCriticalLevel" = No + | | | | "BatteryCellDisconnectCount" = 0x0 + | | | | "UpdateTime" = 0x681e56a5 + | | | | "Amperage" = 0xfffffffffffffbf4 + | | | | "AppleRawCurrentCapacity" = 0xbc4 + | | | | "AbsoluteCapacity" = 0x0 + | | | | "AvgTimeToFull" = 0xffff + | | | | "ExternalConnected" = No + | | | | "ExternalChargeCapable" = No + | | | | "AppleRawBatteryVoltage" = 0x2e6b + | | | | "BootVoltage" = 0x0 + | | | | "PowerOutDetails" = ({"PowerState"=0x0,"VConnAccumulatorErrorCount"=0x0,"USBSleepPoolPowermW"=0x0,"AccumulatedPower"=0x2e3298,"PortType"=0x0,"FilteredPower"=0x6ed,"AccumulatorCount"=0x6cc,"VConnMaxCurrent"=0x14a,"USBWakePoolPowermW"=0x0,"PortIndex"=0x1,"Watts"=0x736,"ConfiguredVoltage"=0x1388,"VConnCurrent"=0x10,"VConnAccumulatedPower"=0x25704,"AccumulatorErrorCount"=0x0,"NumLDCMCollisions"=0x8,"VConnPower"=0x57,"Current"=0x165,"ConfiguredCurrent"=0xbb8,"PDPowermW"=0x3a98,"AdapterVoltage"=0x1432,"VConnAccumulatorC$ + | | | | "BatteryData" = {"Ra03"=0x4a,"Ra10"=0x85,"CellWom"=(0x0,0x0),"RaTableRaw"=(<00fe004400320043005d004c006e00680079007a009300b1011b0258044d0000>,<011b004e0037004f006600550063006300720076008d00a9010e023203ee0000>,<01030046003a004a00610050006100610071007e008500a10103023504070000>),"Qstart"=0x0,"AdapterPower"=,"TrueRemainingCapacity"=0x0,"DailyMinSoc"=0x45,"Ra04"=0x61,"CurrentSenseMonitorStatus"=0x0,"Ra11"=0xa1,"CellVoltage"=(0xf7c,0xf77,0xf79),"PackCurrentAccumulator"=0xfffffffffffaebad,"PassedCharge"=0xfffffffffffffba$ + | | | | "BatteryInstalled" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "Serial" = "F5D50370E0U10DLDM" + | | | | "AppleRawExternalConnected" = No + | | | | "KioskMode" = {"KioskModeLastHighSocHours"=0x0,"KioskModeFullChargeVoltage"=0x0,"KioskModeMode"=0x0,"KioskModeHighSocSeconds"=0x0,"KioskModeHighSocDays"=0x0} + | | | | "NominalChargeCapacity" = 0x128f + | | | | "FullyCharged" = No + | | | | "DeadBatteryBootData" = {"ActivePayloads"=0x3,"GeneralPayload"={"StartBatteryCapacity"=0x0,"PrechargeCount"=0x1,"VbusType"=0x0,"WirelessChargingMode"=0x0,"StartBatteryVoltage"=0x366,"AdapterType"=0x0,"CloakEntryCount"=0x0,"TimeOnCharger"=0x1f,"AverageBattVirtualTemp"=0x1b,"AverageBattSkinTemp"=0x1b},"SMCBootManagementPayload"={"DisplayTimeBootCount"=0x0,"Ok2SwitchCount"=0x2,"AdapterPower"=0x0,"DeviceResetCount"=0x2,"HighPoweriBootCount"=0x2,"APBootCount"=0x2}} + | | | | "ManufacturerData" = <000000000b000100f91400000432323133033030420341544c00200000000000> + | | | | "FedDetails" = ({"FedStateOfCharge"=0x0,"FedPortPowerRole"=0x1,"FedProductID"=0x2003,"FedDesignCapacity"=0x0,"FedPdSpecRevision"=0x2,"FedSnkConfReason"=0x0,"FedVendorID"=0x57e,"FedExternalConnected"=0x0,"FedDualRolePower"=0x1,"FedRemainingCapacity"=0x0,"FedPwrPolicySt"=0x0,"FedSrcConfReason"=0x0},{"FedStateOfCharge"=0x0,"FedPortPowerRole"=0x0,"FedProductID"=0x0,"FedDesignCapacity"=0x0,"FedPdSpecRevision"=0x0,"FedSnkConfReason"=0x0,"FedVendorID"=0x0,"FedExternalConnected"=0x0,"FedDualRolePower"=0x0,"FedRemainingCap$ + | | | | "FullPathUpdated" = 0x681e5489 + | | | | "BatteryInvalidWakeSeconds" = 0x1e + | | | | "ChargerData" = {"ChargerStatus"=<0700021c00009820440f00000000000000000000000000000000000000000000000000000000000000c3e4000289000000000000000000000000000000000000>,"VacVoltageLimit"=0x1153,"NotChargingReason"=0x80,"SlowChargingReason"=0x0,"ChargerResetCounter"=0x0,"ChargerID"=0xe,"TimeChargingThermallyLimited"=0x0,"ChargingVoltage"=0x115f,"ChargerInhibitReason"=0x0,"ChargingCurrent"=0x0} + | | | | "BootPathUpdated" = 0x680bc3c8 + | | | | "DesignCycleCount9C" = 0x3e8 + | | | | "AdapterDetails" = {"FamilyCode"=0x0} + | | | | "PowerTelemetryData" = {"AccumulatedWallEnergyEstimate"=0xaabd89f,"SystemEnergyConsumed"=0x0,"SystemPowerInAccumulatorCount"=0x1a099,"AdapterEfficiencyLoss"=0x0,"SystemLoad"=0x3016,"AccumulatedSystemLoad"=0x292f9529,"AccumulatedSystemEnergyConsumed"=0x3742b6485410,"SystemCurrentIn"=0x0,"WallEnergyEstimate"=0x0,"SystemLoadAccumulatorCount"=0x127fdd,"AdapterEfficiencyLossAccumulatorCount"=0xb6c6,"SystemVoltageIn"=0x0,"SystemPowerIn"=0x0,"AccumulatedBatteryPower"=0x1e3837fd,"PowerTelemetryErrorCount"=0x0,"Accumulated$ + | | | | "MaxCapacity" = 0x64 + | | | | "InstantAmperage" = 0xfffffffffffffbf4 + | | | | "PortControllerInfo" = ({"PortControllerLoserReason"=0x1,"PortControllerEvtBuffer"=<0103021a033f025f04f80003011a0340005ff800f80003021a033f025f03011a035ff8004000370231103702485f5e005f5e00400103021a033f025ff80003011a0340005ff800370231103702485f5e005f40015e0003021a033f025f04f80003011a0340005ff800370231103702485f5e005f40015e00>,"PortControllerIrqCntWakeAck"=0x254b,"PortControllerSlpWakIsSleepEnabled"=0x1,"PortControllerI2cErrCount"=0x0,"PortControllerIrqCntStsUpd"=0x26,"PortControllerFwVersion"=0x306300,"PortControlle$ + | | | | "GasGaugeFirmwareVersion" = 0x2 + | | | | "AdapterInfo" = 0x0 + | | | | "Location" = 0x0 + | | | | "Temperature" = 0xbff + | | | | "AvgTimeToEmpty" = 0x9f + | | | | "BestAdapterIndex" = 0x0 + | | | | "DesignCapacity" = 0x11d3 + | | | | "IsCharging" = No + | | | | "PermanentFailureStatus" = 0x0 + | | | | "Voltage" = 0x2e6b + | | | | "UserVisiblePathUpdated" = 0x681e56a5 + | | | | "CycleCount" = 0x18 + | | | | "AppleRawMaxCapacity" = 0x1210 + | | | | "VirtualTemperature" = 0xd3d + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | { + | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o uart0@91200000 + | | | | { + | | | | "compatible" = <756172742d312c73616d73756e6700> + | | | | "clock-ids" = <9d01000004000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "reg" = <00002091000000000040000000000000> + | | | | "clock-gates" = <4b000000> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <7561727400> + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x2a1200000,"length"=0x4000})) + | | | | "no-flow-control" = <> + | | | | "function-tx" = <700000004f495047a500000002010000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "uart-version" = <01000000> + | | | | "boot-console" = <> + | | | | "name" = <756172743000> + | | | | } + | | | | + | | | +-o AppleSamsungSerial + | | | | { + | | | | "IOClass" = "AppleSamsungSerial" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSamsungSerial" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOTTYBaseName" = "debug-console" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("uart-1,samsung") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "uart-1,samsung" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSamsungSerial" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSamsungSerial" + | | | | "IOTTYSuffix" = "" + | | | | } + | | | | + | | | +-o debug-console + | | | | { + | | | | "IOTTYBaseName" = "debug-console" + | | | | "serial state" = 0x0 + | | | | "serial flow control" = 0x0 + | | | | "serial parity" = 0x0 + | | | | "AAPL,phandle" = + | | | | "serial baud rate" = 0x0 + | | | | "HiddenPort" = Yes + | | | | "serial data width" = 0x0 + | | | | "IOTTYSuffix" = "" + | | | | "AppleOnboardSerialParent000000A7" = <> + | | | | "name" = <64656275672d636f6e736f6c6500> + | | | | "serial stop bits" = 0x0 + | | | | } + | | | | + | | | +-o AppleOnboardSerialBSDClient + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOMatchCategory" = "AppleOnboardSerialBSDClient" + | | | | "IOClass" = "AppleOnboardSerialBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOProviderClass" = "AppleOnboardSerialSync" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOSerialBSDClient + | | | { + | | | "IOClass" = "IOSerialBSDClient" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily" + | | | "IOProviderClass" = "IOSerialStreamSync" + | | | "IOTTYBaseName" = "debug-console" + | | | "IOSerialBSDClientType" = "IOSerialStream" + | | | "IOProbeScore" = 0x3e8 + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOTTYDevice" = "debug-console" + | | | "IOCalloutDevice" = "/dev/cu.debug-console" + | | | "IODialinDevice" = "/dev/tty.debug-console" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSerialFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSerialFamily" + | | | "IOTTYSuffix" = "" + | | | } + | | | + | | +-o dockchannel-uart@D4128000 + | | | | { + | | | | "compatible" = <6161706c2c646f636b2d6368616e6e656c7300> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "reg" = <008012d400000000000001000000000000c010d4000000000010000000000000> + | | | | "AAPL,phandle" = + | | | | "max-aop-clk" = <00882a11> + | | | | "dock-wstat-mask" = + | | | | "enable-sw-drain" = <01000000> + | | | | "device_type" = <646f636b6368616e6e656c00> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x2e4128000,"length"=0x10000}),({"address"=0x2e410c000,"length"=0x1000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <646f636b6368616e6e656c2d7561727400> + | | | | } + | | | | + | | | +-o AppleSerialShim + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSerialShim" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleSerialShim" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSerialShim" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSerialShim" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dockchannel-uart") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dockchannel-uart" + | | | } + | | | + | | +-o dockchannel-mtp@EAB00000 + | | | | { + | | | | "channel-name" = <6368616e6e656c3000> + | | | | "compatible" = <646f636b6368616e6e656c2c743830303200> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <38030000> + | | | | "reg" = <0000b0ea0000000000100000000000000040b1ea0000000000100000000000000000b3ea0000000000100000000000000040b3ea0000000000100000000000000080b2ea00000000001000000000000000c0b2ea000000000010000000000000> + | | | | "AAPL,phandle" = + | | | | "IOInterruptSpecifiers" = (<38030000>) + | | | | "dock-wstat-mask" = + | | | | "device_type" = <646f636b6368616e6e656c2d6d747000> + | | | | "fifo-size" = <00080000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IODeviceMemory" = (({"address"=0x2fab00000,"length"=0x1000}),({"address"=0x2fab14000,"length"=0x1000}),({"address"=0x2fab30000,"length"=0x1000}),({"address"=0x2fab34000,"length"=0x1000}),({"address"=0x2fab28000,"length"=0x1000}),({"address"=0x2fab2c000,"length"=0x1000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <646f636b6368616e6e656c2d6d747000> + | | | | "channel-number" = <00000000> + | | | | } + | | | | + | | | +-o AppleDockChannel + | | | | { + | | | | "IOClass" = "AppleDockChannel" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDockChannel" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "channel-name" = "channel0" + | | | | "IOUserClientClass" = "AppleDockChannelUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dockchannel,t8002" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dock-wstat-mask" = 0xfff + | | | | "IONameMatched" = "dockchannel,t8002" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDockChannel" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDockChannel" + | | | | } + | | | | + | | | +-o mtp-transport + | | | | { + | | | | "hid-merge-personality" = <4d54505f53595300> + | | | | "compatible" = <6168742d68696265726e61746f7200> + | | | | "aud-early-boot-critical" = <> + | | | | "iommu-parent" = + | | | | "image-tag" = <6670746d> + | | | | "AAPL,phandle" = + | | | | "AIDImageDownloadersCreated" = Yes + | | | | "device_type" = <6d74702d7472616e73706f727400> + | | | | "role" = <4d545000> + | | | | "hibernator-target" = <4170706c654849445472616e73706f72744465766963654649464f00> + | | | | "hid-transport-mux" = <6d74702d616f702d6d757800> + | | | | "name" = <6d74702d7472616e73706f727400> + | | | | } + | | | | + | | | +-o AppleHIDTransportHibernator + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "IOProviderClass" = "IOService" + | | | | "IOClass" = "AppleHIDTransportHibernator" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("aht-hibernator") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "aht-hibernator" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x1 + | | | | "AIDLoadMs" = 0x1f09 + | | | | "KernelClientRequestTimeMs" = 0xe73 + | | | | "LoadingGroup" = 0x1 + | | | | "AHTLoaderName" = "mtp-transport" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x6d747066 + | | | | "UserSpaceRequestTimeMs" = 0x2 + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x0 + | | | | "AIDLoadMs" = 0x1f0b + | | | | "KernelClientRequestTimeMs" = 0xea8 + | | | | "LoadingGroup" = 0x0 + | | | | "AHTLoaderName" = "multi-touch" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x6d746677 + | | | | "UserSpaceRequestTimeMs" = 0x34 + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x0 + | | | | "AIDLoadMs" = 0x1f43 + | | | | "KernelClientRequestTimeMs" = 0xeac + | | | | "LoadingGroup" = 0x0 + | | | | "AHTLoaderName" = "stm" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x69706466 + | | | | "UserSpaceRequestTimeMs" = 0x1 + | | | | } + | | | | + | | | +-o AppleHIDTransportDeviceFIFO + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleHIDTransport","IOReportChannels"=((0x5245534554434e54,0x101080001,"ResetCount"),(0x5754444f47434e54,0x101080001,"WatchdogResetCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="DeviceReset"}) + | | | | "MemoryFIFOs" = ({"Address"=0x10000028000,"Size"=0x200000}) + | | | | "IOUserClientClass" = "AppleHIDTransportDeviceUserClient" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "ResetCount" = 0x0 + | | | | } + | | | | + | | | +-o AppleHIDTransportBootloaderRTBuddy + | | | | { + | | | | "Config" = {"Protocol"="SCMFIFO","Interfaces"=({"bInterfaceNumber"=0x0,"InterfaceName"="comm"},{"bInterfaceNumber"=0x6,"AsyncRegistration"=Yes,"Reporters"=({"ReportID"=0xea,"SubgroupName"="mtp","Categories"=("Performance","Field"),"Type"="Simple","AbsoluteValues"=No,"ReportLength"=0x3f7,"Channels"=({"Offset"=0x7,"Name"="mtp.BLACK_BOX.UNKNOWN","Type"="Counter","Size"=0x4},{"Offset"=0xb,"Name"="mtp.BLACK_BOX.BAD_MODULE_ID","Type"="Counter","Size"=0x4},{"Offset"=0xf,"Name"="mtp.BLACK_BOX.BAD_EVENT_ID","Type"="Counter","Siz$ + | | | | "hid-merge-personality" = "MTP_SYS" + | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | "image-tag" = 0x6d747066 + | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | "AHTBootloadLoadImageStart" = 0x1f0a + | | | | "AHTBootloadLoadImageEnd" = 0x1f0a + | | | | "Supports Memory Dump" = No + | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | } + | | | | + | | | +-o AppleHIDTransportProtocolSCMFIFO + | | | | { + | | | | } + | | | | + | | | +-o comm + | | | | { + | | | | "PowerState" = 0x0 + | | | | "bInterfaceNumber" = 0x0 + | | | | "LocationId" = 0xaa + | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | "InterfaceName" = "comm" + | | | | "InterfaceType" = "Management" + | | | | } + | | | | + | | | +-o mtp + | | | | | { + | | | | | "Reporters" = ({"ReportID"=0xea,"SubgroupName"="mtp","Categories"=("Performance","Field"),"Type"="Simple","AbsoluteValues"=No,"ReportLength"=0x3f7,"Channels"=({"Offset"=0x7,"Name"="mtp.BLACK_BOX.UNKNOWN","Type"="Counter","Size"=0x4},{"Offset"=0xb,"Name"="mtp.BLACK_BOX.BAD_MODULE_ID","Type"="Counter","Size"=0x4},{"Offset"=0xf,"Name"="mtp.BLACK_BOX.BAD_EVENT_ID","Type"="Counter","Size"=0x4},{"Offset"=0x13,"Name"="mtp.BLACK_BOX.BAD_BUFFER_SZ","Type"="Counter","Size"=0x4},{"Offset"=0x17,"Name"="mtp.BLACK_BOX.THROW_EXTERNA$ + | | | | | "InterfaceType" = "HID" + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x0,0x101080001,"mtp.BLACK_BOX.UNKNOWN"),(0x1,0x101080001,"mtp.BLACK_BOX.BAD_MODULE_ID"),(0x2,0x101080001,"mtp.BLACK_BOX.BAD_EVENT_ID"),(0x3,0x101080001,"mtp.BLACK_BOX.BAD_BUFFER_SZ"),(0x4,0x101080001,"mtp.BLACK_BOX.THROW_EXTERNAL"),(0x5,0x101080001,"mtp.DRAM.REGISTER_FAILURE"),(0x6,0x101080001,"mtp.DRAM.ASSIGN_VM_FAILURE"),(0x7,0x101080001,"mtp.DRAM.UNREGISTER_FAILURE"),(0x8,0x101080001,"mtp.HSP_SPI.ACK_SENT"),(0x9,0x101080001,"mtp.HSP_SPI.NAK_SENT")$ + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LocationId" = 0xaa + | | | | | "InterfaceName" = "mtp" + | | | | | "bInterfaceNumber" = 0x6 + | | | | | "HIDDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5f}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x5f + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x20,"Min"=0x0,"Flags"=0x22,"ReportID"=0xe0,"Usage"=0x5f,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x20,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0x5f},{"VariableSize"=0x0,"Uni$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xe0,0x100020001,"Report 224")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xe0,"ElementCookie"=0x7,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x1 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0x5f + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5f}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x5 + | | | | } + | | | | + | | | +-o multi-touch + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "hid-merge-personality" = <43314644312c3200> + | | | | | "NotifyPowerStateChange" = Yes + | | | | | "image-tag" = <7766746d> + | | | | | "AAPL,phandle" = + | | | | | "PowerState" = "On" + | | | | | "ExternalResources" = {"afe-reset"=0xa7} + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "function-afe-reset" = <9f00000034574b703830506700000100> + | | | | | "NotifyAllResets" = No + | | | | | "IOReportLegendPublic" = Yes + | | | | | "PowerMethod" = 0x2 + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "name" = <6d756c74692d746f75636800> + | | | | | "HIDDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "bootloader-type" = <43424f5200> + | | | | | "Reporters" = ({"ReportID"=0x7e,"SubgroupName"="Trackpad Power State Time (ms)","Categories"=("Power"),"Type"="Simple","AbsoluteValues"=Yes,"ReportLength"=0x81,"ClearReportZeroPad"=Yes,"GroupName"="Trackpad Power Stats","Channels"=({"Offset"=0x1,"Name"="Unknown","Type"="Counter","Size"=0x8},{"Offset"=0x9,"Name"="Active","Type"="Counter","Size"=0x8},{"Offset"=0x11,"Name"="Ready","Type"="Counter","Size"=0x8},{"Offset"=0x19,"Name"="Rsv","Type"="Counter","Size"=0x8},{"Offset"=0x21,"Name"="Rsv","Type"="Counter","Size"=0x8}$ + | | | | | "reset-sequence" = <66756e6374696f6e2d6166652d72657365740032000100> + | | | | | "bInterfaceNumber" = 0x1 + | | | | | "LocationId" = 0xaa + | | | | | "AsyncRegistration" = No + | | | | | "power-sequence" = <66756e6374696f6e2d6166652d72657365740000320001> + | | | | | "aud-early-boot-critical" = <> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Trackpad Power Stats","IOReportChannels"=((0x0,0x100020001,"Unknown"),(0x1,0x100020001,"Active"),(0x2,0x100020001,"Ready"),(0x3,0x100020001,"Rsv"),(0x4,0x100020001,"Rsv"),(0x5,0x100020001,"Rsv"),(0x6,0x100020001,"Rsv"),(0x7,0x100020001,"Rsv"),(0x8,0x100020001,"Rsv"),(0x9,0x100020001,"Anticip"),(0xa,0x100020001,"Diag"),(0xb,0x100020001,"Rsv"),(0xc,0x100020001,"Rsv"),(0xd,0x100020001,"Rsv"),(0xe,0x100020001,"Rsv"),(0xf,0x100020001,"ForceOnly")),"IOReportChannelInfo"={"IOReportCh$ + | | | | | "device_type" = <6d756c74692d746f75636800> + | | | | | "InterfaceName" = "multi-touch" + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportBootloaderCBOR + | | | | | { + | | | | | "Config" = {"Always Powered"=Yes,"Interface Config"=({"Reporters"=({"ReportID"=0x7e,"SubgroupName"="Trackpad Power State Time (ms)","Categories"=("Power"),"Type"="Simple","AbsoluteValues"=Yes,"ReportLength"=0x81,"ClearReportZeroPad"=Yes,"GroupName"="Trackpad Power Stats","Channels"=({"Offset"=0x1,"Name"="Unknown","Type"="Counter","Size"=0x8},{"Offset"=0x9,"Name"="Active","Type"="Counter","Size"=0x8},{"Offset"=0x11,"Name"="Ready","Type"="Counter","Size"=0x8},{"Offset"=0x19,"Name"="Rsv","Type"="Counter","Size"=0x8},{"$ + | | | | | "hid-merge-personality" = "C1FD1,2" + | | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | | "image-tag" = 0x6d746677 + | | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | | "AHTBootloadLoadImageStart" = 0x1f3f + | | | | | "AHTBootloadLoadImageEnd" = 0x1f3f + | | | | | "Supports Memory Dump" = No + | | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x6d8 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "RequiresTCCAuthorization" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "Built-In" = Yes + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "FirstInputReceived" = Yes + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x0,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x9,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x2,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x2,0x100020001,"Report 2"),(0x3f,0x100020001,"Report 63"),(0x44,0x100020001,"Report 68")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0x2,"ElementCookie"=0x6ec,"Size"=0x40,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x40,"Usage"=0x0},{"ReportID"=0x3f,"ElementCookie"=0x6ed,"Size"=0x88,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x88,"Usage"=0x0},{"ReportID"=0x44,"ElementCookie"=0x6ee,"Size"=0x36c0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x36c0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0xaa + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x6d8 + | | | | | } + | | | | | + | | | | +-o AppleMultitouchTrackpadHIDEventDriver + | | | | | { + | | | | | "mt-device-id" = 0x7000000000000aa + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "SensorProperties" = {} + | | | | | "BuildAMDAtStart" = Yes + | | | | | "ApplePreferencesDefaultPreferences" = {"TrackpadPinch"=0x1,"TrackpadFourFingerVertSwipeGesture"=0x2,"ActuateDetents"=0x1,"FirstClickThreshold"=0x1,"SecondClickThreshold"=0x1,"TrackpadFourFingerPinchGesture"=0x2,"TrackpadHorizScroll"=0x1,"TrackpadMomentumScroll"=Yes,"TrackpadRotate"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"Clicking"=0x0,"TrackpadScroll"=Yes,"DragLock"=0x0,"TrackpadFiveFingerPinchGesture"=0x2,"ForceSuppressed"=No,"TrackpadThreeFingerVertSwipeGesture"=0x2,"Dragging"=0x0,"TrackpadCornerSecon$ + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "DebugState" = {"LastReportTime"=0x1a84328d84f} + | | | | | "Built-In" = Yes + | | | | | "HIDPointerResolution" = 0x1900000 + | | | | | "RelativePointer" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7f,"IsArray"=No,"Type"=0x1,"Size"=0x8,"Min"=0xffffffffffffff81,"Flags"=0x8000006,"ReportID"=0x2,"Usage"=0x30,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x8,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0xffffffffffffff81,"IsWrapping"=No,"ScaledMax"=0x7f,"ElementCookie"=0x6e9},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7f,"IsArray"=No,"Type"=$ + | | | | | "MTEventSource" = Yes + | | | | | "DoReportIntervalHack" = Yes + | | | | | "SupportReportInfo" = No + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Transport" = "FIFO" + | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration" + | | | | | "HIDScrollAccelerationTable" = <000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f00810$ + | | | | | "HIDDisallowRemappingOfPrimaryClick" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration" + | | | | | "TrackpadEmbedded" = Yes + | | | | | "ApplePreferenceCapability" = 0x2 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "ApplePreferenceIdentifier" = "com.apple.AppleMultitouchTrackpad" + | | | | | "HIDScrollResolution" = 0x1900000 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "ReenumerateOnInit" = Yes + | | | | | "ProductID" = 0x0 + | | | | | "UnleashUnsupported" = Yes + | | | | | "DefaultMultitouchProperties" = {"HIDScrollAccelerationType"="HIDTrackpadScrollAcceleration","SupportsGestureScrolling"=Yes,"parser-type"=0x3e8,"HIDScrollResolutionX"=0x1900000,"HSTouchHIDService"=Yes,"HIDScrollResolutionY"=0x1900000,"HIDScrollAccelerationTable"=<000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b61500$ + | | | | | "ReportInterval" = 0x1f40 + | | | | | "HIDPointerButtonCount" = 0x3 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "IOCFPlugInTypes" = {"0516B563-B15B-11DA-96EB-0014519758EF"="AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin"} + | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x76666,"HIDAccelTangentSpeedParabolicRoot"=0x150000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xfd71,"HIDAccelTangentSpeedLinear"=0x74ccd,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x8000,"HIDAccelTangentSpeedParabolicRoot"=0x140000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xfae1,"HIDAccelTangentSpeedLinear"=0x73333,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0xa8f6,"HIDAccelTangentSpeedParabolicRoot"=0x130000,"H$ + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "LocationID" = 0xaa + | | | | | "HIDPointerAccelerationTable" = <000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c$ + | | | | | "HIDServiceSupport" = No + | | | | | "IOClass" = "AppleMultitouchTrackpadHIDEventDriver" + | | | | | "HIDScrollAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x60000,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xf333,"HIDAccelTangentSpeedLinear"=0x63333,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0x999a,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xe666,"HIDAccelTangentSpeedLinear"=0x66666,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0xe666,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinear"=0xd99a,$ + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "SensorPropertySupported" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CountryCode" = 0x0 + | | | | | "IOProbeScore" = 0x898 + | | | | | "PrimaryUsage" = 0x2 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o AppleMultitouchDevice + | | | | | { + | | | | | "Sensor Surface Descriptor" = + | | | | | "HIDPointerAccelerationTable" = <000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d000000$ + | | | | | "Multitouch ID" = 0x7000000000000aa + | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x76666,"HIDAccelTangentSpeedParabolicRoot"=0x150000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xfd71,"HIDAccelTangentSpeedLinear"=0x74ccd,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x8000,"HIDAccelTangentSpeedParabolicRoot"=0x140000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xfae1,"HIDAccelTangentSpeedLinear"=0x73333,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0xa8f6,"HIDAccelTangentSpeedParabolicRoot"=0x130000,$ + | | | | | "HIDScrollResolution" = 0x1900000 + | | | | | "Sensor Surface Height" = 0x1cf0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "parser-options" = 0x27 + | | | | | "TrackpadThreeFingerDrag" = Yes + | | | | | "HIDScrollResolutionY" = 0x1900000 + | | | | | "SupportsSilentClick" = No + | | | | | "VersionNumber" = 0x0 + | | | | | "Sensor Region Descriptor" = <0201001001001a00021002010c0200> + | | | | | "HSTouchHIDService" = Yes + | | | | | "Sensor Surface Width" = 0x2fa2 + | | | | | "IOClass" = "AppleMultitouchDevice" + | | | | | "Critical Errors" = 0x0 + | | | | | "SupportsGestureScrolling" = Yes + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Multitouch","IOReportChannels"=((0x4672616d44726f70,0x100080001,"Frames dropped")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Drop packets"}) + | | | | | "IOUserClientClass" = "AppleMultitouchDeviceUserClient" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "bcdVersion" = 0x760 + | | | | | "parser-type" = 0x3e8 + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "TrackpadSecondaryClickCorners" = Yes + | | | | | "ForceSupported" = Yes + | | | | | "MultitouchPreferences" = {"TrackpadHandResting"=Yes,"TrackpadPinch"=0x1,"TrackpadFourFingerVertSwipeGesture"=0x2,"USBMouseStopsTrackpad"=0x0,"ActuateDetents"=0x1,"FirstClickThreshold"=0x1,"SecondClickThreshold"=0x1,"TrackpadFourFingerPinchGesture"=0x2,"TrackpadHorizScroll"=0x1,"TrackpadMomentumScroll"=Yes,"TrackpadRotate"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"Clicking"=Yes,"TrackpadTwoFingerDoubleTapGesture"=0x1,"UserPreferences"=Yes,"TrackpadScroll"=Yes,"DragLock"=0x0,"TrackpadFiveFingerPinchGestur$ + | | | | | "Max Packet Size" = 0x1000 + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ResetCount" = 0x0 + | | | | | "VendorID" = 0x0 + | | | | | "EnumerationReason" = 0x1 + | | | | | "TrackpadFourFingerGestures" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Endianness" = 0x1 + | | | | | "ProductID" = 0x0 + | | | | | "Sensor Rows" = 0x12 + | | | | | "HIDScrollResolutionX" = 0x1900000 + | | | | | "HIDPointerResolution" = 0x1900000 + | | | | | "HIDScrollResolutionZ" = 0x1900000 + | | | | | "Critical Errors Accumulator" = 0x0 + | | | | | "Family ID" = 0x6e + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "MT Built-In" = Yes + | | | | | "Sensor Region Param" = <000004000002> + | | | | | "EnumerationReasonString" = "Build at start" + | | | | | "HIDScrollAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x60000,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xf333,"HIDAccelTangentSpeedLinear"=0x63333,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0x999a,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xe666,"HIDAccelTangentSpeedLinear"=0x66666,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0xe666,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinear"=0xd99$ + | | | | | "DisablerPresent" = No + | | | | | "HIDScrollAccelerationTable" = <000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f008$ + | | | | | "TrackpadMomentumScroll" = Yes + | | | | | "ActuationSupported" = Yes + | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration" + | | | | | "MTPowerStatsDisable" = Yes + | | | | | "Transport" = "FIFO" + | | | | | "Sensor Columns" = 0x1a + | | | | | "MTHIDDevice" = Yes + | | | | | "VendorIDSource" = 0x0 + | | | | | "HIDPointerReportRate" = 0x78 + | | | | | "Manufacturer" = "Apple" + | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration" + | | | | | "UseProviderWorkLoop" = Yes + | | | | | "CountryCode" = 0x0 + | | | | | "LocationID" = 0xaa + | | | | | } + | | | | | + | | | | +-o AppleMultitouchDeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o stm + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "hid-merge-personality" = <49504400> + | | | | | "NotifyPowerStateChange" = Yes + | | | | | "image-tag" = <66647069> + | | | | | "AAPL,phandle" = + | | | | | "PowerState" = 0x0 + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "ExternalResources" = {"stm-reset"=0xa8} + | | | | | "NotifyAllResets" = No + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerMethod" = 0x2 + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "name" = <73746d00> + | | | | | "HIDDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "bootloader-type" = <48494444657669636500> + | | | | | "function-stm-reset" = <9f00000034574b703831506700000100> + | | | | | "reset-sequence" = <66756e6374696f6e2d73746d2d72657365740032000100> + | | | | | "bInterfaceNumber" = 0x3 + | | | | | "LocationId" = 0xaa + | | | | | "AsyncRegistration" = No + | | | | | "aud-early-boot-critical" = <> + | | | | | "device_type" = <73746d00> + | | | | | "InterfaceName" = "stm" + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportBootloaderHIDDevice + | | | | | { + | | | | | "Config" = {"MTP"=Yes} + | | | | | "hid-merge-personality" = "IPD" + | | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | | "image-tag" = 0x69706466 + | | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | | "AHTBootloadLoadImageStart" = 0x1f43 + | | | | | "AHTBootloadLoadImageEnd" = 0x1f43 + | | | | | "Supports Memory Dump" = No + | | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x20,"Min"=0x0,"Flags"=0x22,"ReportID"=0xe0,"Usage"=0xb,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x20,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0xb},{"VariableSize"=0x0,"UnitE$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "ExtendedData" = (0x30109a1,0x30209a1,0x30309a1,0x30409a1,0x33409a1,0x3b009a1,0x3b109a1,0x3b209a1,0x3b309a1,0x3b609a1,0x3bd09a1,0x3d409a1) + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xe0,0x100020001,"Report 224")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xe0,"ElementCookie"=0x7,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x5 + | | | | | } + | | | | | + | | | | +-o AppleDeviceManagementHIDEventService + | | | | | { + | | | | | "IOClass" = "AppleDeviceManagementHIDEventService" + | | | | | "HardwareID" = 0x1 + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "WakeReason" = "Host (0x01)" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "IOProbeScore" = 0x898 + | | | | | "VendorIDSource" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notific$ + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "ProductID" = 0x357 + | | | | | "BootLoaderFW Version" = 0x100 + | | | | | "SerialNumber" = "FM7HDK0ATYF0000F96+AYTN" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "STFW Version" = 0x460 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ColorID" = 0x8 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o keyboard + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "AAPL,phandle" = + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "device_type" = <6b6579626f61726400> + | | | | | "LocationId" = 0xaa + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "InterfaceName" = "keyboard" + | | | | | "kblang-calibration" = <010531d7a82800000000000000000000> + | | | | | "bInterfaceNumber" = 0x2 + | | | | | "name" = <6b6579626f61726400> + | | | | | "HIDDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxInputReportSize" = 0x41 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "ReportDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "RequiresTCCAuthorization" = Yes + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Transport" = "FIFO" + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0xe},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"Usag$ + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "Manufacturer" = "Apple" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x12b,"Size"=0x50,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x50,"Usage"=0x0},{"ReportID"=0x52,"ElementCookie"=0x12c,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x9,"ElementCookie"=0x12d,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x3f,"ElementCookie"=0x12e,"Size"=0x208,"ReportCou$ + | | | | | "ReportInterval" = 0x1f40 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LocationID" = 0xaa + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x6 + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x52,0x100020001,"Report 82"),(0x9,0x100020001,"Report 9"),(0x3f,0x100020001,"Report 63")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "FirstInputReceived" = Yes + | | | | | "IOProbeScore" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0x6 + | | | | | "LocationID" = 0xaa + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x41 + | | | | | } + | | | | | + | | | | +-o AppleHIDKeyboardEventDriverV2 + | | | | | { + | | | | | "LocationID" = 0xaa + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "Keyboard" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0xe},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"$ + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CapsLockLanguageSwitch" = No + | | | | | "HIDServiceSupport" = Yes + | | | | | "FnKeyboardUsageMap" = "0x00070050,0x0007004a,0x00070052,0x0007004b,0x0007002a,0x0007004c,0x0007004f,0x0007004d,0x00070051,0x0007004e,0x00070028,0x00070058" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProbeScore" = 0x898 + | | | | | "FnFunctionUsageMap" = "0x0007003a,0x00ff0005,0x0007003b,0x00ff0004,0x0007003c,0xff010010,0x0007003d,0x000c0221,0x0007003e,0x000c00cf,0x0007003f,0x0001009b,0x00070040,0x000c00b4,0x00070041,0x000c00cd,0x00070042,0x000c00b3,0x00070043,0x000c00e2,0x00070044,0x000c00ea,0x00070045,0x000c00e9" + | | | | | "IOClass" = "AppleHIDKeyboardEventDriverV2" + | | | | | "FnFunctionTable" = {"no-fn-cl"=<1616>,"fn"=<010602070311041905180617070a080c090b0a0d0b0e0c0f>,"fn-cl"=<010602070311041905180617070a080c090b0a0d0b0e0c0f1616>,"fn-right-to-left"=<010702060311041905180617070a080c090b0a0f0b0e0c0d>} + | | | | | "GameControllerPointer" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x123},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Fl$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "KBLanguageTable" = ({"StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x2},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x0},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn-cl","StandardType"=0x0},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn$ + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDKeyboard" + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "FnModifierUsage" = 0x3 + | | | | | "AppleVendorSupported" = Yes + | | | | | "ReportInterval" = 0x1f40 + | | | | | "VendorID" = 0x0 + | | | | | "StandardType" = 0x0 + | | | | | "KeyboardEnabled" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDKeyboard" + | | | | | "SupportsGlobeKey" = Yes + | | | | | "SensorProperties" = {} + | | | | | "ProductID" = 0x0 + | | | | | "alt_handler_id" = 0x5b + | | | | | "HIDKeyboardSupportedModifiers" = 0x19e20ff + | | | | | "HandlerIDTable" = (0x5b,0x5c,0x5d) + | | | | | "SupportsSiriKey" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "FnModifierUsagePage" = 0xff + | | | | | "HIDEventServiceProperties" = {"HIDCapsLockStateCache"=Yes,"HIDStickyKeysOn"=0x0,"HIDKeyRepeat"=0x4f790d5,"TrackpadHorizScroll"=0x1,"LogLevel"=0x6,"HIDMouseKeysOptionToggles"=0x0,"MouseTwoFingerHorizSwipeGesture"=0x2,"JitterNoClick"=0x1,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MouseMomentumScroll"=Yes,"PreserveTimestamp"=Yes,"HIDDefaultParameters"=Yes,"UnifiedKeyMapping"=No,"HIDPointerButtonMode"=0x2,"HIDScrollZoomModifierMask"=0x0,"HIDMouseKeysOn"=0x0,"TrackpadFourFingerVertSwipeGesture"=0x2,"Tr$ + | | | | | "KeyboardLanguage" = "U.S." + | | | | | "GameControllerType" = 0x0 + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LED" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x123},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"Re$ + | | | | | "PrimaryUsage" = 0x6 + | | | | | "HIDKeyboardKeysDefined" = Yes + | | | | | "NumLockKeyboardUsageMap" = "0x00070029,0x00070029,0x0007002a,0x0007002a,0x0007002b,0x0007002b,0x0007003a,0x0007003a,0x0007003b,0x0007003b,0x0007003c,0x0007003c,0x0007003d,0x0007003d,0x0007003e,0x0007003e,0x0007003f,0x0007003f,0x00070040,0x00070040,0x00070041,0x00070041,0x00070042,0x00070042,0x00070043,0x00070043,0x00070044,0x00070044,0x00070045,0x00070045,0x0007004a,0x0007004a,0x0007004b,0x0007004b,0x0007004c,0x0007004c,0x0007004d,0x0007004d,0x0007004e,0x0007004e,0x0007004f,0x0007004f,0x00070050,0x00070050,0x00$ + | | | | | "HIDKeyboardSupportsDoNotDisturbKey" = No + | | | | | "HIDKeyboardSupportsEscKey" = Yes + | | | | | "Transport" = "FIFO" + | | | | | "kblang-calibration-valid" = Yes + | | | | | "HIDRestoreKBDState" = 0x1 + | | | | | "VendorIDSource" = 0x0 + | | | | | "Manufacturer" = "Apple" + | | | | | "SensorPropertySupported" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "DebugState" = {"LastReportTime"=0x7eb86ba3d} + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x980,"NotificationForce"=0x0,"NotificationCount"=0xbb22,"head"=0x980},"EnqueueEventCount"=0xbc26,"LastEventType"=0x3,"LastEventTime"=0x7ebb21532} + | | | | } + | | | | + | | | +-o tp-accel + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "AAPL,phandle" = + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "device_type" = <74702d616363656c00> + | | | | | "LocationId" = 0xaa + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "InterfaceName" = "tp-accel" + | | | | | "bInterfaceNumber" = 0x5 + | | | | | "name" = <74702d616363656c00> + | | | | | "HIDDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x6c + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x358,"Min"=0x0,"Flags"=0x2,"ReportID"=0xc0,"Usage"=0x3,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x358,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0x3},{"VariableSize"=0x0,"Uni$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xc0,0x100020001,"Report 192")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xc0,"ElementCookie"=0x7,"Size"=0x360,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x360,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x1 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0x3 + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x6c + | | | | } + | | | | + | | | +-o actuator + | | | | { + | | | | "InterfaceType" = "HID" + | | | | "AAPL,phandle" = + | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PowerState" = 0x0 + | | | | "AsyncRegistration" = No + | | | | "device_type" = <6163747561746f7200> + | | | | "LocationId" = 0xaa + | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | "InterfaceName" = "actuator" + | | | | "bInterfaceNumber" = 0x4 + | | | | "name" = <6163747561746f7200> + | | | | "HIDDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | } + | | | | + | | | +-o AppleHIDTransportHIDDevice + | | | | { + | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | "Transport" = "FIFO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "MaxInputReportSize" = 0x10 + | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | "Manufacturer" = "Apple" + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "Built-In" = Yes + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "IOProbeScore" = 0x0 + | | | | "ReportDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | "MaxOutputReportSize" = 0x40 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | "PrimaryUsage" = 0xd + | | | | "LocationID" = 0xaa + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x78,"Min"=0x0,"Flags"=0x2,"ReportID"=0x3f,"Usage"=0xd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x78,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x8},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"Usa$ + | | | | "ModelNumber" = "Mac15,12" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x3f,0x100020001,"Report 63"),(0x53,0x100020001,"Report 83")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "InputReportElements" = ({"ReportID"=0x3f,"ElementCookie"=0xa,"Size"=0x80,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x80,"Usage"=0x0},{"ReportID"=0x53,"ElementCookie"=0xb,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x40 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0xd + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x10 + | | | | } + | | | | + | | | +-o AppleActuatorHIDEventDriver + | | | | { + | | | | "IOClass" = "AppleActuatorHIDEventDriver" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleActuatorDriver" + | | | | "IOProviderClass" = "IOHIDInterface" + | | | | "DefaultActuatorProperties" = {"ActuatorRevision"=0xc} + | | | | "IOProbeScore" = 0x898 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "SupportReportInfo" = No + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | "Transport" = "FIFO" + | | | | "InterfaceAvailableOnPowerTreeWake" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleActuatorDriver" + | | | | } + | | | | + | | | +-o AppleActuatorDevice + | | | | { + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "ActuatorLimits" = {"DurationMax"=0x8,"AmplitudeMin"=0x0,"DurationMin"=0x4,"AmplitudeMax"=0x46} + | | | | "ActuatorRevision" = 0xc + | | | | "IOUserClientClass" = "AppleActuatorDeviceUserClient" + | | | | "Transport" = "FIFO" + | | | | "LocationID" = 0xaa + | | | | "Multitouch Actuator ID" = 0x7000000000000aa + | | | | } + | | | | + | | | +-o AppleActuatorDeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mtp@EA400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<47030000>,<46030000>,<49030000>,<48030000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2fa400000,"length"=0x6c000}),({"address"=0x2fa050000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f4700> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6d747000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <47030000460300004903000048030000> + | | | | "clock-ids" = <> + | | | | "role" = <4d545000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <6d747000> + | | | | "power-gates" = <> + | | | | "reg" = <000040ea0000000000c0060000000000000005ea000000000040000000000000> + | | | | "segment-ranges" = <0000c0fa0200000000000001000000000000c0fa0200000000c005000300000000c0c5fa0200000000c005010000000000c0c5fa0200000000a00600020000000080d70a0001000000600c01000000000080d70a00010000002000000a000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "MTP" + | | | | } + | | | | + | | | +-o iop-mtp-nub + | | | | { + | | | | "sleep-on-hibernate" = <> + | | | | "uuid" = <31364144434546422d443746312d333035312d383636352d44424345413337353545453900> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f4700> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "KDebugCoreID" = 0x11 + | | | | "no-firmware-service" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0000c0fa0200000000000001000000000000c0fa0200000000c005000300000000c0c5fa0200000000c005010000000000c0c5fa0200000000a00600020000000080d70a0001000000600c01000000000080d70a00010000002000000a000000> + | | | | "name" = <696f702d6d74702d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(MTP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8002,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "FirmwareUUID" = "16adcefb-d7f1-3051-8665-dbcea3755ee9" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "AppleMTPFirmwareMac-4340.1~568" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "MTP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "MTP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | { + | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="MTP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="MTP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | "IOReportLegendPublic" = Yes + | | | } + | | | + | | +-o dart-mtp@EA808000 + | | | | { + | | | | "dart-id" = <09000000> + | | | | "IOInterruptSpecifiers" = (<36030000>) + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2fa808000,"length"=0x4000}),({"address"=0x2fa80c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000046504144000000004441504600000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "remap" = <020100000301000004010000> + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6d747000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <01000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <36030000> + | | | | "dapf-instance-0" = <00c028e4020000005fc028e40200000002000000000000000000000000000000000000000000000000000000000000000003010000c729e402000000a7c829e4020000000200000000000000000000000000000000000000000000000000000000000000000301006c001fe4020000007b001fe40200000002000000000000000000000000000000000000000000000000000000000000000003010000012de40200000013012de40200000002000000000000000000000000000000000000000000000000000000000000000003010020c02be40200000023c02be4020000000200000000000000000000000000000000000000000000000000000000000000$ + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b7010080000000001802000004000000fcffff3f00000000d4402e000000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008080ea00000000004000000000000000c080ea000000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000B2" = <> + | | | | } + | | | | + | | | +-o mapper-mtp@1 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "name" = <6d61707065722d6d747000> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o mtp-aop-mux + | | | { + | | | "device_type" = <6d74702d616f702d6d757800> + | | | "name" = <6d74702d616f702d6d757800> + | | | "AAPL,phandle" = + | | | "compatible" = <6869642d7472616e73706f72742c6d757800> + | | | } + | | | + | | +-o qspi@91118000 + | | | | { + | | | | "compatible" = <717370692c717370696d6300> + | | | | "clock-ids" = <88010000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <03030000> + | | | | "reg" = <0080119100000000004000000000000000881191000000000040000000000000> + | | | | "AAPL,phandle" = + | | | | "clock-gates" = <49000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <7173706900> + | | | | "#size-cells" = <07000000> + | | | | "IOInterruptSpecifiers" = (<03030000>) + | | | | "IODeviceMemory" = (({"address"=0x2a1118000,"length"=0x4000}),({"address"=0x2a1118800,"length"=0x4000})) + | | | | "#address-cells" = <01000000> + | | | | "spi-version" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <7173706900> + | | | | } + | | | | + | | | +-o AppleQSPIMCController + | | | | { + | | | | "IOClass" = "AppleQSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleQSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "qspi,qspimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "IONameMatched" = "qspi,qspimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleQSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleQSPIMC" + | | | | } + | | | | + | | | +-o spinor@0 + | | | | { + | | | | "ranges" = <000000000000000000001000> + | | | | "compatible" = <6e6f722d666c6173682c73706900> + | | | | "reg" = <0000000019000000000001080000000014000000000000000000000000000000> + | | | | "name" = <7370696e6f7200> + | | | | "IOUserClientClass" = "AppleARMQuadSPIDeviceUserClient" + | | | | "#address-cells" = <01000000> + | | | | "device_type" = <7370696e6f7200> + | | | | "AAPL,phandle" = + | | | | "#size-cells" = <01000000> + | | | | } + | | | | + | | | +-o AppleARMSPIFlashController + | | | | { + | | | | "IOClass" = "AppleARMSPIFlashController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "nor-flash,spi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "block-erase-supported" = Yes + | | | | "JEDEC-ID" = "0xef6517" + | | | | "IONameMatched" = "nor-flash,spi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | | } + | | | | + | | | +-o firmware@0 + | | | | | { + | | | | | "device_type" = <6669726d7761726500> + | | | | | "reg" = <00000000000002000000020000002c0000002e0000002c00> + | | | | | "IODeviceMemory" = () + | | | | | "name" = <6669726d7761726500> + | | | | | "AAPL,phandle" = + | | | | | "compatible" = <69626f6f742c626f6f7400> + | | | | | } + | | | | | + | | | | +-o AppleEmbeddedSimpleSPINORFlasherDriver + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | | "IOClass" = "AppleEmbeddedSimpleSPINORFlasherDriver" + | | | | "IOPersonalityPublisher" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "CFBundleIdentifierKernel" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iboot,boot" + | | | | "IOUserClientClass" = "AppleEmbeddedSimpleSPINORFlasherDriverUC" + | | | | "IONameMatched" = "iboot,boot" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o anvram@700000 + | | | | | { + | | | | | "device_type" = <616e7672616d00> + | | | | | "reg" = <0000700000001000> + | | | | | "IODeviceMemory" = () + | | | | | "name" = <616e7672616d00> + | | | | | "AAPL,phandle" = + | | | | | "compatible" = <6e7672616d2c6e6f7200> + | | | | | } + | | | | | + | | | | +-o AppleARMNORNVRAM + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | | "IOClass" = "AppleARMNORNVRAM" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "nvram,nor" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "nvram,nor" + | | | | } + | | | | + | | | +-o syscfg@5A0000 + | | | | { + | | | | "device_type" = <73797363666700> + | | | | "reg" = <00005a000020000000405a0000000200> + | | | | "IODeviceMemory" = () + | | | | "name" = <73797363666700> + | | | | "AAPL,phandle" = + | | | | "compatible" = <646961676e6f737469632d646174612c666f726d61743100> + | | | | } + | | | | + | | | +-o AppleDiagnosticDataAccessReadOnly + | | | { + | | | "IOClass" = "AppleDiagnosticDataAccessReadOnly" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDiagnosticDataAccessReadOnly" + | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | "IOProbeScore" = 0x63 + | | | "IONameMatch" = "diagnostic-data,format1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "AppleDiagnosticDataSysCfg" = + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003346> + | | | | "IOInterruptSpecifiers" = (<0e030000>) + | | | | "gpio-iic_scl" = <380000000201010041500000> + | | | | "gpio-iic_sda" = <370000000201010041500000> + | | | | "clock-gates" = <38000000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2a1018000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003446> + | | | | "name" = <6932633200> + | | | | "function-device_reset" = <820000005453524138000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0e030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00800191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o atcrt0@18 + | | | | | { + | | | | | "compatible" = <617463727400> + | | | | | "C Count" = 0x0 + | | | | | "atcrt-fw-personality" = <300000000000000022810007> + | | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | | "reg" = <18000000102700000000000000000000> + | | | | | "name" = <61746372743000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleTypeCRetimer + | | | | { + | | | | "IOClass" = "AppleTypeCRetimer" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTypeCRetimer" + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "IOUserClientClass" = "AppleTypeCRetimerUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "atcrt" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "atcrt-name" = "atcrt0" + | | | | "IONameMatched" = "atcrt" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTypeCRetimer" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTypeCRetimer" + | | | | } + | | | | + | | | +-o atcrt1@19 + | | | | { + | | | | "compatible" = <617463727400> + | | | | "C Count" = 0x0 + | | | | "atcrt-fw-personality" = <300000000000000022810107> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "reg" = <19000000102700000000000000000000> + | | | | "name" = <61746372743100> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleTypeCRetimer + | | | { + | | | "IOClass" = "AppleTypeCRetimer" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleTypeCRetimer" + | | | "IOProviderClass" = "AppleARMIICDevice" + | | | "IOUserClientClass" = "AppleTypeCRetimerUserClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "atcrt" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "atcrt-name" = "atcrt1" + | | | "IONameMatched" = "atcrt" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTypeCRetimer" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTypeCRetimer" + | | | } + | | | + | | +-o admac-sio@93200000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0b030000>) + | | | | "#dma-channels" = <0c000000> + | | | | "clock-gates" = <5200000041000000> + | | | | "irq-destination-index" = <01000000> + | | | | "channel-buffer-allocation" = <0040000000000000> + | | | | "channels-offset" = <28000000> + | | | | "AAPL,phandle" = + | | | | "irq-destinations" = <555043532043494144534e554b4c4353> + | | | | "IODeviceMemory" = (({"address"=0x2a3200000,"length"=0x34000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <99000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61646d61632d73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <61646d61632c743831323200> + | | | | "interrupts" = <0b030000> + | | | | "clock-ids" = <9201000055010000> + | | | | "role" = <204f4953> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61646d616300> + | | | | "power-gates" = <5200000041000000> + | | | | "reg" = <0000209300000000004003000000000000802ad4000000000800000000000000> + | | | | } + | | | | + | | | +-o IODMAController000000BD + | | | | { + | | | | "IOClass" = "AudioDMAController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AudioDMAController-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("admac,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x4144414749525143,0x100040001,"Aggregate Count"),(0x4144434f49525143,0x100040001,"Controller Count"),(0x4144434849525143,0x100040001,"Channel Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Interrupts"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x4144435442445020,0x2f00080003,"Timebase Offset (Positive)")),"IOReportChannelInfo"={"IOReportChannelConfig"= + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AudioDMAController-T8122" + | | | | "Critical LLT" = Yes + | | | | } + | | | | + | | | +-o SIO0TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO1TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO2TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543032,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543032,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO3TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO4TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Transferring" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO5TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO6TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO7TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO8TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO9TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOATX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOBTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO0RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO1RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO2RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523032,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523032,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO3RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO4RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO5RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523035,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523035,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO6RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO7RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO8RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO9RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOARX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOBRX + | | | { + | | | "IOClass" = "AudioDMAChannel" + | | | "IOProviderClass" = "AudioDMAController" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | "Direction" = "RX" + | | | "State" = "Uninitialized" + | | | } + | | | + | | +-o admac-aop-audio@E4980000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<9c010000>) + | | | | "#dma-channels" = <10000000> + | | | | "irq-destination-index" = <02000000> + | | | | "AAPL,phandle" = + | | | | "channel-buffer-allocation" = <0030000000000000> + | | | | "channels-offset" = <00000000> + | | | | "irq-destinations" = <5550434155504353204349414b4c4353> + | | | | "IODeviceMemory" = (({"address"=0x2f4980000,"length"=0x34000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <80000000> + | | | | "external-power" = <> + | | | | "light-my-fire" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61646d61632d616f702d617564696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <61646d61632c743831323200> + | | | | "interrupts" = <9c010000> + | | | | "clock-ids" = <0e010000> + | | | | "night-on-fire" = + | | | | "role" = <20415041> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61646d616300> + | | | | "reg" = <000098e400000000004003000000000000802ad4000000000800000000000000> + | | | | } + | | | | + | | | +-o IODMAController000000BE + | | | | { + | | | | "IOClass" = "AudioDMAController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AudioDMAController-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("admac,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x4144414749525143,0x100040001,"Aggregate Count"),(0x4144434f49525143,0x100040001,"Controller Count"),(0x4144434849525143,0x100040001,"Channel Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Interrupts"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x4144435442445020,0x2f00080003,"Timebase Offset (Positive)")),"IOReportChannelInfo"={"IOReportChannelConfig"= + | | | | } + | | | | + | | | +-o APA0TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA1TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA2TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA3TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA4TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o APA5TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA6TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA7TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA8TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA9TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAATX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APABTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APACTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APADTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAETX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAFTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA0RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Transferring" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o APA1RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA2RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA3RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA4RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Idle" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o APA5RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA6RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA7RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA8RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA9RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAARX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APABRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APACRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APADRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAERX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAFRX + | | | { + | | | "IOClass" = "AudioDMAChannel" + | | | "IOProviderClass" = "AudioDMAController" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | "Direction" = "RX" + | | | "State" = "Uninitialized" + | | | } + | | | + | | +-o atc-phy0@2A90000 + | | | | { + | | | | "tunable_LN1_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_CLKMON_CFG" = <0c000020ff03000000020000> + | | | | "tunable_CIO3PLL_TOP" = <940000200001000000010000a0000020ff01000014010000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "tunable_LN0_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | "tunable_LN1_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_LN0_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "tunable_ATC0AXI2AF" = <0000002003020000010200000c000020ffff0f000068010010000020ffff0f0000b400003c000020ffffffffffff000040000020ffffffffffff0000080100203300ffff310010000c010020ffff0f000068010010010020ffff0f0000b40000000200207f00008040000080040200207f007f8008001280080200207f007f80080012800c0200207f007f8008001280100200207f007f8002001280140200207f007f8002001280180200207f007f80080012801c0200207f007f8008001280400200207f00008050000080440200207f007f8008002080480200207f007f80080020804c0200207f007f8008002080500200207f007f800800208054020$ + | | | | "IODeviceMemory" = (({"address"=0x702a90000,"length"=0x4000}),({"address"=0x702800000,"length"=0x4000}),({"address"=0x703044000,"length"=0x4000}),({"address"=0x703000000,"length"=0x4000}),({"address"=0x703000800,"length"=0x4000}),({"address"=0x703000a00,"length"=0x4000}),({"address"=0x703001000,"length"=0x4000}),({"address"=0x703002000,"length"=0x4000}),({"address"=0x703002200,"length"=0x4000}),({"address"=0x703002600,"length"=0x4000}),({"address"=0x703002800,"length"=0x4000}),({"address"=0x703002a00,"length"=0x4000}),({"addres$ + | | | | "tunable_LN0_RX_TOP_CIO_DFLT" = + | | | | "port-number" = <01000000> + | | | | "reg" = <0000a90207000000004000000000000000008002070000000040000000000000004004030700000000400000000000000000000307000000004000000000000000080003070000000040000000000000000a00030700000000400000000000000010000307000000004000000000000000200003070000000040000000000000002200030700000000400000000000000026000307000000004000000000000000280003070000000040000000000000002a00030700000000400000000000000040000307000000004000000000000000500003070000000010000000000000007000030700000000400000000000000090000307000000004000000000000000a000030700$ + | | | | "tunable_LN1_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_LN1_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "port-type" = <02000000> + | | | | "tunable_LN0_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_AUSCMN_SHM" = <040000207c0000004c000000> + | | | | "tunable_AUSPLL_CORE" = <24000020000c000000080000300000201f0000000f000000400000207f00180029000000b00000200000700800003000e40000200100060001000400340100200000800f000080074800002000ff010000280100> + | | | | "tunable_LN1_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable_LN1_RX_TOP_USB_EQA" = <> + | | | | "tunable_LN0_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "tunable_USB2PHY_HOST" = <080000200070000000000000> + | | | | "tunable_LN0_RX_TOP_USB_EQA" = <> + | | | | "tunable_USB2PHY_DEV" = <080000200070000000700000> + | | | | "tunable_ACIOPHY_LANE_USBC0" = <040000200000007c00000044> + | | | | "tunable_ACIOPHY_PLL_TOP" = <300000200080000000800000> + | | | | "tunable_LN0_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable_LN0_TX_TOP_USB_EQA" = <> + | | | | "tunable_LN1_TX_TOP_USB_EQA" = <> + | | | | "name" = <6174632d7068793000> + | | | | "AAPL,phandle" = + | | | | "tunable_LN1_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "compatible" = <6174632d7068792c743831323200> + | | | | "clock-gates" = <0002000070000000> + | | | | "tunable_LN0_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_ACIOPHY_TOP" = <0c0100200000040000000000> + | | | | "tunable_LN1_RX_TOP_CIO_DFLT" = + | | | | "tunable_LN0_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ACIOPHY_LANE_USBC1" = <040000200000007c00000044> + | | | | "tunable_AUX_TOP" = <0800002038000000080000000c0000201f00000000000000> + | | | | "tunable_LN1_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ATC_FABRIC" = <040000203f003f00200020000c000020f1000000a1000000100000201f80000004000000180000203f003f002000200020000020f1000000a1000000240000201f800000040000002c0000207f007f005200520034000020f1000000710000003800002001000000010000003c0000200100000001000000400000201f80000004000000480000201f00000010000000500000201f80000004000000580000207f007f004500450060000020f100000051000000640000201f800000040000006c0000203f00000020000000740000201f800000040000007c0000200100000001000000800000201f80000004000000880000203f003f00300030008c000$ + | | | | "tunable_LN0_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_CIO_SHIM" = <000000200007f0000000b000> + | | | | "device_type" = <6174632d70687900> + | | | | "tunable_CIO3PLL_CORE" = <0000002088080000880800000800002000001f000000030024000020000c00000008000028000020000f0000000b0000300000201f0000000f0000004c00002000fe7f00003e2500b00000200000700000003000e40000200000060000000200fc000020ff0f0000d8000000> + | | | | "tunable_AUSCMN_DIG" = <0000002000003f0000002300> + | | | | "tunable_LN1_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable-device" = <00000000080000000070000000000000> + | | | | "instance" = <00000000> + | | | | "tunable_LN0_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable-host" = <00000000080000000070000000700000> + | | | | "tunable_AUX_SHM" = <> + | | | | "tunable_LN1_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | } + | | | | + | | | +-o AppleT8122TypeCPhy@0 + | | | { + | | | "IOClass" = "AppleT8122TypeCPhy" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "AppleTypeCPhyDisplayPortPclk" = {"PCLK 1"={"Clients"=["AppleATCDPAltModePort(atc0-dpphy)"],"Link Rate"="8.10Gbps/lane (HBR3)"}} + | | | "IOProbeScore" = 0x2710 + | | | "IONameMatch" = "atc-phy,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-phy,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyLane" = {"Lane 1"={"Transport"="USB3","Power Level"="on","Client"="AppleT8122USBXHCI"},"Lane 0"={"Transport"="DisplayPort","Power Level"="on","Client"="AppleATCDPAltModePort(atc0-dpphy)"}} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyDisplayPortTunnel" = {} + | | | "AppleTypeCPhyUSB2" = {"Transport"="USB2","Power Level"="on","Client"="AppleT8122USBXHCI"} + | | | "AppleTypeCPhyID" = 0x0 + | | | } + | | | + | | +-o dart-usb0@2F00000 + | | | | { + | | | | "dart-id" = <0a000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "clock-gates" = <1002000010020000> + | | | | "AAPL,phandle" = + | | | | "protection-granularity" = <10000000> + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b00> + | | | | "IODeviceMemory" = (({"address"=0x702f00000,"length"=0x4000}),({"address"=0x702f80000,"length"=0x4000})) + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <00010000> + | | | | "dart-options" = <27000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7573623000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <010000000e000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000f0020700000000400000000000000000f802070000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000C0" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-usb0@1 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <01000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d7573623000> + | | | | "AAPL,phandle" = + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o usb-drd0@2280000 + | | | | { + | | | | "host-mac-address" = + | | | | "usb-tier-limit" = <06000000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "tunable_DRD_USB31_CFG_HOST" = <20000020ff0000001b000000> + | | | | "atc-phy-parent" = + | | | | "tunable_setting" = <000700000000000007000000000000000500000000000000> + | | | | "usb-repeater" = <7761636d03000000> + | | | | "interrupt-parent" = <69000000> + | | | | "ncm-self-name-unit" = <00000000> + | | | | "interrupts" = + | | | | "tunable_DRD_USB31_DEV" = <> + | | | | "ncm-interrupt-ep-disabled" = <01000000> + | | | | "iommu-parent" = + | | | | "usb-port-current-sleep-limit" = + | | | | "tunable_CTLREG_DEFAULT" = + | | | | "tunable_PIPE_HANDLER_DEFAULT" = <2c0000200400000004000000> + | | | | "bus-number" = <00000000> + | | | | "clock-gates" = <0e0100008c010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "ncm-control-ecid-mac" = <01000000> + | | | | "acio-parent" = <52000000> + | | | | "built-in" = <> + | | | | "IODeviceMemory" = (({"address"=0x702280000,"length"=0x11800}),({"address"=0x702200000,"length"=0x4000}),({"address"=0x70228c000,"length"=0x5800}),({"address"=0x702a84000,"length"=0x4000}),({"address"=0x702800000,"length"=0x4000}),({"address"=0x702a80000,"length"=0x4000}),({"address"=0x702000000,"length"=0x4000}),({"address"=0x702080000,"length"=0x4000}),({"address"=0x70228d000,"length"=0x4000})) + | | | | "tunable_BULK_FABRIC_DEFAULT" = <040000203f00000020000000080000201f80000004000000100000200100010001000100140000201f800000040000001c0000203f003f0020002000200000201f800000040000002800002001000000010000002c0000200100000001000000300000201f80000004000000> + | | | | "AAPL,phandle" = + | | | | "name" = <7573622d6472643000> + | | | | "configuration-string" = <6e636d4175784272696e67757000> + | | | | "tunable_LINK_REGS_DEFAULT" = <200000200000f07f0000904e2400002000801f0000800b0060000020ffff030000060000> + | | | | "tunable_DRD_USB31_GBL_DEFAULT" = <640000200200000000000000> + | | | | "device-mac-address" = <000000000000> + | | | | "device_type" = <7573622d64726400> + | | | | "compatible" = <7573622d6472642c743831323200> + | | | | "port-type" = <02000000> + | | | | "tunable_AUSBC_USB2DEV" = <080000201e0000000e0000000c000020083c000000240000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000028020700000000180100000000000000200207000000004000000000000000c028020700000000580000000000000040a802070000000040000000000000000080020700000000400000000000000000a802070000000040000000000000000000020700000000400000000000000000080207000000004000000000000000d02802070000000040000000000000> + | | | | "tunable_DRD_USB31_DBG_DEFAULT" = <000000200800000008000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "tunable_DRD_USB31_GBL_HOST" = <0400002000ef0100002f00001c00002000010000000000002c000020ff070a00c8000a0000010020000100020001000204050020001000000000000028050020ff0000ff0800000638050020000800000008000080050020ffffffff0600006f> + | | | | "usb-port-current-wake-limit" = + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | } + | | | | + | | | +-o AppleT8122USBXHCI@00000000 + | | | | | { + | | | | | "IOClass" = "AppleT8122USBXHCI" + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "UsbHostControllerSoftRetryPolicy" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x0,"CurrentPowerState"=0x3,"CapabilityFlags"=0x8000,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOProbeScore" = 0x2711 + | | | | | "locationID" = 0x0 + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IONameMatch" = "usb-drd,t8122" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "UsbHostControllerDeferRegisterService" = Yes + | | | | | "IOMatchCategory" = "usb-host" + | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "Revision" = <0103> + | | | | | "IONameMatched" = "usb-drd,t8122" + | | | | | "UsbHostControllerUSB4LPMPolicy" = 0x1 + | | | | | "UsbHostControllerTierLimit" = 0x6 + | | | | | "controller-statistics" = {"kControllerStatIOCount"=0xd0396,"kControllerStatPowerStateTime"={"kPowerStateInitialize"="0ms (0%)","kPowerStateOff"="106165435ms (79%)","kPowerStateSleep"="2969ms (0%)","kPowerStateOn"="26634180ms (20%)","kPowerStateSuspended"="15107ms (0%)"},"kControllerStatSpuriousInterruptCount"=0x0} + | | | | | "kUSBSleepSupported" = Yes + | | | | | } + | | | | | + | | | | +-o usb-drd0-port-hs@00100000 + | | | | | | { + | | | | | | "usb-c-port-number" = <01000000> + | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="104150685ms (79%)","kPowerStateSleep"="8417ms (0%)","kPowerStateOn"="26625650ms (20%)","kPowerStateSuspended"="15743ms (0%)"},"kPortStatConnectCount"=0xa,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x2,"kPortStatOverCurrentCou$ + | | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | | "AAPL,phandle" = + | | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x2,"CurrentPowerState"=0x3,"CapabilityFlags"=0x8000,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "locationID" = 0x100000 + | | | | | | "device_type" = <7573622d647264302d706f72742d687300> + | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | "port-type" = <04000000> + | | | | | | "port-status" = 0x1300 + | | | | | | "kUSBBusCurrentAllocation" = 0x64 + | | | | | | "UsbCPortNumber" = 0x1 + | | | | | | "dock-remote-wake" = <> + | | | | | | "name" = <7573622d647264302d706f72742d687300> + | | | | | | "port" = <01000000> + | | | | | | } + | | | | | | + | | | | | +-o USB2.1 Hub@00100000 + | | | | | | { + | | | | | | "sessionID" = 0x2dc5707524d + | | | | | | "USBSpeed" = 0x3 + | | | | | | "idProduct" = 0x610 + | | | | | | "iManufacturer" = 0x1 + | | | | | | "bDeviceClass" = 0x9 + | | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"DevicePowerState"=0x2,"DriverPowerState"=0x0,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | "bcdDevice" = 0x656 + | | | | | | "bMaxPacketSize0" = 0x40 + | | | | | | "iProduct" = 0x2 + | | | | | | "iSerialNumber" = 0x0 + | | | | | | "bNumConfigurations" = 0x1 + | | | | | | "kUSBContainerID" = "f0564b9f-f61d-e011-ac64-0800200c9a66" + | | | | | | "UsbDeviceSignature" = + | | | | | | "locationID" = 0x100000 + | | | | | | "bDeviceSubClass" = 0x0 + | | | | | | "bcdUSB" = 0x210 + | | | | | | "USB Product Name" = "USB2.1 Hub" + | | | | | | "USB Address" = 0x1 + | | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | | "UsbExclusiveOwner" = "AppleUSB20Hub" + | | | | | | "bDeviceProtocol" = 0x1 + | | | | | | "USBPortType" = 0x0 + | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | | "kUSBCurrentConfiguration" = 0x1 + | | | | | | "USB Vendor Name" = "GenesysLogic" + | | | | | | "Device Speed" = 0x2 + | | | | | | "idVendor" = 0x5e3 + | | | | | | "kUSBProductString" = "USB2.1 Hub" + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "kUSBAddress" = 0x1 + | | | | | | "kUSBVendorString" = "GenesysLogic" + | | | | | | } + | | | | | | + | | | | | +-o AppleUSB20Hub@00100000 + | | | | | | | { + | | | | | | | "IOClass" = "AppleUSB20Hub" + | | | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | | "IOProviderClass" = "IOUSBHostDevice" + | | | | | | | "IOProbeScore" = 0xc350 + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "locationID" = 0x100000 + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "UsbBusCurrentPoolID" = 0x1000be19f + | | | | | | | "bDeviceSubClass" = 0x0 + | | | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | | "bDeviceClass" = 0x9 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUSB20HubPort@00110000 + | | | | | | | { + | | | | | | | "port" = <01000000> + | | | | | | | "port-status" = 0x0 + | | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764896ms (99%)","kPowerStateOn"="4ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kP$ + | | | | | | | "kUSBWakePortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBSleepPortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | | "kUSBBusCurrentAllocation" = 0x64 + | | | | | | | "locationID" = 0x110000 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUSB20HubPort@00120000 + | | | | | | | { + | | | | | | | "port" = <02000000> + | | | | | | | "port-status" = 0x0 + | | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764894ms (99%)","kPowerStateOn"="3ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kP$ + | | | | | | | "kUSBWakePortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBSleepPortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | | "kUSBBusCurrentAllocation" = 0x64 + | | | | | | | "locationID" = 0x120000 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUSB20HubPort@00130000 + | | | | | | | { + | | | | | | | "port" = <03000000> + | | | | | | | "port-status" = 0x0 + | | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764887ms (99%)","kPowerStateOn"="7ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kP$ + | | | | | | | "kUSBWakePortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBSleepPortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | | "kUSBBusCurrentAllocation" = 0x64 + | | | | | | | "locationID" = 0x130000 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUSB20HubPort@00140000 + | | | | | | | { + | | | | | | | "port" = <04000000> + | | | | | | | "port-status" = 0x1100 + | | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="1764890ms (100%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x1,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"k$ + | | | | | | | "kUSBWakePortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBSleepPortCurrentLimit" = 0x1f4 + | | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x1,"CurrentPowerState"=0x3,"CapabilityFlags"=0x8000,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | | "kUSBBusCurrentAllocation" = 0x12c + | | | | | | | "locationID" = 0x140000 + | | | | | | | } + | | | | | | | + | | | | | | +-o G102 LIGHTSYNC Gaming Mouse@00140000 + | | | | | | | { + | | | | | | | "sessionID" = 0x2dc575bfd05 + | | | | | | | "USBSpeed" = 0x1 + | | | | | | | "idProduct" = 0xc092 + | | | | | | | "iManufacturer" = 0x1 + | | | | | | | "bDeviceClass" = 0x0 + | | | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"DevicePowerState"=0x2,"DriverPowerState"=0x0,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | | "bcdDevice" = 0x5200 + | | | | | | | "bMaxPacketSize0" = 0x40 + | | | | | | | "iProduct" = 0x2 + | | | | | | | "iSerialNumber" = 0x3 + | | | | | | | "bNumConfigurations" = 0x1 + | | | | | | | "UsbDeviceSignature" = <6d0492c00052323037413332383935303331000000030102030000> + | | | | | | | "USB Product Name" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "locationID" = 0x140000 + | | | | | | | "bDeviceSubClass" = 0x0 + | | | | | | | "bcdUSB" = 0x200 + | | | | | | | "kUSBSerialNumberString" = "207A32895031" + | | | | | | | "USB Address" = 0x3 + | | | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | | | "kUSBCurrentConfiguration" = 0x1 + | | | | | | | "bDeviceProtocol" = 0x0 + | | | | | | | "USBPortType" = 0x0 + | | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | | | "USB Vendor Name" = "Logitech" + | | | | | | | "Device Speed" = 0x1 + | | | | | | | "idVendor" = 0x46d + | | | | | | | "kUSBProductString" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "USB Serial Number" = "207A32895031" + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "kUSBAddress" = 0x3 + | | | | | | | "kUSBVendorString" = "Logitech" + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUSBHostCompositeDevice + | | | | | | | { + | | | | | | | "IOProbeScore" = 0xc350 + | | | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleUSBHostCompositeDevice" + | | | | | | | "IOProviderClass" = "IOUSBHostDevice" + | | | | | | | "IOClass" = "AppleUSBHostCompositeDevice" + | | | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleUSBHostCompositeDevice" + | | | | | | | "bDeviceSubClass" = 0x0 + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleUSBHostCompositeDevice" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOPrimaryDriverTerminateOptions" = Yes + | | | | | | | "bDeviceClass" = 0x0 + | | | | | | | } + | | | | | | | + | | | | | | +-o Yandex + | | | | | | | { + | | | | | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOUSBHostInterface@0 + | | | | | | | | { + | | | | | | | | "USBSpeed" = 0x1 + | | | | | | | | "iInterface" = 0x0 + | | | | | | | | "bInterfaceProtocol" = 0x2 + | | | | | | | | "bAlternateSetting" = 0x0 + | | | | | | | | "idProduct" = 0xc092 + | | | | | | | | "bcdDevice" = 0x5200 + | | | | | | | | "USB Product Name" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | | "locationID" = 0x140000 + | | | | | | | | "bInterfaceClass" = 0x3 + | | | | | | | | "bInterfaceSubClass" = 0x1 + | | | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | | | | "UsbExclusiveOwner" = "AppleUserUSBHostHIDDevice" + | | | | | | | | "USBPortType" = 0x0 + | | | | | | | | "bConfigurationValue" = 0x1 + | | | | | | | | "bInterfaceNumber" = 0x0 + | | | | | | | | "USB Vendor Name" = "Logitech" + | | | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | | | | "idVendor" = 0x46d + | | | | | | | | "IODEXTMatchCount" = 0x1 + | | | | | | | | "bNumEndpoints" = 0x1 + | | | | | | | | "USB Serial Number" = "207A32895031" + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o AppleUserUSBHostHIDDevice + | | | | | | | | { + | | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | | "MaxInputReportSize" = 0x8 + | | | | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | | "VendorID" = 0x46d + | | | | | | | | "ReportDescriptor" = <05010902a1010901a10005091901291015002501951075018102050116018026ff7f751095020930093181061581257f7508950109388106050c0a380295018106c0c0> + | | | | | | | | "DebugState" = {"InputReportCount"=0x15855,"InputReportTime"=0x1009c7c0a} + | | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | | "BootProtocol" = 0x2 + | | | | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | | | | "RequiresTCCAuthorization" = Yes + | | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | | "Transport" = "USB" + | | | | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x0,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x9,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x0,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrappi$ + | | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.device" + | | | | | | | | "IOUserClasses" = ("AppleUserUSBHostHIDDevice","IOUserUSBHostHIDDevice","IOUserHIDDevice","IOHIDDevice","IOService","OSObject") + | | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | | | | | "ProductID" = 0xc092 + | | | | | | | | "RegisterService" = No + | | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1}) + | | | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x19,"Size"=0x40,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x40,"Usage"=0x0}) + | | | | | | | | "IOMatchedPersonality" = {"IOClass"="AppleUserHIDDevice","CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOUSBHostInterface","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","IOProbeScore"=0x1,"bInterfaceSubClass"=0x1,"IOUserServerName"="com.apple.driverkit.AppleUserHIDDrivers","HIDDefaultBehavior"="","kOSBundleDextUniqueIdentifier"=,"CFBundleIdentifierKernel"="com.apple.iokit.IOHIDFamily","IOUserServerOnePro$ + | | | | | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | | | | | "MaxOutputReportSize" = 0x0 + | | | | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | | | | "IOProviderClass" = "IOUSBHostInterface" + | | | | | | | | "IOUserClass" = "AppleUserUSBHostHIDDevice" + | | | | | | | | "LocationID" = 0x140000 + | | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | | "IOClass" = "AppleUserHIDDevice" + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | | | | | "PrimaryUsage" = 0x2 + | | | | | | | | "HIDDefaultBehavior" = "" + | | | | | | | | "CountryCode" = 0x0 + | | | | | | | | "RequestTimeout" = 0x4c4b40 + | | | | | | | | "bInterfaceSubClass" = 0x1 + | | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | | "IOProbeScore" = 0xc351 + | | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | | | | "bInterfaceClass" = 0x3 + | | | | | | | | "HIDDKStart" = Yes + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IOHIDInterface + | | | | | | | | { + | | | | | | | | "Transport" = "USB" + | | | | | | | | "BootProtocol" = 0x2 + | | | | | | | | "HIDDefaultBehavior" = "" + | | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | | "MaxInputReportSize" = 0x8 + | | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1}) + | | | | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x15855,"ReportAvailableRuns"=0x15855,"CreatedBuffers"=0x0} + | | | | | | | | "MaxOutputReportSize" = 0x0 + | | | | | | | | "ReportDescriptor" = <05010902a1010901a10005091901291015002501951075018102050116018026ff7f751095020930093181061581257f7508950109388106050c0a380295018106c0c0> + | | | | | | | | "CountryCode" = 0x0 + | | | | | | | | "VendorID" = 0x46d + | | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | | | | | | "IODEXTMatchCount" = 0x1 + | | | | | | | | "PrimaryUsage" = 0x2 + | | | | | | | | "LocationID" = 0x140000 + | | | | | | | | "ProductID" = 0xc092 + | | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o AppleUserHIDEventDriver + | | | | | | | | { + | | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | | "SensorProperties" = {} + | | | | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | | "VendorID" = 0x46d + | | | | | | | | "HIDPointerResolution" = 0x1900000 + | | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | | "RelativePointer" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7fff,"IsArray"=No,"Type"=0x1,"Size"=0x10,"Min"=0xffffffffffff8001,"Flags"=0x8000006,"ReportID"=0x0,"Usage"=0x30,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x10,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0xffffffffffff8001,"IsWrapping"=No,"ScaledMax"=0x7fff,"ElementCookie"=0x15},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7fff,"IsArray"$ + | | | | | | | | "Scroll" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7f,"IsArray"=No,"Type"=0x1,"Size"=0x8,"Min"=0xffffffffffffff81,"Flags"=0x8000006,"ReportID"=0x0,"Usage"=0x38,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x8,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0xffffffffffffff81,"IsWrapping"=No,"ScaledMax"=0x7f,"ElementCookie"=0x17},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0xc,"Max"=0x7f,"IsArray"=No,"Type"=0x1,"S$ + | | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | | "Transport" = "USB" + | | | | | | | | "HIDPointerAccelerationType" = "HIDMouseAcceleration" + | | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.eventservice" + | | | | | | | | "IOUserClasses" = ("AppleUserHIDEventDriver","AppleUserHIDEventService","IOUserHIDEventDriver","IOUserHIDEventService","IOHIDEventService","IOService","OSObject") + | | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | | | | | "ProductID" = 0xc092 + | | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1}) + | | | | | | | | "RegisterService" = No + | | | | | | | | "HIDScrollResolution" = 0x90000 + | | | | | | | | "HIDScrollAccelerationType" = "HIDMouseScrollAcceleration" + | | | | | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | | "HIDPointerButtonCount" = 0x10 + | | | | | | | | "VendorIDSource" = 0x0 + | | | | | | | | "IOMatchedPersonality" = {"IOProbeScore"=0x1,"CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOHIDInterface","IOClass"="AppleUserHIDEventService","IOUserClass"="AppleUserHIDEventDriver","CFBundleIdentifierKernel"="com.apple.iokit.IOHIDFamily","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","IOUserServerOneProcess"=Yes,"DeviceUsagePairs"=({"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x5},{"Devic$ + | | | | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"HIDInitialKeyRepeat"=0x1dcd6500,"HIDTrackpadScrollAcceleration"=0x5000,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Not$ + | | | | | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | | | | "IOUserClass" = "AppleUserHIDEventDriver" + | | | | | | | | "LocationID" = 0x140000 + | | | | | | | | "IOClass" = "AppleUserHIDEventService" + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | | | | | "PrimaryUsage" = 0x2 + | | | | | | | | "CountryCode" = 0x0 + | | | | | | | | "HIDServiceSupport" = Yes + | | | | | | | | "SensorPropertySupported" = 0x0 + | | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | | "IOProbeScore" = 0x4b1 + | | | | | | | | "HIDDKStart" = Yes + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IOHIDEventServiceUserClient + | | | | | | | { + | | | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | | | "IOUserClientEntitlements" = No + | | | | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0xa80,"NotificationForce"=0x0,"NotificationCount"=0x15855,"head"=0xa80},"EnqueueEventCount"=0x15c7a,"LastEventType"=0x11,"LastEventTime"=0x100ade2a1} + | | | | | | | } + | | | | | | | + | | | | | | +-o IOUSBHostInterface@1 + | | | | | | | { + | | | | | | | "USBSpeed" = 0x1 + | | | | | | | "iInterface" = 0x0 + | | | | | | | "bInterfaceProtocol" = 0x0 + | | | | | | | "bAlternateSetting" = 0x0 + | | | | | | | "idProduct" = 0xc092 + | | | | | | | "bcdDevice" = 0x5200 + | | | | | | | "USB Product Name" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "locationID" = 0x140000 + | | | | | | | "bInterfaceClass" = 0x3 + | | | | | | | "bInterfaceSubClass" = 0x0 + | | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | | | "UsbExclusiveOwner" = "AppleUserUSBHostHIDDevice" + | | | | | | | "USBPortType" = 0x0 + | | | | | | | "bConfigurationValue" = 0x1 + | | | | | | | "bInterfaceNumber" = 0x1 + | | | | | | | "USB Vendor Name" = "Logitech" + | | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | | | "idVendor" = 0x46d + | | | | | | | "IODEXTMatchCount" = 0x1 + | | | | | | | "bNumEndpoints" = 0x1 + | | | | | | | "USB Serial Number" = "207A32895031" + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUserUSBHostHIDDevice + | | | | | | | { + | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | "MaxInputReportSize" = 0x14 + | | | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | "VendorID" = 0x46d + | | | | | | | "ReportDescriptor" = <05010906a1018501050719e029e715002501750195088102810395067508150026ff0019002aff008100c0050c0901a1018503751095021501268c0219012a8c028100c005010980a10185047502950115012503098209810983816075068103c00600ff0901a101851075089506150026ff000901810009019100c00600ff0902a101851175089513150026ff000902810009029100c0> + | | | | | | | "DebugState" = {} + | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | "BootProtocol" = 0x0 + | | | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | | | "RequiresTCCAuthorization" = Yes + | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | "Transport" = "USB" + | | | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x12},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,$ + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.device" + | | | | | | | "IOUserClasses" = ("AppleUserUSBHostHIDDevice","IOUserUSBHostHIDDevice","IOUserHIDDevice","IOHIDDevice","IOService","OSObject") + | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | | | | "ProductID" = 0xc092 + | | | | | | | "RegisterService" = No + | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x80},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x2}) + | | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x3ee,"Size"=0x48,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x48,"Usage"=0x0},{"ReportID"=0x3,"ElementCookie"=0x3ef,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0},{"ReportID"=0x4,"ElementCookie"=0x3f0,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x10,"ElementCookie"=0x3f1,"Size"=0x38,"Repor$ + | | | | | | | "IOMatchedPersonality" = {"IOClass"="AppleUserHIDDevice","CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOUSBHostInterface","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","IOProbeScore"=0x1,"bInterfaceSubClass"=0x0,"IOUserServerName"="com.apple.driverkit.AppleUserHIDDrivers","HIDDefaultBehavior"="","kOSBundleDextUniqueIdentifier"=,"CFBundleIdentifierKernel"="com.apple.iokit.IOHIDFamily","IOUserServerOnePro$ + | | | | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | | | | "MaxOutputReportSize" = 0x14 + | | | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | | | "IOProviderClass" = "IOUSBHostInterface" + | | | | | | | "IOUserClass" = "AppleUserUSBHostHIDDevice" + | | | | | | | "LocationID" = 0x140000 + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOClass" = "AppleUserHIDDevice" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | | | | "PrimaryUsage" = 0x6 + | | | | | | | "HIDDefaultBehavior" = "" + | | | | | | | "CountryCode" = 0x0 + | | | | | | | "RequestTimeout" = 0x4c4b40 + | | | | | | | "bInterfaceSubClass" = 0x0 + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOProbeScore" = 0xc351 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x3,0x100020001,"Report 3"),(0x4,0x100020001,"Report 4"),(0x10,0x100020001,"Report 16"),(0x11,0x100020001,"Report 17")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | | | "bInterfaceClass" = 0x3 + | | | | | | | "HIDDKStart" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOHIDInterface + | | | | | | | { + | | | | | | | "Transport" = "USB" + | | | | | | | "BootProtocol" = 0x0 + | | | | | | | "HIDDefaultBehavior" = "" + | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "MaxInputReportSize" = 0x14 + | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x80},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x2}) + | | | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | | | "MaxOutputReportSize" = 0x14 + | | | | | | | "ReportDescriptor" = <05010906a1018501050719e029e715002501750195088102810395067508150026ff0019002aff008100c0050c0901a1018503751095021501268c0219012a8c028100c005010980a10185047502950115012503098209810983816075068103c00600ff0901a101851075089506150026ff000901810009019100c00600ff0902a101851175089513150026ff000902810009029100c0> + | | | | | | | "CountryCode" = 0x0 + | | | | | | | "VendorID" = 0x46d + | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | | | | | "IODEXTMatchCount" = 0x2 + | | | | | | | "PrimaryUsage" = 0x6 + | | | | | | | "LocationID" = 0x140000 + | | | | | | | "ProductID" = 0xc092 + | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleUserHIDEventDriver + | | | | | | | { + | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "PrimaryUsagePage" = 0x1 + | | | | | | | "SensorProperties" = {} + | | | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | | | "VersionNumber" = 0x5200 + | | | | | | | "VendorID" = 0x46d + | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | "Scroll" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=Yes,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x0,"ReportID"=0x3,"Usage"=0x238,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x35b})} + | | | | | | | "Product" = "G102 LIGHTSYNC Gaming Mouse" + | | | | | | | "SerialNumber" = "207A32895031" + | | | | | | | "Transport" = "USB" + | | | | | | | "HIDKeyboardSupportedModifiers" = 0x11e20ff + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.eventservice" + | | | | | | | "IOUserClasses" = ("AppleUserHIDEventDriver","AppleUserHIDEventService","IOUserHIDEventDriver","IOUserHIDEventService","IOHIDEventService","IOService","OSObject") + | | | | | | | "Manufacturer" = "Logitech" + | | | | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | | | | "ProductID" = 0xc092 + | | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x80},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x2}) + | | | | | | | "RegisterService" = No + | | | | | | | "Keyboard" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x12},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000$ + | | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | | | | "ReportInterval" = 0x3e8 + | | | | | | | "VendorIDSource" = 0x0 + | | | | | | | "IOMatchedPersonality" = {"IOClass"="AppleUserHIDEventService","CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOHIDInterface","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","HIDAccelCurves"=({"HIDAccelGainLinear"=0x10000,"HIDAccelIndex"=0x0,"HIDAccelTangentSpeedLinear"=0x80000},{"HIDAccelGainLinear"=0xeb85,"HIDAccelTangentSpeedLinear"=0x83333,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x6666,"HIDAccelTangentSpeedParabolicRoot"=0x130000,"HIDAccelIndex"=0x2000}$ + | | | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"HIDInitialKeyRepeat"=0x1dcd6500,"HIDTrackpadScrollAcceleration"=0x5000,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Not$ + | | | | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | | | | "HIDKeyboardKeysDefined" = Yes + | | | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelIndex"=0x0,"HIDAccelTangentSpeedLinear"=0x80000},{"HIDAccelGainLinear"=0xeb85,"HIDAccelTangentSpeedLinear"=0x83333,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x6666,"HIDAccelTangentSpeedParabolicRoot"=0x130000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xee14,"HIDAccelTangentSpeedLinear"=0x84ccd,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0x8ccd,"HIDAccelTangentSpeedParabolicRoot"=0x120000,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinea$ + | | | | | | | "IOUserClass" = "AppleUserHIDEventDriver" + | | | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | | | "LocationID" = 0x140000 + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | | | | "IOClass" = "AppleUserHIDEventService" + | | | | | | | "PrimaryUsage" = 0x6 + | | | | | | | "HIDDefaultBehavior" = "" + | | | | | | | "CountryCode" = 0x0 + | | | | | | | "HIDKeyboardSupportsDoNotDisturbKey" = No + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "HIDKeyboardSupportsEscKey" = Yes + | | | | | | | "IOProbeScore" = 0x4b1 + | | | | | | | "SensorPropertySupported" = 0x0 + | | | | | | | "HIDServiceSupport" = Yes + | | | | | | | "HIDDKStart" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOHIDEventServiceUserClient + | | | | | | { + | | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | | "IOUserClientEntitlements" = No + | | | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | | | } + | | | | | | + | | | | | +-o IOUSBHostInterface@0 + | | | | | | { + | | | | | | "USBPortType" = 0x0 + | | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | | "USB Vendor Name" = "GenesysLogic" + | | | | | | "bcdDevice" = 0x656 + | | | | | | "USBSpeed" = 0x3 + | | | | | | "idProduct" = 0x610 + | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | | "bInterfaceSubClass" = 0x0 + | | | | | | "bConfigurationValue" = 0x1 + | | | | | | "locationID" = 0x100000 + | | | | | | "USB Product Name" = "USB2.1 Hub" + | | | | | | "UsbExclusiveOwner" = "AppleUSB20Hub" + | | | | | | "bInterfaceProtocol" = 0x0 + | | | | | | "iInterface" = 0x0 + | | | | | | "bAlternateSetting" = 0x0 + | | | | | | "idVendor" = 0x5e3 + | | | | | | "bInterfaceNumber" = 0x0 + | | | | | | "bInterfaceClass" = 0x9 + | | | | | | "bNumEndpoints" = 0x1 + | | | | | | } + | | | | | | + | | | | | +-o Yandex + | | | | | { + | | | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o usb-drd0-port-ss@00200000 + | | | | | { + | | | | | "usb-c-port-number" = <01000000> + | | | | | "link-error-count" = 0x0 + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "AAPL,phandle" = + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x2,"CurrentPowerState"=0x3,"CapabilityFlags"=0x8000,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "locationID" = 0x200000 + | | | | | "device_type" = <7573622d647264302d706f72742d737300> + | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | "port-type" = <04000000> + | | | | | "port-status" = 0x1400 + | | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | | "UsbCPortNumber" = 0x1 + | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="104148942ms (79%)","kPowerStateSleep"="12661ms (0%)","kPowerStateOn"="26578165ms (20%)","kPowerStateSuspended"="61103ms (0%)"},"kPortStatConnectCount"=0xc,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x1,"kPortStatOverCurrentCo$ + | | | | | "name" = <7573622d647264302d706f72742d737300> + | | | | | "port" = <02000000> + | | | | | } + | | | | | + | | | | +-o USB3.1 Hub@00200000 + | | | | | { + | | | | | "sessionID" = 0x2dc570b9aa2 + | | | | | "USBSpeed" = 0x4 + | | | | | "idProduct" = 0x626 + | | | | | "iManufacturer" = 0x1 + | | | | | "bDeviceClass" = 0x9 + | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"DevicePowerState"=0x2,"DriverPowerState"=0x0,"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "bcdDevice" = 0x656 + | | | | | "bMaxPacketSize0" = 0x9 + | | | | | "iProduct" = 0x2 + | | | | | "iSerialNumber" = 0x0 + | | | | | "bNumConfigurations" = 0x1 + | | | | | "kUSBContainerID" = "f0564b9f-f61d-e011-ac64-0800200c9a66" + | | | | | "UsbDeviceSignature" = + | | | | | "locationID" = 0x200000 + | | | | | "bDeviceSubClass" = 0x0 + | | | | | "bcdUSB" = 0x320 + | | | | | "USB Product Name" = "USB3.1 Hub" + | | | | | "USB Address" = 0x2 + | | | | | "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | "UsbExclusiveOwner" = "AppleUSB30Hub" + | | | | | "bDeviceProtocol" = 0x3 + | | | | | "USBPortType" = 0x0 + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | "kUSBHubIdlePolicy" = 0x0 + | | | | | "USB Vendor Name" = "GenesysLogic" + | | | | | "Device Speed" = 0x3 + | | | | | "idVendor" = 0x5e3 + | | | | | "kUSBCurrentConfiguration" = 0x1 + | | | | | "kUSBProductString" = "USB3.1 Hub" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "kUSBAddress" = 0x2 + | | | | | "kUSBVendorString" = "GenesysLogic" + | | | | | } + | | | | | + | | | | +-o AppleUSB30Hub@00200000 + | | | | | | { + | | | | | | "IOClass" = "AppleUSB30Hub" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | "IOProviderClass" = "IOUSBHostDevice" + | | | | | | "USBSpeed" = 0x4 + | | | | | | "IOProbeScore" = 0xc3b4 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "locationID" = 0x200000 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "UsbBusCurrentPoolID" = 0x1000be1aa + | | | | | | "bDeviceSubClass" = 0x0 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleUSBHub" + | | | | | | "bDeviceClass" = 0x9 + | | | | | | } + | | | | | | + | | | | | +-o AppleUSB30HubPort@00210000 + | | | | | | { + | | | | | | "port" = <01000000> + | | | | | | "port-status" = 0x0 + | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764700ms (100%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"k$ + | | | | | | "kUSBWakePortCurrentLimit" = 0x384 + | | | | | | "kUSBSleepPortCurrentLimit" = 0x384 + | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | | | "locationID" = 0x210000 + | | | | | | } + | | | | | | + | | | | | +-o AppleUSB30HubPort@00220000 + | | | | | | { + | | | | | | "port" = <02000000> + | | | | | | "port-status" = 0x0 + | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764702ms (100%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"k$ + | | | | | | "kUSBWakePortCurrentLimit" = 0x384 + | | | | | | "kUSBSleepPortCurrentLimit" = 0x384 + | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | | | "locationID" = 0x220000 + | | | | | | } + | | | | | | + | | | | | +-o AppleUSB30HubPort@00230000 + | | | | | | { + | | | | | | "port" = <03000000> + | | | | | | "port-status" = 0x0 + | | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764700ms (100%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"k$ + | | | | | | "kUSBWakePortCurrentLimit" = 0x384 + | | | | | | "kUSBSleepPortCurrentLimit" = 0x384 + | | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | | | "locationID" = 0x230000 + | | | | | | } + | | | | | | + | | | | | +-o AppleUSB30HubPort@00240000 + | | | | | { + | | | | | "port" = <04000000> + | | | | | "port-status" = 0x0 + | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="0ms (0%)","kPowerStateSleep"="1764700ms (100%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"k$ + | | | | | "kUSBWakePortCurrentLimit" = 0x384 + | | | | | "kUSBSleepPortCurrentLimit" = 0x384 + | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x10004,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | | "locationID" = 0x240000 + | | | | | } + | | | | | + | | | | +-o GenesysLogic@0 + | | | | | { + | | | | | "USBSpeed" = 0x4 + | | | | | "iInterface" = 0x1 + | | | | | "bInterfaceProtocol" = 0x0 + | | | | | "bAlternateSetting" = 0x0 + | | | | | "idProduct" = 0x626 + | | | | | "bcdDevice" = 0x656 + | | | | | "USB Product Name" = "USB3.1 Hub" + | | | | | "locationID" = 0x200000 + | | | | | "bInterfaceClass" = 0x9 + | | | | | "bInterfaceSubClass" = 0x0 + | | | | | "IOCFPlugInTypes" = {"2d9786c6-9ef3-11d4-ad51-000a27052861"="IOUSBHostFamily.kext/Contents/PlugIns/IOUSBLib.bundle"} + | | | | | "UsbExclusiveOwner" = "AppleUSB30Hub" + | | | | | "USBPortType" = 0x0 + | | | | | "kUSBString" = "GenesysLogic" + | | | | | "bInterfaceNumber" = 0x0 + | | | | | "bConfigurationValue" = 0x1 + | | | | | "USB Vendor Name" = "GenesysLogic" + | | | | | "idVendor" = 0x5e3 + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.usb")) + | | | | | "bNumEndpoints" = 0x1 + | | | | | } + | | | | | + | | | | +-o Yandex + | | | | { + | | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleT8122USBXDCI@0 + | | | | { + | | | | "IOClass" = "AppleT8122USBXDCI" + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ConfigurationType" = "ncmAuxBringup" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "DeviceDescription" = {"MaxPower"=0xffffffffffffffff,"deviceProtocol"=0x0,"productID"=0x1905,"vendorID"=0x5ac,"DefaultBcdUSBVersion"=0x210,"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0}),"deviceClass"=0x0,"manufacturerString"="Apple Inc.","BcdUSBVersion"=0x210,"productString"="Mac","Attributes"=0xc0,"MPS0"=0x40,"deviceID"=0x1512,"deviceSubClass"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "CreatedTimestamp" = 0x6668633 + | | | | "CurrentState" = {"DeviceAddress"=0x0,"DeviceState"="Disconnected","DefaultPreferredConfiguration"=0x1,"ConnectionSpeed"=0x0,"SoftwareLinkState"="L0 (Normal)","OnBus"=No,"PreferredConfiguration"=0x1,"RemoteWakeEnabled"=No,"ConnectionSpeedDescription"="Unknown","SelectedConfiguration"=0x0} + | | | | "IONameMatch" = "usb-drd,t8122" + | | | | "FinalizedDurationMS" = 0x1 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "ScatterGatherSupport" = Yes + | | | | "IOMatchCategory" = "usb-device" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IONameMatched" = "usb-drd,t8122" + | | | | "DefaultDeviceDescription" = {"productString"="Mac","deviceClass"=0x0,"manufacturerString"="Apple Inc.","deviceID"=0x1512,"productID"=0x1905,"vendorID"=0x5ac,"deviceSubClass"=0x0,"Attributes"=0xc0,"deviceProtocol"=0x0,"MaxPower"=0xffffffffffffffff,"DefaultBcdUSBVersion"=0x210} + | | | | "MapperPageSize" = 0x4000 + | | | | "FinalizedTimestamp" = 0x666e621 + | | | | } + | | | | + | | | +-o IOUSBDeviceConfigurator + | | | | { + | | | | "IOPropertyMatch" = {"ConfigurationType"="ncmAuxBringup"} + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProviderClass" = "IOUSBDeviceController" + | | | | "IOClass" = "IOUSBDeviceConfigurator" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProbeScore" = 0x0 + | | | | "DeviceDescription" = {"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0})} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMControl@0 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x6668014 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControl" + | | | | | "FinalizedTimestamp" = 0x6669e69 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@0 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControl"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMData@1 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x66681d8 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMData" + | | | | | "FinalizedTimestamp" = 0x666c9e6 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMData + | | | | | { + | | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | | "IOActiveMedium" = "00000022" + | | | | | "waitControlStart" = 0x117a + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMinPacketSize" = 0x40 + | | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | | "IOLinkStatus" = 0x1 + | | | | | "waitControlFinish" = 0x117a + | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMData"} + | | | | | "AVBControllerState" = 0x1 + | | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMACAddress" = <12c34f9668ab> + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMaxPacketSize" = 0x3e92 + | | | | | "IOSelectedMedium" = "00000022" + | | | | | "IOLinkSpeed" = 0x0 + | | | | | "HiddenConfiguration" = Yes + | | | | | "IOFeatures" = 0x0 + | | | | | } + | | | | | + | | | | +-o en3 + | | | | | { + | | | | | "IOLocation" = "" + | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOLinkActiveCount" = 0x0 + | | | | | "BSD Name" = "en3" + | | | | | "IOMulticastAddressList" = <0180c2000003> + | | | | | "IOInterfaceType" = 0x6 + | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | "IOInterfaceFlags" = 0x8863 + | | | | | "IOInterfaceState" = 0x3 + | | | | | "IOMediaAddressLength" = 0x6 + | | | | | "IOMediaHeaderLength" = 0xe + | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | "IOPrimaryInterface" = No + | | | | | "IOControllerEnabled" = Yes + | | | | | "IOInterfaceUnit" = 0x3 + | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | "IOBuiltin" = No + | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | } + | | | | | + | | | | +-o IONetworkStack + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | "IOClass" = "IONetworkStack" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOProviderClass" = "IOResources" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IONetworkStackUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleUSBNCMControlAux@2 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x66683b5 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControlAux" + | | | | | "FinalizedTimestamp" = 0x666b4f6 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@2 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControlAux"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "NetworkInterfaceFlags" = 0x20000000 + | | | | "ncm-control-use-aux" = <01000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMDataAux@3 + | | | | { + | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | "IsActive" = No + | | | | "StartedTimestamp" = 0x6668513 + | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | "USBDeviceFunction" = "AppleUSBNCMDataAux" + | | | | "FinalizedTimestamp" = 0x666e470 + | | | | "FinalizedDurationMS" = 0x1 + | | | | } + | | | | + | | | +-o AppleUSBDeviceNCMData + | | | | { + | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | "IOActiveMedium" = "00000022" + | | | | "waitControlStart" = 0x117a + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMinPacketSize" = 0x40 + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOLinkStatus" = 0x1 + | | | | "waitControlFinish" = 0x117b + | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "HiddenInterface" = Yes + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMDataAux"} + | | | | "AVBControllerState" = 0x1 + | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMACAddress" = <12c34f9668cb> + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMaxPacketSize" = 0x3e92 + | | | | "IOSelectedMedium" = "00000022" + | | | | "SelfNamed" = Yes + | | | | "IOLinkSpeed" = 0x0 + | | | | "HiddenConfiguration" = Yes + | | | | "IOFeatures" = 0x0 + | | | | } + | | | | + | | | +-o anpi0 + | | | | { + | | | | "IOLocation" = "" + | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOLinkActiveCount" = 0x0 + | | | | "BSD Name" = "anpi0" + | | | | "IOMaxTransferUnit" = 0x5dc + | | | | "IOInterfaceType" = 0x6 + | | | | "IOInterfaceFlags" = 0x8863 + | | | | "IOMediaAddressLength" = 0x6 + | | | | "IOInterfaceState" = 0x3 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMediaHeaderLength" = 0xe + | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | "IOPrimaryInterface" = No + | | | | "IOControllerEnabled" = Yes + | | | | "IOInterfaceUnit" = 0x0 + | | | | "IOInterfaceNamePrefix" = "anpi" + | | | | "IOBuiltin" = No + | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | } + | | | | + | | | +-o IONetworkStack + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchCategory" = "IONetworkStack" + | | | | "IOClass" = "IONetworkStack" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOProviderClass" = "IOResources" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IONetworkStackUserClient + | | | { + | | | "IOUserClientCreator" = "pid 386, configd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o atc-phy1@2A90000 + | | | | { + | | | | "tunable_LN1_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_CLKMON_CFG" = <0c000020ff03000000020000> + | | | | "tunable_CIO3PLL_TOP" = <940000200001000000010000a0000020ff01000014010000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "tunable_LN0_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | "tunable_LN1_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_LN0_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "tunable_ATC0AXI2AF" = <0000002003020000010200000c000020ffff0f000068010010000020ffff0f0000b400003c000020ffffffffffff000040000020ffffffffffff0000080100203300ffff310010000c010020ffff0f000068010010010020ffff0f0000b40000000200207f00008040000080040200207f007f8008001280080200207f007f80080012800c0200207f007f8008001280100200207f007f8002001280140200207f007f8002001280180200207f007f80080012801c0200207f007f8008001280400200207f00008050000080440200207f007f8008002080480200207f007f80080020804c0200207f007f8008002080500200207f007f800800208054020$ + | | | | "IODeviceMemory" = (({"address"=0xb02a90000,"length"=0x4000}),({"address"=0xb02800000,"length"=0x4000}),({"address"=0xb03044000,"length"=0x4000}),({"address"=0xb03000000,"length"=0x4000}),({"address"=0xb03000800,"length"=0x4000}),({"address"=0xb03000a00,"length"=0x4000}),({"address"=0xb03001000,"length"=0x4000}),({"address"=0xb03002000,"length"=0x4000}),({"address"=0xb03002200,"length"=0x4000}),({"address"=0xb03002600,"length"=0x4000}),({"address"=0xb03002800,"length"=0x4000}),({"address"=0xb03002a00,"length"=0x4000}),({"addres$ + | | | | "tunable_LN0_RX_TOP_CIO_DFLT" = + | | | | "port-number" = <02000000> + | | | | "reg" = <0000a9020b0000000040000000000000000080020b0000000040000000000000004004030b0000000040000000000000000000030b0000000040000000000000000800030b0000000040000000000000000a00030b0000000040000000000000001000030b0000000040000000000000002000030b0000000040000000000000002200030b0000000040000000000000002600030b0000000040000000000000002800030b0000000040000000000000002a00030b0000000040000000000000004000030b0000000040000000000000005000030b0000000010000000000000007000030b0000000040000000000000009000030b000000004000000000000000a000030b00$ + | | | | "tunable_LN1_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_LN1_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "port-type" = <02000000> + | | | | "tunable_LN0_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_AUSCMN_SHM" = <040000207c0000004c000000> + | | | | "tunable_AUSPLL_CORE" = <24000020000c000000080000300000201f0000000f000000400000207f00180029000000b00000200000700800003000e40000200100060001000400340100200000800f000080074800002000ff010000280100> + | | | | "tunable_LN1_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable_LN1_RX_TOP_USB_EQA" = <> + | | | | "tunable_LN0_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "tunable_USB2PHY_HOST" = <080000200070000000000000> + | | | | "tunable_LN0_RX_TOP_USB_EQA" = <> + | | | | "tunable_USB2PHY_DEV" = <080000200070000000700000> + | | | | "tunable_ACIOPHY_LANE_USBC0" = <040000200000007c00000044> + | | | | "tunable_ACIOPHY_PLL_TOP" = <300000200080000000800000> + | | | | "tunable_LN0_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable_LN0_TX_TOP_USB_EQA" = <> + | | | | "tunable_LN1_TX_TOP_USB_EQA" = <> + | | | | "name" = <6174632d7068793100> + | | | | "AAPL,phandle" = + | | | | "tunable_LN1_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "compatible" = <6174632d7068792c743831323200> + | | | | "clock-gates" = <0102000071000000> + | | | | "tunable_LN0_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_ACIOPHY_TOP" = <0c0100200000040000000000> + | | | | "tunable_LN1_RX_TOP_CIO_DFLT" = + | | | | "tunable_LN0_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ACIOPHY_LANE_USBC1" = <040000200000007c00000044> + | | | | "tunable_AUX_TOP" = <0800002038000000080000000c0000201f00000000000000> + | | | | "tunable_LN1_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ATC_FABRIC" = <040000203f003f00200020000c000020f1000000a1000000100000201f80000004000000180000203f003f002000200020000020f1000000a1000000240000201f800000040000002c0000207f007f005200520034000020f1000000710000003800002001000000010000003c0000200100000001000000400000201f80000004000000480000201f00000010000000500000201f80000004000000580000207f007f004500450060000020f100000051000000640000201f800000040000006c0000203f00000020000000740000201f800000040000007c0000200100000001000000800000201f80000004000000880000203f003f00300030008c000$ + | | | | "tunable_LN0_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_CIO_SHIM" = <000000200007f0000000b000> + | | | | "device_type" = <6174632d70687900> + | | | | "tunable_CIO3PLL_CORE" = <0000002088080000880800000800002000001f000000030024000020000c00000008000028000020000f0000000b0000300000201f0000000f0000004c00002000fe7f00003e2400b00000200000700000003000e40000200000060000000200fc000020ff0f0000d8000000> + | | | | "tunable_AUSCMN_DIG" = <0000002000003f0000002300> + | | | | "tunable_LN1_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable-device" = <00000000080000000070000000000000> + | | | | "instance" = <01000000> + | | | | "tunable_LN0_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable-host" = <00000000080000000070000000700000> + | | | | "tunable_AUX_SHM" = <> + | | | | "tunable_LN1_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | } + | | | | + | | | +-o AppleT8122TypeCPhy@1 + | | | { + | | | "IOClass" = "AppleT8122TypeCPhy" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "AppleTypeCPhyDisplayPortPclk" = {} + | | | "IOProbeScore" = 0x2710 + | | | "IONameMatch" = "atc-phy,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-phy,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyLane" = {"Lane 1"={},"Lane 0"={}} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyDisplayPortTunnel" = {} + | | | "AppleTypeCPhyUSB2" = {} + | | | "AppleTypeCPhyID" = 0x1 + | | | } + | | | + | | +-o dart-usb1@2F00000 + | | | | { + | | | | "dart-id" = <0b000000> + | | | | "IOInterruptSpecifiers" = (<0a040000>) + | | | | "clock-gates" = <1102000011020000> + | | | | "AAPL,phandle" = + | | | | "protection-granularity" = <10000000> + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b00> + | | | | "IODeviceMemory" = (({"address"=0xb02f00000,"length"=0x4000}),({"address"=0xb02f80000,"length"=0x4000})) + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <00010000> + | | | | "dart-options" = <27000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7573623100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <010000000e000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <0a040000> + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000f0020b00000000400000000000000000f8020b0000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000C7" = <> + | | | | } + | | | | + | | | +-o mapper-usb1@1 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <01000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d7573623100> + | | | | "AAPL,phandle" = + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o usb-drd1@2280000 + | | | | { + | | | | "host-mac-address" = + | | | | "usb-tier-limit" = <06000000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "tunable_DRD_USB31_CFG_HOST" = <20000020ff0000001b000000> + | | | | "atc-phy-parent" = + | | | | "tunable_setting" = <000700000000000007000000000000000500000000000000> + | | | | "usb-repeater" = <7761636d03000000> + | | | | "interrupt-parent" = <69000000> + | | | | "ncm-self-name-unit" = <01000000> + | | | | "interrupts" = <06040000070400000804000009040000f9030000> + | | | | "tunable_DRD_USB31_DEV" = <> + | | | | "ncm-interrupt-ep-disabled" = <01000000> + | | | | "iommu-parent" = + | | | | "usb-port-current-sleep-limit" = + | | | | "tunable_CTLREG_DEFAULT" = + | | | | "tunable_PIPE_HANDLER_DEFAULT" = <2c0000200400000004000000> + | | | | "bus-number" = <01000000> + | | | | "clock-gates" = <0f0100008d010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "ncm-control-ecid-mac" = <02000000> + | | | | "acio-parent" = <60000000> + | | | | "built-in" = <> + | | | | "IODeviceMemory" = (({"address"=0xb02280000,"length"=0x11800}),({"address"=0xb02200000,"length"=0x4000}),({"address"=0xb0228c000,"length"=0x5800}),({"address"=0xb02a84000,"length"=0x4000}),({"address"=0xb02800000,"length"=0x4000}),({"address"=0xb02a80000,"length"=0x4000}),({"address"=0xb02000000,"length"=0x4000}),({"address"=0xb02080000,"length"=0x4000}),({"address"=0xb0228d000,"length"=0x4000})) + | | | | "tunable_BULK_FABRIC_DEFAULT" = <040000203f00000020000000080000201f80000004000000100000200100010001000100140000201f800000040000001c0000203f003f0020002000200000201f800000040000002800002001000000010000002c0000200100000001000000300000201f80000004000000> + | | | | "AAPL,phandle" = + | | | | "name" = <7573622d6472643100> + | | | | "configuration-string" = <6e636d4175784272696e67757000> + | | | | "tunable_LINK_REGS_DEFAULT" = <200000200000f07f0000904e2400002000801f0000800b0060000020ffff030000060000> + | | | | "tunable_DRD_USB31_GBL_DEFAULT" = <640000200200000000000000> + | | | | "device-mac-address" = <000000000000> + | | | | "device_type" = <7573622d64726400> + | | | | "compatible" = <7573622d6472642c743831323200> + | | | | "port-type" = <02000000> + | | | | "tunable_AUSBC_USB2DEV" = <080000201e0000000e0000000c000020083c000000240000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000028020b0000000018010000000000000020020b000000004000000000000000c028020b00000000580000000000000040a8020b0000000040000000000000000080020b00000000400000000000000000a8020b0000000040000000000000000000020b0000000040000000000000000008020b000000004000000000000000d028020b0000000040000000000000> + | | | | "tunable_DRD_USB31_DBG_DEFAULT" = <000000200800000008000000> + | | | | "port-number" = <02000000> + | | | | "usb-restore-disable" = <> + | | | | "tunable_DRD_USB31_GBL_HOST" = <0400002000ef0100002f00001c00002000010000000000002c000020ff070a00c8000a0000010020000100020001000204050020001000000000000028050020ff0000ff0800000638050020000800000008000080050020ffffffff0600006f> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "usb-port-current-wake-limit" = + | | | | "IOInterruptSpecifiers" = (<06040000>,<07040000>,<08040000>,<09040000>,) + | | | | } + | | | | + | | | +-o AppleT8122USBXHCI@01000000 + | | | | | { + | | | | | "IOClass" = "AppleT8122USBXHCI" + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "UsbHostControllerSoftRetryPolicy" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOProbeScore" = 0x2711 + | | | | | "locationID" = 0x1000000 + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IONameMatch" = "usb-drd,t8122" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "UsbHostControllerDeferRegisterService" = Yes + | | | | | "IOMatchCategory" = "usb-host" + | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "Revision" = <0103> + | | | | | "IONameMatched" = "usb-drd,t8122" + | | | | | "UsbHostControllerUSB4LPMPolicy" = 0x1 + | | | | | "UsbHostControllerTierLimit" = 0x6 + | | | | | "controller-statistics" = {"kControllerStatIOCount"=0x0,"kControllerStatPowerStateTime"={"kPowerStateInitialize"="0ms (0%)","kPowerStateOff"="132817895ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="3ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kControllerStatSpuriousInterruptCount"=0x0} + | | | | | "kUSBSleepSupported" = Yes + | | | | | } + | | | | | + | | | | +-o usb-drd1-port-hs@01100000 + | | | | | { + | | | | | "usb-c-port-number" = <02000000> + | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="36864271ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kPortS$ + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "AAPL,phandle" = + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "locationID" = 0x1100000 + | | | | | "device_type" = <7573622d647264312d706f72742d687300> + | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | "port-type" = <04000000> + | | | | | "port-status" = 0x0 + | | | | | "kUSBBusCurrentAllocation" = 0x0 + | | | | | "UsbCPortNumber" = 0x2 + | | | | | "dock-remote-wake" = <> + | | | | | "name" = <7573622d647264312d706f72742d687300> + | | | | | "port" = <01000000> + | | | | | } + | | | | | + | | | | +-o usb-drd1-port-ss@01200000 + | | | | { + | | | | "usb-c-port-number" = <02000000> + | | | | "link-error-count" = 0x0 + | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | "AAPL,phandle" = + | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "locationID" = 0x1200000 + | | | | "device_type" = <7573622d647264312d706f72742d737300> + | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | "port-type" = <04000000> + | | | | "port-status" = 0x0 + | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | "UsbCPortNumber" = 0x2 + | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="36864270ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kPortS$ + | | | | "name" = <7573622d647264312d706f72742d737300> + | | | | "port" = <02000000> + | | | | } + | | | | + | | | +-o AppleT8122USBXDCI@1 + | | | | { + | | | | "IOClass" = "AppleT8122USBXDCI" + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ConfigurationType" = "ncmAuxBringup" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "DeviceDescription" = {"MaxPower"=0xffffffffffffffff,"deviceProtocol"=0x0,"productID"=0x1905,"vendorID"=0x5ac,"DefaultBcdUSBVersion"=0x210,"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0}),"deviceClass"=0x0,"manufacturerString"="Apple Inc.","BcdUSBVersion"=0x210,"productString"="Mac","Attributes"=0xc0,"MPS0"=0x40,"deviceID"=0x1512,"deviceSubClass"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "CreatedTimestamp" = 0x665aa52 + | | | | "CurrentState" = {"DeviceAddress"=0x0,"DeviceState"="Disconnected","DefaultPreferredConfiguration"=0x1,"ConnectionSpeed"=0x0,"SoftwareLinkState"="L0 (Normal)","OnBus"=No,"PreferredConfiguration"=0x1,"RemoteWakeEnabled"=No,"ConnectionSpeedDescription"="Unknown","SelectedConfiguration"=0x0} + | | | | "IONameMatch" = "usb-drd,t8122" + | | | | "FinalizedDurationMS" = 0x2 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "ScatterGatherSupport" = Yes + | | | | "IOMatchCategory" = "usb-device" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IONameMatched" = "usb-drd,t8122" + | | | | "DefaultDeviceDescription" = {"productString"="Mac","deviceClass"=0x0,"manufacturerString"="Apple Inc.","deviceID"=0x1512,"productID"=0x1905,"vendorID"=0x5ac,"deviceSubClass"=0x0,"Attributes"=0xc0,"deviceProtocol"=0x0,"MaxPower"=0xffffffffffffffff,"DefaultBcdUSBVersion"=0x210} + | | | | "MapperPageSize" = 0x4000 + | | | | "FinalizedTimestamp" = 0x666927b + | | | | } + | | | | + | | | +-o IOUSBDeviceConfigurator + | | | | { + | | | | "IOPropertyMatch" = {"ConfigurationType"="ncmAuxBringup"} + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProviderClass" = "IOUSBDeviceController" + | | | | "IOClass" = "IOUSBDeviceConfigurator" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProbeScore" = 0x0 + | | | | "DeviceDescription" = {"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0})} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMControl@0 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a89c + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControl" + | | | | | "FinalizedTimestamp" = 0x66645f5 + | | | | | "FinalizedDurationMS" = 0x1 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@0 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControl"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMData@1 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a919 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMData" + | | | | | "FinalizedTimestamp" = 0x666912e + | | | | | "FinalizedDurationMS" = 0x2 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMData + | | | | | { + | | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | | "IOActiveMedium" = "00000022" + | | | | | "waitControlStart" = 0x1179 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMinPacketSize" = 0x40 + | | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | | "IOLinkStatus" = 0x1 + | | | | | "waitControlFinish" = 0x117a + | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMData"} + | | | | | "AVBControllerState" = 0x1 + | | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMACAddress" = <12c34f9668ac> + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMaxPacketSize" = 0x3e92 + | | | | | "IOSelectedMedium" = "00000022" + | | | | | "IOLinkSpeed" = 0x0 + | | | | | "HiddenConfiguration" = Yes + | | | | | "IOFeatures" = 0x0 + | | | | | } + | | | | | + | | | | +-o en4 + | | | | | { + | | | | | "IOLocation" = "" + | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOLinkActiveCount" = 0x0 + | | | | | "BSD Name" = "en4" + | | | | | "IOMulticastAddressList" = <0180c2000003> + | | | | | "IOInterfaceType" = 0x6 + | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | "IOInterfaceFlags" = 0x8863 + | | | | | "IOInterfaceState" = 0x3 + | | | | | "IOMediaAddressLength" = 0x6 + | | | | | "IOMediaHeaderLength" = 0xe + | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | "IOPrimaryInterface" = No + | | | | | "IOControllerEnabled" = Yes + | | | | | "IOInterfaceUnit" = 0x4 + | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | "IOBuiltin" = No + | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | } + | | | | | + | | | | +-o IONetworkStack + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | "IOClass" = "IONetworkStack" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOProviderClass" = "IOResources" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IONetworkStackUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleUSBNCMControlAux@2 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a97b + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControlAux" + | | | | | "FinalizedTimestamp" = 0x6664bae + | | | | | "FinalizedDurationMS" = 0x1 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@2 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControlAux"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "NetworkInterfaceFlags" = 0x20000000 + | | | | "ncm-control-use-aux" = <01000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMDataAux@3 + | | | | { + | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | "IsActive" = No + | | | | "StartedTimestamp" = 0x665a9d4 + | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | "USBDeviceFunction" = "AppleUSBNCMDataAux" + | | | | "FinalizedTimestamp" = 0x6668ae0 + | | | | "FinalizedDurationMS" = 0x2 + | | | | } + | | | | + | | | +-o AppleUSBDeviceNCMData + | | | | { + | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | "IOActiveMedium" = "00000022" + | | | | "waitControlStart" = 0x1179 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMinPacketSize" = 0x40 + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOLinkStatus" = 0x1 + | | | | "waitControlFinish" = 0x117a + | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "HiddenInterface" = Yes + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMDataAux"} + | | | | "AVBControllerState" = 0x1 + | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMACAddress" = <12c34f9668cc> + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMaxPacketSize" = 0x3e92 + | | | | "IOSelectedMedium" = "00000022" + | | | | "SelfNamed" = Yes + | | | | "IOLinkSpeed" = 0x0 + | | | | "HiddenConfiguration" = Yes + | | | | "IOFeatures" = 0x0 + | | | | } + | | | | + | | | +-o anpi1 + | | | | { + | | | | "IOLocation" = "" + | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOLinkActiveCount" = 0x0 + | | | | "BSD Name" = "anpi1" + | | | | "IOMaxTransferUnit" = 0x5dc + | | | | "IOInterfaceType" = 0x6 + | | | | "IOInterfaceFlags" = 0x8863 + | | | | "IOMediaAddressLength" = 0x6 + | | | | "IOInterfaceState" = 0x3 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMediaHeaderLength" = 0xe + | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | "IOPrimaryInterface" = No + | | | | "IOControllerEnabled" = Yes + | | | | "IOInterfaceUnit" = 0x1 + | | | | "IOInterfaceNamePrefix" = "anpi" + | | | | "IOBuiltin" = No + | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | } + | | | | + | | | +-o IONetworkStack + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchCategory" = "IONetworkStack" + | | | | "IOClass" = "IONetworkStack" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOProviderClass" = "IOResources" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IONetworkStackUserClient + | | | { + | | | "IOUserClientCreator" = "pid 386, configd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o nub-spmi0@D4714000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4714000,"length"=0x4000}),({"address"=0x2e4704000,"length"=0x4000}),({"address"=0x2e4700000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000CC" + | | | | "IOInterruptControllers" = ("IOInterruptController000000CC","IOInterruptController00000069","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000$ + | | | | "name" = <6e75622d73706d693000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000b501000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004071d4000000000040000000000000004070d4000000000040000000000000000070d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000CC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o pmu-main@E + | | | | | { + | | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | | "info-scrpad" = <0080000000280000> + | | | | | "info-fault_name-3" = <7273742c7273745f76646472746300> + | | | | | "info-fault_name-35" = <74696d656f75742c77646f675f66775f74696d656f757400> + | | | | | "info-rtc_alarm_ctrl_en_mask" = <40000000> + | | | | | "info-fault_log" = <00fa000005000000> + | | | | | "info-fault_name-33" = <63726173682c6879705f68775f637261736800> + | | | | | "ptmu-region-13-data" = <0066000000020000> + | | | | | "function-suspend_helper" = <8200000054523253> + | | | | | "info-fault_name-31" = <63726173682c6663726173685f696e00> + | | | | | "ptmu-region-10-data" = <0063000080000000> + | | | | | "info-scrpad_lpm_ctrl" = + | | | | | "interrupt-parent" = + | | | | | "is-primary" = <01000000> + | | | | | "hw-name" = <73746f776500> + | | | | | "ptmu-region-2-data" = <8060000040000000> + | | | | | "info-fault_name-18" = <74696d656f75742c64626c636c69636b5f74696d656f757400> + | | | | | "info-fault_name-16" = <73706d692c73706d695f6661756c7400> + | | | | | "info-fault_name-8" = <62746e5f7273742c74776f5f66696e6765725f72737400> + | | | | | "info-fault_name-4" = <6f742c6f76657274656d7000> + | | | | | "info-fault_name-14" = <736f63686f742c72657365745f696e5f3300> + | | | | | "ptmu-region-5-data" = <4061000040000000> + | | | | | "info-fault_name-0" = <706f7200> + | | | | | "info-rtc_alarm_event" = <0cf80000> + | | | | | "info-fault_name-12" = <77646f672c72657365745f696e5f3100> + | | | | | "compatible" = <706d752c73706d6900706d752c73746f776500> + | | | | | "info-fault_shadow" = <7b84000010000000> + | | | | | "info-fault_name-10" = <62746e5f7273742c62746e5f7365715f726573657400> + | | | | | "has-fw" = <01000000> + | | | | | "name" = <706d752d6d61696e00> + | | | | | "AAPL,phandle" = + | | | | | "ptmu-region-8-data" = <0062000080000000> + | | | | | "info-fault_name-28" = <75762c6273746c715f75766c6f00> + | | | | | "interrupts" = <02000000> + | | | | | "ptmu-region-15-data" = <006c000000040000> + | | | | | "info-fault_name-26" = <6f742c74656d705f6162735f6275636b3000> + | | | | | "info-fault_name-24" = <6f74705f63726300> + | | | | | "ptmu-region-12-data" = <0064000000020000> + | | | | | "info-fault_name-22" = <7373746174652c627574746f6e5f6466755f7265636f76657200> + | | | | | "info-rtc_scrpad" = <00f90000> + | | | | | "info-rtc_irq_mask_offset" = <0ef80000> + | | | | | "info-rtc_alarm_offset" = <08f80000> + | | | | | "info-fault_name-20" = <75762c7664646d61696e5f75766c6f5f686f6c6400> + | | | | | "info-fault_name-9" = <63726173682c63726173685f696e00> + | | | | | "ptmu-region-0-data" = <0060000040000000> + | | | | | "info-fault_name-5" = <75762c706f725f7761726e00> + | | | | | "info-rtc" = <02f80000> + | | | | | "info-fault_name-1" = <72737400> + | | | | | "info-fault_name-34" = <75762c7664645f626f6f73745f75766c6f00> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000CC") + | | | | | "ptmu-region-3-data" = + | | | | | "info-fault_name-32" = <63726173682c6879705f66775f637261736800> + | | | | | "info-scrpad_lpm_log" = <80a70000> + | | | | | "info-pm_setting" = <01f80000> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "info-fault_name-30" = <62746e5f7368646e00> + | | | | | "info-rtc_alarm_monitor_mask" = <01000000> + | | | | | "ptmu-region-6-data" = <8061000040000000> + | | | | | "ptmu-region-9-data" = <8062000080000000> + | | | | | "info-fault_name-19" = <7373746174652c77616c6c65745f63726173685f73657100> + | | | | | "ptmu-region-14-data" = <0068000000040000> + | | | | | "info-fault_name-17" = <6e74635f7368646e00> + | | | | | "info-has_slpsmc" = <01000000> + | | | | | "info-id" = <000000000a000000> + | | | | | "info-fault_name-15" = <7273745f696e2c72657365745f696e5f305f646561737365727400> + | | | | | "ptmu-region-11-data" = <8063000080000000> + | | | | | "info-has_phra" = <01000000> + | | | | | "upo-shutdown-delay" = <00000000> + | | | | | "info-fault_name-2" = <706f722c706f725f76646472746300> + | | | | | "info-fault_name-6" = <75762c7664646d61696e5f75766c6f00> + | | | | | "info-fault_name-13" = <6462675f7273742c72657365745f696e5f3200> + | | | | | "info-fault_name-11" = <7273745f696e2c72657365745f696e5f3000> + | | | | | "function-external_standby" = <9f0000005779656b4553424d> + | | | | | "info-fault_name-29" = <6f762c6273746c715f6f766c6f00> + | | | | | "info-rtc_alarm_mask" = <01000000> + | | | | | "info-rtc_alarm_ctrl" = <00f80000> + | | | | | "ptmu-region-1-data" = <4060000040000000> + | | | | | "info-fault_name-27" = <6f742c74656d705f6162735f6275636b3100> + | | | | | "info-leg_scrpad" = <00f70000> + | | | | | "IOInterruptSpecifiers" = (<02000000>) + | | | | | "info-fault_name-25" = <736770696f00> + | | | | | "info-fault_name-23" = <63726173682c7363726173685f696e00> + | | | | | "ptmu-region-4-data" = <0061000040000000> + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "info-fault_name-21" = <74696d656f75742c7761746368646f675f74696d656f757400> + | | | | | "info-clock_offset" = <00f9000006000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "ptmu-region-7-data" = + | | | | | "info-scrpad_socd" = <008b000000180000> + | | | | | "info-fault_name-7" = <6f762c7664646d61696e5f6f766c6f00> + | | | | | } + | | | | | + | | | | +-o AppleDialogSPMIPMU + | | | | | { + | | | | | "IOPMUBootUPOState" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPMUBootErrorAppName" = 0x0 + | | | | | "IOPMUBootLPMLog" = {"CAPA"=0x0,"BTLC"=0x0,"TMSc"=0x0,"PDDc"=0x0,"CCCs"=0x0,"STAT"=0x0,"TMS0"=0x0,"PDD0"=0x0,"CCCn"=0x0,"GGTm"=0x0,"VOLT"=0x0,"CCCu"=0x0} + | | | | | "IOPMUBootErrorStage" = 0x0 + | | | | | "IOPMUSPMITimeoutCount" = 0x0 + | | | | | "IOPMUBootErrorFaults" = () + | | | | | "IOFunctionParent000000CD" = <> + | | | | | "IONameMatched" = "pmu,spmi" + | | | | | "IOPMUBootReasonLPMSU" = 0x0 + | | | | | "IOPMUBootOff2WakeSource" = () + | | | | | "IOPMUBootFaultInfo" = ("wdog,reset_in_1") + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOPlatformActiveAction" = 0xbb8 + | | | | | "IOPMUPrimary" = 0x1 + | | | | | "IOPlatformSleepAction" = 0x190 + | | | | | "IOPMUBootDebug" = 0x20 + | | | | | "IOPlatformQuiesceAction" = 0x17ed0 + | | | | | "IOPMUBootAppName" = 0x0 + | | | | | "IOPMUBootErrorFailCount" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPMUBootErrorClear" = 0x0 + | | | | | "IOPMUBootErrorPanicCount" = 0x0 + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOPMUBootLPMFWSCC" = 0x0 + | | | | | "IOPMUBootSOCDClear" = 0x0 + | | | | | "IONameMatch" = "pmu,spmi" + | | | | | "IOClass" = "AppleDialogSPMIPMU" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPlatformWakeAction" = 0x190 + | | | | | "IOPMUBootLPMState" = 0x0 + | | | | | "IOPMUSPMIParityErrCount" = 0x0 + | | | | | "IOMatchCategory" = "AppleSPMIPMU" + | | | | | "IOPMUBootStage" = 0xff + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPMUBootUPOCounter" = 0x0 + | | | | | "IOPMUSPMINakCount" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleDialogSPMIPMURTC + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOMatchCategory" = "AppleSPMIPMURTC" + | | | | "IOClass" = "AppleDialogSPMIPMURTC" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOProviderClass" = "AppleDialogSPMIPMU" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOPlatformSleepAction" = 0x0 + | | | | } + | | | | + | | | +-o btm@E + | | | | { + | | | | "btm-pmu-type" = <09000000> + | | | | "compatible" = <62746d00> + | | | | "interrupt-parent" = + | | | | "interrupts" = <0c000000> + | | | | "AAPL,phandle" = + | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | "IOInterruptSpecifiers" = (<0c000000>) + | | | | "IOInterruptControllers" = ("IOInterruptController000000CC") + | | | | "device_type" = <62746d00> + | | | | "function-suspend_helper" = <8200000054523253> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "IOReportLegendPublic" = Yes + | | | | "#num-spmi-interrupts" = <01000000> + | | | | "name" = <62746d00> + | | | | } + | | | | + | | | +-o AppleBTM + | | | | { + | | | | "IOClass" = "AppleBTM" + | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0xd,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x2,"ElementCookie"=0xe,"Size"=0x3ea0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x3ea0,"Usage"=0x0}) + | | | | "Transport" = "SPMI" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBTM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "MaxInputReportSize" = 0x7d4 + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "Manufacturer" = "APPL" + | | | | "IOFunctionParent000000CE" = <> + | | | | "Product" = "BTM" + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x48}) + | | | | "IOProbeScore" = 0x0 + | | | | "ReportDescriptor" = <0600ff0a4800a1010629ff8501257f950175080901b1020902b1020925a10385022476983e090381220904761804b102c0c0> + | | | | "MaxOutputReportSize" = 0x1 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IONameMatch" = "btm" + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBTM" + | | | | "IOMatchCategory" = "AppleBTM" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBTM" + | | | | "IONameMatched" = "btm" + | | | | "PrimaryUsage" = 0x48 + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x3,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff29,"Max"=0x0,"IsArray"=No,"Type"=0x1,"Size"=0x3e98,"Min"=0x0,"Flags"=0x22,"ReportID"=0x2,"Usage"=0x3,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x3e98,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,$ + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x2,0x100020001,"Report 2")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "IOKitDebug" = 0xffff + | | | | "MaxFeatureReportSize" = 0x84 + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | { + | | | "MaxOutputReportSize" = 0x1 + | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | "Product" = "BTM" + | | | "PrimaryUsage" = 0x48 + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x48}) + | | | "Transport" = "SPMI" + | | | "ReportInterval" = 0x1f40 + | | | "ReportDescriptor" = <0600ff0a4800a1010629ff8501257f950175080901b1020902b1020925a10385022476983e090381220904761804b102c0c0> + | | | "Manufacturer" = "APPL" + | | | "PrimaryUsagePage" = 0xff00 + | | | "MaxFeatureReportSize" = 0x84 + | | | "MaxInputReportSize" = 0x7d4 + | | | } + | | | + | | +-o nub-spmi1@D4794000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4794000,"length"=0x4000}),({"address"=0x2e4784000,"length"=0x4000}),({"address"=0x2e4780000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000CF" + | | | | "IOInterruptControllers" = ("IOInterruptController000000CF","IOInterruptController00000069","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000$ + | | | | "name" = <6e75622d73706d693100> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000bf01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004079d4000000000040000000000000004078d4000000000040000000000000000078d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi1","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000CF" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o pmu-aux@E + | | | | { + | | | | "ptmu-region-1-data" = <4080000040000000> + | | | | "info-fault_log" = <0018000003000000> + | | | | "info-fault_name-12" = <73706d692c73706d695f6661756c7400> + | | | | "ptmu-region-12-data" = <0084000000020000> + | | | | "ptmu-region-13-data" = <0086000000020000> + | | | | "ptmu-region-4-data" = <0081000040000000> + | | | | "info-fault_name-5" = <7273745f696e2c72657365745f696e5f7269736500> + | | | | "ptmu-region-11-data" = <8083000080000000> + | | | | "ptmu-region-7-data" = + | | | | "ptmu-region-10-data" = <0083000080000000> + | | | | "IOInterruptSpecifiers" = (<02000000>) + | | | | "interrupt-parent" = + | | | | "hw-name" = <76616c6500> + | | | | "info-fault_name-6" = <7273745f696e2c72657365745f696e5f66616c6c00> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "interrupts" = <02000000> + | | | | "info-fault_name-13" = <75762c6273746c715f75766c6f00> + | | | | "info-fault_name-7" = <63726173682c7363726173685f696e00> + | | | | "ptmu-region-2-data" = <8080000040000000> + | | | | "ptmu-region-5-data" = <4081000040000000> + | | | | "ptmu-region-8-data" = <0082000080000000> + | | | | "info-fault_name-8" = <6e74635f7368646e00> + | | | | "info-fault_name-14" = <6f762c6273746c715f6f766c6f00> + | | | | "has-fw" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController000000CF") + | | | | "info-fault_name-9" = <74696d656f75742c7761746368646f675f746f00> + | | | | "AAPL,phandle" = + | | | | "info-scrpad" = <00a0000000080000> + | | | | "name" = <706d752d61757800> + | | | | "info-fault_name-0" = <706f7200> + | | | | "info-fault_name-10" = <6f74705f63726300> + | | | | "ptmu-region-0-data" = <0080000040000000> + | | | | "compatible" = <706d752c73706d6900706d752c76616c6500> + | | | | "info-fault_name-1" = <72737400> + | | | | "ptmu-region-3-data" = + | | | | "ptmu-region-6-data" = <8081000040000000> + | | | | "ptmu-region-9-data" = <8082000080000000> + | | | | "info-fault_name-16" = <63726173682c6879705f66775f637261736800> + | | | | "info-fault_name-2" = <6f742c6f76657274656d7000> + | | | | "info-leg_scrpad" = <00bb0000> + | | | | "IOReportLegendPublic" = Yes + | | | | "info-fault_name-11" = <736770696f00> + | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | "function-suspend_helper" = <8200000054523253> + | | | | "info-fault_name-3" = <75762c7664646d61696e5f75766c6f00> + | | | | "ptmu-region-15-data" = <008c000000040000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "info-fault_name-17" = <63726173682c6879705f68775f637261736800> + | | | | "info-id" = <000000000a000000> + | | | | "ptmu-region-14-data" = <0088000000040000> + | | | | "info-fault_name-4" = <6f762c7664646d61696e5f6f766c6f00> + | | | | } + | | | | + | | | +-o AppleDialogSPMIPMU + | | | { + | | | "IOPMUBootUPOState" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOPMUBootErrorAppName" = 0x0 + | | | "IOPMUBootErrorStage" = 0x0 + | | | "IOPMUSPMITimeoutCount" = 0x0 + | | | "IOFunctionParent000000D0" = <> + | | | "IOPMUBootErrorFaults" = () + | | | "IONameMatched" = "pmu,spmi" + | | | "IOPMUBootReasonLPMSU" = 0x0 + | | | "IOPMUBootOff2WakeSource" = () + | | | "IOPMUBootFaultInfo" = ("rst_in,reset_in_rise","rst_in,reset_in_fall") + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOPlatformActiveAction" = 0xbb8 + | | | "IOPlatformSleepAction" = 0x190 + | | | "IOPMUBootDebug" = 0x0 + | | | "IOPlatformQuiesceAction" = 0x17ed0 + | | | "IOPMUBootAppName" = 0x0 + | | | "IOPMUBootErrorFailCount" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPMUBootErrorClear" = 0x0 + | | | "IOPMUBootErrorPanicCount" = 0x0 + | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | "IOPMUBootLPMFWSCC" = 0x0 + | | | "IOPMUBootSOCDClear" = 0x0 + | | | "IONameMatch" = "pmu,spmi" + | | | "IOClass" = "AppleDialogSPMIPMU" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPlatformWakeAction" = 0x190 + | | | "IOPMUBootLPMState" = 0x0 + | | | "IOPMUSPMIParityErrCount" = 0x0 + | | | "IOMatchCategory" = "AppleSPMIPMU" + | | | "IOPMUBootStage" = 0x30 + | | | "IOProbeScore" = 0x0 + | | | "IOPMUBootUPOCounter" = 0x0 + | | | "IOPMUSPMINakCount" = 0x0 + | | | } + | | | + | | +-o nub-spmi-a0@D4908000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4908000,"length"=0x4000}),({"address"=0x2e4904000,"length"=0x4000}),({"address"=0x2e4900000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D1" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController00000069","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000$ + | | | | "name" = <6e75622d73706d692d613000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000cd01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <008090d4000000000040000000000000004090d4000000000040000000000000000090d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi-a0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c74303$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o hpm0@C + | | | | | { + | | | | | "dock" = <22010000> + | | | | | "reg" = <0c0000000300000000000000040000000000000000000000> + | | | | | "port-location" = <6c6566742d6261636b00> + | | | | | "IOInterruptSpecifiers" = (<0b000000>,<11000000>,<13000000>) + | | | | | "AAPL,phandle" = + | | | | | "IOReportLegendPublic" = Yes + | | | | | "uart-hpm-rids" = <01000000> + | | | | | "feature-ldcm-arch-version" = <04000000> + | | | | | "acio-parent" = <52000000> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "transports-supported" = <0100000002000000030000000400000005000000> + | | | | | "features-supported" = <010000000200000003000000> + | | | | | "interrupt-parent" = + | | | | | "port-type" = <02000000> + | | | | | "name" = <68706d3000> + | | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | | "interrupts" = <0b0000001100000013000000> + | | | | | "interrupt-type" = <000000000200000003000000> + | | | | | "hpm-class-type" = <0a000000> + | | | | | "tag-number" = <01000000> + | | | | | "port-number" = <01000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "usbc-update-protocol" = <01000000> + | | | | | "rid" = <00000000> + | | | | | "feature-ldcm-hw-version" = <01000000> + | | | | | } + | | | | | + | | | | +-o AppleHPMARMSPMI + | | | | | { + | | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HPM RTPC Enabled" = Yes + | | | | | "RID" = 0x0 + | | | | | "HPM In RTPC" = Yes + | | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | } + | | | | | + | | | | +-o AppleHPMDeviceHALType3@C + | | | | | { + | | | | | "I2C Read Failed" = No + | | | | | "HPM Mode Register on Boot" = <41505020> + | | | | | "Status Reg" = 0x108282ff + | | | | | "Version" = 0x306300 + | | | | | "Revision" = 0x22 + | | | | | "Data Status Reg" = 0xffffffff80008573 + | | | | | "CF VID Status Reg" = <000000a49901ff0000000001ff000001ff0000034001> + | | | | | "RID" = 0x0 + | | | | | "UUID" = "15459D1C-4D0F-E74C-F6AB-2269C93CC921" + | | | | | "Address" = 0xc + | | | | | "Device ID" = 0x2012025 + | | | | | "Revision ID" = 0xa2 + | | | | | "Vendor ID" = 0x28 + | | | | | } + | | | | | + | | | | +-o Port-USB-C@1 + | | | | | { + | | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | | "PortTypeDescription" = "USB-C" + | | | | | "FeaturesEnabled" = ("TRM","LDCM","Power In") + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "FW Version" = <00633000> + | | | | | "ActiveCable" = No + | | | | | "IOAccessoryPowerMode" = 0x1 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "ConnectionCount" = 0x6 + | | | | | "LDCM_StateDescription" = "Idle" + | | | | | "AuthorizationPending" = No + | | | | | "IOAccessoryUSBConnectType" = 0x4 + | | | | | "Pin Configuration" = {"sbu1"=0x2,"tx1"=0x6,"rx2"=0x4,"tx2"=0x3,"sbu2"=0x1,"rx1"=0x5} + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOProbeScore" = 0x6e + | | | | | "IOClass" = "AppleHPMInterfaceType10" + | | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | | "LDCM_State" = 0x1 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOUserClientClass" = "IOPortUserClient" + | | | | | "IOAccessoryPrimaryDevicePort" = 0x1 + | | | | | "Boot Flags" = <610310000160041e00000000> + | | | | | "OpticalCable" = No + | | | | | "Description" = "Port-USB-C@1" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "BuiltIn" = Yes + | | | | | "LDCM_UserOverrideActive" = No + | | | | | "AppLoaded Count" = 0x1 + | | | | | "IOAccessoryManagerType" = 0x3 + | | | | | "TransportsProvisioned" = ("CC","USB2","USB3","DisplayPort") + | | | | | "Overcurrent Count" = 0x0 + | | | | | "LDCMPin" = 0x1 + | | | | | "IOAccessoryUSBSuperSpeedActive" = Yes + | | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | | "AuthorizationRequired" = Yes + | | | | | "Metadata" = {} + | | | | | "IOAccessoryUSBConnectString" = "Device" + | | | | | "TransportsSupported" = ("CC","USB2","USB3","CIO","DisplayPort") + | | | | | "IOAccessoryUSBConnectTypePublished" = 0x4 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | "IOAccessoryUSBActive" = Yes + | | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | | "UserAuthorizationStatusDescription" = "No Action" + | | | | | "UserAuthorizationPending" = No + | | | | | "HPDAsserted" = Yes + | | | | | "PortDescription" = "Port-USB-C@1" + | | | | | "TransportsUnauthorized" = () + | | | | | "ConnectionActive" = Yes + | | | | | "DisplayPortPinAssignment" = Yes + | | | | | "IOFunctionParent00000122" = <> + | | | | | "PortType" = 0x2 + | | | | | "AutoMatched" = No + | | | | | "PlugOrientation" = 0x2 + | | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | | "IOAccessoryID" = 0x53 + | | | | | "LDCMPinDescription" = "Reference" + | | | | | "IOAccessoryUSBModeType" = 0x2 + | | | | | "FeaturesSupported" = ("TRM","LDCM","Power In") + | | | | | "LDCM_LiquidDetected" = No + | | | | | "IOAccessoryManagerSleepPower" = No + | | | | | "HChk" = <630000000000> + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "LDCM_MeasurementStatusDescription" = "No Error" + | | | | | "PortNumber" = 0x1 + | | | | | "TransportsActive" = ("CC","USB2","USB3","DisplayPort") + | | | | | "LDCM_MitigationsEnabled" = No + | | | | | "Plug Event Count" = 0xc + | | | | | "UserAuthorizationStatus" = 0x1 + | | | | | "AccessoryMode" = 0x0 + | | | | | "ConnectionUUID" = "46CCC0B5-0882-4521-B33B-0B21DC8DD0AD" + | | | | | "SOP UVDM Update Count" = 0x2 + | | | | | "LDCM_MeasurementStatus" = 0x0 + | | | | | "IOAccessoryDetect" = Yes + | | | | | } + | | | | | + | | | | +-o CC + | | | | | | { + | | | | | | "Vendor ID (SOP)" = 0x57e + | | | | | | "TRM_TransportSupervised" = No + | | | | | | "ParentPortType" = 0x2 + | | | | | | "ParentPortBuiltIn" = Yes + | | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | | "AuthenticationStatus" = 0x0 + | | | | | | "HashStatus" = 0x0 + | | | | | | "HashStatusDescription" = "Not Set" + | | | | | | "Index" = 0x0 + | | | | | | "Tunneled" = No + | | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | | "TransportType" = 0x1 + | | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | | "ParentPortNumber" = 0x1 + | | | | | | "DriverStatusDescription" = "Not Monitored" + | | | | | | "AuthorizationRequired" = No + | | | | | | "Metadata" = {"Product ID (SOP)"=0x2003,"Vendor ID (SOP)"=0x57e} + | | | | | | "AuthenticationRequired" = No + | | | | | | "TransportTypeDescription" = "CC" + | | | | | | "AuthorizationStatus" = 0x0 + | | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | | "TransportDescription" = "Port-USB-C@1/CC" + | | | | | | "DriverStatus" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Product ID (SOP)" = 0x2003 + | | | | | | "Active" = Yes + | | | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | | | } + | | | | | | + | | | | | +-o SOP + | | | | | { + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "Metadata" = {"Product ID"=0x2003,"Vendor ID"=0x57e,"VDO Count"=0x4,"bcdDevice"=0x1,"VDOs"=(<7e05606c>,<00000000>,<01000320>,<0a000051>)} + | | | | | "AddressDescription" = "SOP" + | | | | | "Address Description" = "SOP" + | | | | | "Description" = "Port-USB-C@1/CC/SOP" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "Specification Revision" = 0x3 + | | | | | "ComponentName" = "SOP" + | | | | | "Product ID" = 0x2003 + | | | | | "ParentTransportType" = 0x1 + | | | | | "Address" = 0x1 + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentTransportTypeDescription" = "Port-USB-C@1/CC" + | | | | | "ParentPortNumber" = 0x1 + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "Vendor ID" = 0x57e + | | | | | } + | | | | | + | | | | +-o LDCM + | | | | | { + | | | | | "ParentPortType" = 0x2 + | | | | | "StateDescription" = "Hardware Controlled" + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ArchitectureVersion" = 0x4 + | | | | | "FeatureTypeDescription" = "LDCM" + | | | | | "MitigationsEnabled" = No + | | | | | "FeatureType" = 0x2 + | | | | | "LiquidDetected" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "MitigationsStatus" = 0x0 + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "IOUserClientClass" = "IOPortFeatureLDCMUserClient" + | | | | | "ParentPortNumber" = 0x1 + | | | | | "UserOverrideActive" = No + | | | | | "State" = 0x0 + | | | | | "Metadata" = {} + | | | | | "FirmwareVersion" = "003.0063" + | | | | | "MeasurementStatus" = 0x0 + | | | | | "Description" = "Port-USB-C@1/LDCM" + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "HardwareVersion" = 0x1 + | | | | | "Data" = <000094f75f0378dd4cfbe02e73111900000000004d274b270400801c5b1c8e4e944efc1f0920008f9a1960a49819dd0343ff000000daa1> + | | | | | "MeasurementStatusDescription" = "No Error" + | | | | | } + | | | | | + | | | | +-o Power In + | | | | | { + | | | | | "Active" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "Metadata" = {} + | | | | | "Description" = "Port-USB-C@1/Power In" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | | | "FeatureTypeDescription" = "Power In" + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ParentPortNumber" = 0x1 + | | | | | "FeatureType" = 0x3 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | } + | | | | | + | | | | +-o USB2 + | | | | | { + | | | | | "GenerationDescription" = "USB 2.0" + | | | | | "DataRate" = 0x3 + | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "TransportTypeDescription" = "USB2" + | | | | | "DriverStatus" = 0x2 + | | | | | "AuthorizationRequired" = Yes + | | | | | "AuthorizationStatus" = 0x2 + | | | | | "Index" = 0x0 + | | | | | "TRM_RelaxedPeriod" = Yes + | | | | | "TRM_DeviceLocked" = No + | | | | | "Generation" = 0x1 + | | | | | "AuthenticationStatus" = 0x0 + | | | | | "TRM_TransportRestricted" = No + | | | | | "TRM_State" = 0x2 + | | | | | "TRM_IdentificationRestricted" = No + | | | | | "TransportDescription" = "Port-USB-C@1/USB2" + | | | | | "Product ID" = 0x610 + | | | | | "Product" = "USB2.1 Hub" + | | | | | "Device Class" = 0x9 + | | | | | "ParentPortType" = 0x2 + | | | | | "Manufacturer" = "GenesysLogic" + | | | | | "TRM_TransportSupervised" = Yes + | | | | | "AuthorizationStatusDescription" = "Policy Authorized" + | | | | | "ParentPortBuiltIn" = Yes + | | | | | "ParentPortNumber" = 0x1 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "Metadata" = {"Device Class"=0x9,"Manufacturer"="GenesysLogic","Device Subclass"=0x0,"Vendor ID"=0x5e3,"Product ID"=0x610,"Product"="USB2.1 Hub","Device Protocol"=0x1,"Device Function"=0x3} + | | | | | "Active" = Yes + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "DriverStatusDescription" = "Ready" + | | | | | "AuthenticationRequired" = No + | | | | | "HashStatusDescription" = "Cached" + | | | | | "Vendor ID" = 0x5e3 + | | | | | "Device Subclass" = 0x0 + | | | | | "TRM_CacheMiss" = No + | | | | | "Tunneled" = No + | | | | | "PortDataRole" = 0x2 + | | | | | "TRM_GracePeriodReason" = 0x4 + | | | | | "DataRateDescription" = "480 Mbps (High Speed)" + | | | | | "Device Protocol" = 0x1 + | | | | | "NominalSignalingFrequenciesHz" = [0xe4e1c00] + | | | | | "DataRoleDescription" = "Host" + | | | | | "DataRole" = 0x2 + | | | | | "PortDataRoleDescription" = "Host" + | | | | | "TransportType" = 0x2 + | | | | | "TRM_StateDescription" = "Limited" + | | | | | "HashStatus" = 0x3 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | "TRM_GracePeriodReasonDescription" = "Device Unlocked" + | | | | | } + | | | | | + | | | | +-o USB3 + | | | | | { + | | | | | "SuperSpeedSignaling" = 0x1 + | | | | | "TransportTypeDescription" = "USB3" + | | | | | "TRM_TransportRestricted" = No + | | | | | "TRM_State" = 0x2 + | | | | | "TransportDescription" = "Port-USB-C@1/USB3" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "AuthorizationStatus" = 0x2 + | | | | | "Tunneled" = No + | | | | | "DataRole" = 0x2 + | | | | | "NominalSignalingFrequenciesHz" = [0x1c9c380,0x9502f900] + | | | | | "DriverStatus" = 0x2 + | | | | | "DataRateDescription" = "5 Gbps" + | | | | | "DriverStatusDescription" = "Ready" + | | | | | "TransportType" = 0x3 + | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | "Device Subclass" = 0x0 + | | | | | "SuperSpeedSignalingDescription" = "Gen 1" + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "Active" = Yes + | | | | | "TRM_TransportSupervised" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | "TRM_GracePeriodReason" = 0x4 + | | | | | "Vendor ID" = 0x5e3 + | | | | | "Index" = 0x0 + | | | | | "PortDataRole" = 0x2 + | | | | | "HashStatus" = 0x3 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "Product" = "USB3.1 Hub" + | | | | | "Device Protocol" = 0x3 + | | | | | "AuthenticationRequired" = No + | | | | | "Product ID" = 0x626 + | | | | | "AuthorizationStatusDescription" = "Policy Authorized" + | | | | | "TRM_RelaxedPeriod" = Yes + | | | | | "AuthorizationRequired" = Yes + | | | | | "Metadata" = {"Device Class"=0x9,"Manufacturer"="GenesysLogic","Device Subclass"=0x0,"Vendor ID"=0x5e3,"Product ID"=0x626,"Product"="USB3.1 Hub","Device Protocol"=0x3,"Device Function"=0x3} + | | | | | "TRM_DeviceLocked" = No + | | | | | "AuthenticationStatus" = 0x0 + | | | | | "HashStatusDescription" = "Cached" + | | | | | "TRM_IdentificationRestricted" = No + | | | | | "TRM_CacheMiss" = No + | | | | | "GenerationDescription" = "USB 3.x" + | | | | | "DataRate" = 0x1 + | | | | | "ParentPortBuiltIn" = Yes + | | | | | "TRM_StateDescription" = "Limited" + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentPortNumber" = 0x1 + | | | | | "DataRoleDescription" = "Host" + | | | | | "PortDataRoleDescription" = "Host" + | | | | | "Generation" = 0x2 + | | | | | "TRM_GracePeriodReasonDescription" = "Device Unlocked" + | | | | | "Manufacturer" = "GenesysLogic" + | | | | | "Device Class" = 0x9 + | | | | | } + | | | | | + | | | | +-o DisplayPort + | | | | { + | | | | "DriverStatus" = 0x2 + | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | "HPD_StateDescription" = "High" + | | | | "TransportTypeDescription" = "DisplayPort" + | | | | "SinkCount" = 0x1 + | | | | "AuthorizationRequired" = No + | | | | "AuthorizationStatus" = 0x0 + | | | | "Index" = 0x0 + | | | | "AuthenticationStatus" = 0x0 + | | | | "ProductName" = "Acer G235H" + | | | | "SerialNumber" = 0x3203ae8 + | | | | "LinkRateDescription" = "8.1 Gbps (HBR3)" + | | | | "TransportDescription" = "Port-USB-C@1/DisplayPort" + | | | | "ParentPortType" = 0x2 + | | | | "TRM_TransportSupervised" = No + | | | | "ProductID" = 0x113 + | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | "ParentPortBuiltIn" = Yes + | | | | "ParentPortNumber" = 0x1 + | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | "Metadata" = {"ProductID"=0x113,"Year of Manufacture"=0x7da,"SerialNumber"=0x3203ae8,"EDID"=<00ffffffffffff0004721301e83a20032014010380331d782ac285a4564d9c25125054b30c00714f810081809500b300d1c001010101023a801871382d40582c4500fe1f1100001e000000fd00384b1e5311000a202020202020000000fc00416365722047323335480a2020000000ff004c4a4b3057303034343333300a0006>,"ProductName"="Acer G235H","Week of Manufacture"=0x20,"DFP Type"=0x0,"DFP Type Description"="DP","ManufacturerName"="ACR"} + | | | | "Active" = Yes + | | | | "ParentBuiltInPortType" = 0x2 + | | | | "DriverStatusDescription" = "Ready" + | | | | "AuthenticationRequired" = No + | | | | "HashStatusDescription" = "Not Set" + | | | | "EDID" = <00ffffffffffff0004721301e83a20032014010380331d782ac285a4564d9c25125054b30c00714f810081809500b300d1c001010101023a801871382d40582c4500fe1f1100001e000000fd00384b1e5311000a202020202020000000fc00416365722047323335480a2020000000ff004c4a4b3057303034343333300a0006> + | | | | "RoleDescription" = "Source" + | | | | "LaneCount" = 0x2 + | | | | "LinkRate" = 0x4 + | | | | "HPD_State" = 0x2 + | | | | "Tunneled" = No + | | | | "ManufacturerName" = "ACR" + | | | | "NominalSignalingFrequenciesHz" = [0x1e2cc3100] + | | | | "MaxLaneCount" = 0x2 + | | | | "TransportType" = 0x5 + | | | | "HashStatus" = 0x0 + | | | | "EDIDChanged" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Role" = 0x2 + | | | | "ParentPortTypeDescription" = "USB-C" + | | | | "AuthenticationStatusDescription" = "Idle" + | | | | } + | | | | + | | | +-o hpm1@A + | | | | | { + | | | | | "rid" = <01000000> + | | | | | "feature-ldcm-hw-version" = <01000000> + | | | | | "IOInterruptSpecifiers" = (<25000000>,<2b000000>,<2d000000>) + | | | | | "AAPL,phandle" = + | | | | | "IOReportLegendPublic" = Yes + | | | | | "feature-ldcm-arch-version" = <04000000> + | | | | | "acio-parent" = <60000000> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "transports-supported" = <0100000002000000030000000400000005000000> + | | | | | "features-supported" = <010000000200000003000000> + | | | | | "interrupt-parent" = + | | | | | "port-type" = <02000000> + | | | | | "name" = <68706d3100> + | | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | | "interrupts" = <250000002b0000002d000000> + | | | | | "interrupt-type" = <000000000200000003000000> + | | | | | "hpm-class-type" = <0a000000> + | | | | | "port-number" = <02000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "dock" = <23010000> + | | | | | "reg" = <0a0000000300000000000000040000000000000000000000> + | | | | | "port-location" = <6c6566742d66726f6e7400> + | | | | | } + | | | | | + | | | | +-o AppleHPMARMSPMI + | | | | | { + | | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HPM RTPC Enabled" = Yes + | | | | | "RID" = 0x1 + | | | | | "HPM In RTPC" = Yes + | | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | } + | | | | | + | | | | +-o AppleHPMDeviceHALType3@A + | | | | | { + | | | | | "I2C Read Failed" = No + | | | | | "HPM Mode Register on Boot" = <41505020> + | | | | | "Status Reg" = 0x10000000 + | | | | | "Version" = 0x306300 + | | | | | "Revision" = 0x22 + | | | | | "Data Status Reg" = 0x0 + | | | | | "CF VID Status Reg" = <00000000000000000000000000000000000000000000> + | | | | | "RID" = 0x1 + | | | | | "UUID" = "EAE59D1C-DB31-CD73-2891-735AEE721C03" + | | | | | "Address" = 0xa + | | | | | "Device ID" = 0x2012025 + | | | | | "Revision ID" = 0xa2 + | | | | | "Vendor ID" = 0x28 + | | | | | } + | | | | | + | | | | +-o Port-USB-C@2 + | | | | | { + | | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | | "PortTypeDescription" = "USB-C" + | | | | | "FeaturesEnabled" = ("TRM","LDCM","Power In") + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "FW Version" = <00633000> + | | | | | "ActiveCable" = No + | | | | | "IOAccessoryPowerMode" = 0x1 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "ConnectionCount" = 0x0 + | | | | | "LDCM_StateDescription" = "Idle" + | | | | | "IOAccessoryUSBConnectType" = 0x0 + | | | | | "Pin Configuration" = {"sbu1"=0x0,"tx1"=0x0,"rx2"=0x0,"tx2"=0x0,"sbu2"=0x0,"rx1"=0x0} + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOProbeScore" = 0x6e + | | | | | "IOClass" = "AppleHPMInterfaceType10" + | | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | | "LDCM_State" = 0x1 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOAccessoryPrimaryDevicePort" = 0x102 + | | | | | "Boot Flags" = <810400000100101e00000000> + | | | | | "OpticalCable" = No + | | | | | "Description" = "Port-USB-C@2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "BuiltIn" = Yes + | | | | | "LDCM_UserOverrideActive" = No + | | | | | "AppLoaded Count" = 0x1 + | | | | | "IOAccessoryManagerType" = 0x3 + | | | | | "TransportsProvisioned" = ("CC") + | | | | | "Overcurrent Count" = 0x0 + | | | | | "LDCMPin" = 0x1 + | | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | | "AuthorizationRequired" = No + | | | | | "Metadata" = {} + | | | | | "TransportsSupported" = ("CC","USB2","USB3","CIO","DisplayPort") + | | | | | "IOAccessoryUSBConnectTypePublished" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | "IOAccessoryUSBActive" = Yes + | | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | | "UserAuthorizationStatusDescription" = "Not Required" + | | | | | "HPDAsserted" = No + | | | | | "PortDescription" = "Port-USB-C@2" + | | | | | "ConnectionActive" = No + | | | | | "DisplayPortPinAssignment" = 0x0 + | | | | | "PortType" = 0x2 + | | | | | "AutoMatched" = No + | | | | | "PlugOrientation" = 0x0 + | | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | | "IOFunctionParent00000123" = <> + | | | | | "IOAccessoryID" = 0x64 + | | | | | "LDCMPinDescription" = "Reference" + | | | | | "IOAccessoryUSBModeType" = 0x4 + | | | | | "FeaturesSupported" = ("TRM","LDCM","Power In") + | | | | | "LDCM_LiquidDetected" = No + | | | | | "IOAccessoryManagerSleepPower" = No + | | | | | "HChk" = <000000000000> + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "LDCM_MeasurementStatusDescription" = "No Error" + | | | | | "PortNumber" = 0x2 + | | | | | "TransportsActive" = () + | | | | | "LDCM_MitigationsEnabled" = No + | | | | | "Plug Event Count" = 0x1 + | | | | | "UserAuthorizationStatus" = 0x0 + | | | | | "AccessoryMode" = 0x0 + | | | | | "SOP UVDM Update Count" = 0x0 + | | | | | "LDCM_MeasurementStatus" = 0x0 + | | | | | "IOAccessoryDetect" = No + | | | | | } + | | | | | + | | | | +-o CC + | | | | | { + | | | | | "TRM_TransportSupervised" = No + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentPortBuiltIn" = Yes + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "AuthenticationStatus" = 0x0 + | | | | | "HashStatus" = 0x0 + | | | | | "HashStatusDescription" = "Not Set" + | | | | | "Index" = 0x0 + | | | | | "Tunneled" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "TransportType" = 0x1 + | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | "ParentPortNumber" = 0x2 + | | | | | "DriverStatusDescription" = "Not Monitored" + | | | | | "AuthorizationRequired" = No + | | | | | "Metadata" = {} + | | | | | "AuthenticationRequired" = No + | | | | | "TransportTypeDescription" = "CC" + | | | | | "AuthorizationStatus" = 0x0 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "TransportDescription" = "Port-USB-C@2/CC" + | | | | | "DriverStatus" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Active" = No + | | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | | } + | | | | | + | | | | +-o LDCM + | | | | | { + | | | | | "ParentPortType" = 0x2 + | | | | | "StateDescription" = "Hardware Controlled" + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ArchitectureVersion" = 0x4 + | | | | | "FeatureTypeDescription" = "LDCM" + | | | | | "MitigationsEnabled" = No + | | | | | "FeatureType" = 0x2 + | | | | | "LiquidDetected" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "MitigationsStatus" = 0x0 + | | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | | "IOUserClientClass" = "IOPortFeatureLDCMUserClient" + | | | | | "ParentPortNumber" = 0x2 + | | | | | "UserOverrideActive" = No + | | | | | "State" = 0x0 + | | | | | "Metadata" = {} + | | | | | "FirmwareVersion" = "003.0063" + | | | | | "MeasurementStatus" = 0x0 + | | | | | "Description" = "Port-USB-C@2/LDCM" + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | "HardwareVersion" = 0x1 + | | | | | "Data" = <00006c4b7f016c1e24fda46c3c022a0000000000582755270a00721c671c984e9b4efa1ff71fe01d9a1960159919fada42ff00000012a4> + | | | | | "MeasurementStatusDescription" = "No Error" + | | | | | } + | | | | | + | | | | +-o Power In + | | | | { + | | | | "Active" = No + | | | | "ParentPortTypeDescription" = "USB-C" + | | | | "Metadata" = {} + | | | | "Description" = "Port-USB-C@2/Power In" + | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | | "FeatureTypeDescription" = "Power In" + | | | | "ParentPortType" = 0x2 + | | | | "ParentBuiltInPortType" = 0x2 + | | | | "ParentPortNumber" = 0x2 + | | | | "FeatureType" = 0x3 + | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | } + | | | | + | | | +-o hpm5@8 + | | | | { + | | | | "dock" = <24010000> + | | | | "IOInterruptSpecifiers" = (<3f000000>,<45000000>,<47000000>) + | | | | "AAPL,phandle" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "transports-supported" = <> + | | | | "features-supported" = <03000000> + | | | | "interrupt-parent" = + | | | | "port-type" = <11000000> + | | | | "name" = <68706d3500> + | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | "interrupts" = <3f0000004500000047000000> + | | | | "interrupt-type" = <000000000200000003000000> + | | | | "hpm-class-type" = <0b000000> + | | | | "tag-number" = <02000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "usbc-update-protocol" = <01000000> + | | | | "reg" = <080000000300000000000000040000000000000000000000> + | | | | "rid" = <05000000> + | | | | } + | | | | + | | | +-o AppleHPMARMSPMI + | | | | { + | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "HPM RTPC Enabled" = Yes + | | | | "RID" = 0x5 + | | | | "HPM In RTPC" = Yes + | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | } + | | | | + | | | +-o AppleHPMDeviceHALType3@8 + | | | | { + | | | | "I2C Read Failed" = No + | | | | "HPM Mode Register on Boot" = <41505020> + | | | | "Status Reg" = 0x10000000 + | | | | "Version" = 0x306300 + | | | | "Revision" = 0x22 + | | | | "Data Status Reg" = 0x0 + | | | | "CF VID Status Reg" = <00000000000000000000000000000000000000034000> + | | | | "RID" = 0x5 + | | | | "UUID" = "EB299E1C-6709-9672-C5F8-AD5AC6637C57" + | | | | "Address" = 0x8 + | | | | "Device ID" = 0x2012025 + | | | | "Revision ID" = 0xa2 + | | | | "Vendor ID" = 0x28 + | | | | } + | | | | + | | | +-o Port-MagSafe 3@1 + | | | | { + | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | "PortTypeDescription" = "MagSafe 3" + | | | | "FeaturesEnabled" = ("Power In") + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | "FW Version" = <00633000> + | | | | "ActiveCable" = No + | | | | "IOAccessoryPowerMode" = 0x1 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "ConnectionCount" = 0x7 + | | | | "IOAccessoryUSBConnectType" = 0x0 + | | | | "Pin Configuration" = {"sbu1"=0x0,"tx1"=0x0,"rx2"=0x0,"tx2"=0x0,"sbu2"=0x0,"rx1"=0x0} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOProbeScore" = 0x6e + | | | | "IOClass" = "AppleHPMInterfaceType11" + | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | "IOAccessoryPrimaryDevicePort" = 0x105 + | | | | "Boot Flags" = <610310000160041e00000000> + | | | | "OpticalCable" = No + | | | | "Description" = "Port-MagSafe 3@1" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | "BuiltIn" = Yes + | | | | "AppLoaded Count" = 0x1 + | | | | "IOAccessoryManagerType" = 0x3 + | | | | "TransportsProvisioned" = ("CC") + | | | | "Overcurrent Count" = 0x0 + | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | "AuthorizationRequired" = No + | | | | "Metadata" = {} + | | | | "TransportsSupported" = () + | | | | "IOAccessoryUSBConnectTypePublished" = 0x0 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | "IOAccessoryUSBActive" = Yes + | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | "UserAuthorizationStatusDescription" = "Not Required" + | | | | "HPDAsserted" = No + | | | | "PortDescription" = "Port-MagSafe 3@1" + | | | | "ConnectionActive" = No + | | | | "DisplayPortPinAssignment" = 0x0 + | | | | "PortType" = 0x11 + | | | | "AutoMatched" = No + | | | | "PlugOrientation" = 0x0 + | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | "IOAccessoryID" = 0x64 + | | | | "IOAccessoryUSBModeType" = 0x4 + | | | | "FeaturesSupported" = ("Power In") + | | | | "IOFunctionParent00000124" = <> + | | | | "IOAccessoryManagerSleepPower" = No + | | | | "HChk" = <630000000000> + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "PortNumber" = 0x1 + | | | | "TransportsActive" = () + | | | | "Plug Event Count" = 0xf + | | | | "UserAuthorizationStatus" = 0x0 + | | | | "AccessoryMode" = 0x0 + | | | | "SOP UVDM Update Count" = 0x0 + | | | | "IOAccessoryDetect" = No + | | | | } + | | | | + | | | +-o CC + | | | | { + | | | | "TRM_TransportSupervised" = No + | | | | "ParentPortType" = 0x11 + | | | | "ParentPortBuiltIn" = Yes + | | | | "ParentBuiltInPortType" = 0x11 + | | | | "AuthenticationStatus" = 0x0 + | | | | "HashStatus" = 0x0 + | | | | "HashStatusDescription" = "Not Set" + | | | | "Index" = 0x0 + | | | | "Tunneled" = No + | | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | | "TransportType" = 0x1 + | | | | "AuthenticationStatusDescription" = "Idle" + | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | "ParentPortNumber" = 0x1 + | | | | "DriverStatusDescription" = "Not Monitored" + | | | | "AuthorizationRequired" = No + | | | | "Metadata" = {} + | | | | "AuthenticationRequired" = No + | | | | "TransportTypeDescription" = "CC" + | | | | "AuthorizationStatus" = 0x0 + | | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | | "TransportDescription" = "Port-MagSafe 3@1/CC" + | | | | "DriverStatus" = 0x0 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Active" = No + | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | } + | | | | + | | | +-o Power In + | | | { + | | | "Active" = No + | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | "Metadata" = {} + | | | "Description" = "Port-MagSafe 3@1/Power In" + | | | "ParentBuiltInPortNumber" = 0x1 + | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | "FeatureTypeDescription" = "Power In" + | | | "ParentPortType" = 0x11 + | | | "ParentBuiltInPortType" = 0x11 + | | | "ParentPortNumber" = 0x1 + | | | "FeatureType" = 0x3 + | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | } + | | | + | | +-o aop-spmi0@E4894000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,<96010000>,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2f4894000,"length"=0x4000}),({"address"=0x2f4884000,"length"=0x4000}),({"address"=0x2f4880000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D5" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D5","IOInterruptController00000069","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000$ + | | | | "name" = <616f702d73706d693000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <000100009601000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004089e4000000000040000000000000004088e4000000000040000000000000000088e4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="aop-spmi0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D5" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o spmi-wifibt@E + | | | { + | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | "interrupt-parent" = + | | | "name" = <73706d692d77696669627400> + | | | "AAPL,phandle" = + | | | } + | | | + | | +-o aop-spmi1@E48D4000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,<9a010000>,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2f48d4000,"length"=0x4000}),({"address"=0x2f48c4000,"length"=0x4000}),({"address"=0x2f48c0000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D7" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D7","IOInterruptController00000069","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000$ + | | | | "name" = <616f702d73706d693100> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <000100009a01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <00408de400000000004000000000000000408ce400000000004000000000000000008ce4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="aop-spmi1","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D7" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o stockholm-spmi@9 + | | | | { + | | | | "nfccModel" = <60000000> + | | | | "compatible" = <6e66632c7072696d6172792c73706d6900> + | | | | "interrupt-parent" = + | | | | "AAPL,phandle" = + | | | | "interrupts" = + | | | | "reg" = <090000000300000000000000040000000000000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "IOInterruptControllers" = ("IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7") + | | | | "device_type" = <73746f636b686f6c6d2d73706d6900> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200050000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200050001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200050002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200050003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200050004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "IOReportLegendPublic" = Yes + | | | | "required-functions" = <737570706f72745f646174615f6f7665725f73706d6900737570706f72745f686f73745f77616b655f73706d6900> + | | | | "#num-spmi-interrupts" = <07000000> + | | | | "name" = <73746f636b686f6c6d2d73706d6900> + | | | | "hw-config-tlvs" = <4131393330313030413139343031303200> + | | | | } + | | | | + | | | +-o AppleStockholmSPMI + | | | | { + | | | | "IOClass" = "AppleStockholmSPMI" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleStockholmControl" + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "nfc.log" = Yes + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "nfc,primary,spmi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleStockholmControl" + | | | | "stockholm-spmi-data-socket" = Yes + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IONameMatched" = "nfc,primary,spmi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleStockholmControl" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleStockholmControl" + | | | | } + | | | | + | | | +-o stockholm + | | | | { + | | | | "device_type" = <73746f636b686f6c6d00> + | | | | "required-gpios" = <737570706f72745f76656e61626c6500737570706f72745f7669727475616c5f6770696f00> + | | | | "function-enable" = <9f00000034574b706630506700008000> + | | | | "name" = <73746f636b686f6c6d00> + | | | | "AAPL,phandle" = + | | | | "compatible" = <6e66632c7072696d6172792c6770696f00> + | | | | } + | | | | + | | | +-o AppleStockholmControl + | | | { + | | | "IOClass" = "AppleStockholmControl" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleStockholmControl" + | | | "IOProviderClass" = "IOService" + | | | "IOPowerManagement" = {"DesiredPowerState"=0x1,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | "IOUserClientClass" = "AppleStockholmControlUserClient" + | | | "nfc.log" = Yes + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "nfc,primary,gpio" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleStockholmControl" + | | | "IONameMatched" = "nfc,primary,gpio" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleStockholmControl" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleStockholmControl" + | | | } + | | | + | | +-o lcd0-sac + | | | { + | | | "device_type" = <6c7064702d73616300> + | | | "function-saca_cdi0" = <260100004143415330696463> + | | | "function-saca_edp0" = <260100004143415330706465> + | | | "AAPL,phandle" = + | | | "name" = <6c6364302d73616300> + | | | } + | | | + | | +-o disp0@7C000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<24020000>,<37020000>,<27020000>,<26020000>,<25020000>,<2c020000>,<22020000>,<30020000>,<2b020000>) + | | | | "aot-power" = <01000000> + | | | | "clock-gates" = <91010000910100009201000093010000> + | | | | "dot-pitch" = + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28c000000,"length"=0x690000}),({"address"=0x28c800000,"length"=0x690000}),({"address"=0x28d320000,"length"=0x4000}),({"address"=0x28d344000,"length"=0x4000}),({"address"=0x28e800000,"length"=0x800000}),({"address"=0x2d03d0000,"length"=0x4000})) + | | | | "display-default-color" = <00000000> + | | | | "function-bw_req_interrupt0" = <82000000515249422b0000002200000001000000> + | | | | "temperature-compensation" = <00000000> + | | | | "display-timing-info" = <0004000032000000330000003200000058020000da0000000600000032000000> + | | | | "function-pmu_ram_access" = <9f000000556d61724c41434401004000> + | | | | "max-scaling-ratio" = <00000400> + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <646973703000> + | | | | "interrupt-parent" = <69000000> + | | | | "function-pcc_update" = <2501000055434350> + | | | | "compatible" = <64697370302c743831323200> + | | | | "clock-ids" = <59010000a0010000> + | | | | "interrupts" = <24020000370200002702000026020000250200002c02000022020000300200002b020000> + | | | | "bics-param-set" = <85000000> + | | | | "color-accuracy-index" = <85000000> + | | | | "device_type" = <646973706c61792d73756273797374656d00> + | | | | "KSF_version" = <01000000> + | | | | "power-gates" = <91010000910100009201000093010000> + | | | | "reg" = <0000007c0000000000006900000000000000807c0000000000006900000000000000327d0000000000400000000000000040347d0000000000400000000000000000807e00000000000080000000000000003dc0000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleCLCD2 + | | | | { + | | | | "IOMFBScalingLimits" = {"YUVLayer_MaxScale"=0x4,"YUVLayer_MinScaleFraction"=0x2,"RGBLayer_MinScaleFraction"=0x2,"RGBLayer_MaxScale"=0x4} + | | | | "GPBandwidth" = 0x0 + | | | | "TemperatureStructVersion2D" = 0x1 + | | | | "AOTEnableOf" = 0x1a88834216c6 + | | | | "IOMFBBrightnessCompensationEnable" = Yes + | | | | "PanelLayout" = 0x0 + | | | | "displayOnContinuousTimestamp" = 0x1a8883c47c7b + | | | | "IOMFBSupportsGPLite" = Yes + | | | | "PCCStabilityThresholdAOT" = 0xc350 + | | | | "IOMFBNumLayers" = {"FullFrameRequired"=0x0,"MaxNumLayers"=0x3} + | | | | "IOMFBDigitalDimmingLevel" = 0x1fec9 + | | | | "DispPerfState" = 0x0 + | | | | "IOMFB_KTRACE_API_VERSION" = "3.1" + | | | | "APTDefaultGrayValue" = 0xff + | | | | "IOMFBStatsTapPoint" = 0x1 + | | | | "enableAmbientLightSensorStatistics" = No + | | | | "APTPDCTemperature" = 0x219999 + | | | | "IONameMatch" = ("disp0,t8122","dispext0,t8122") + | | | | "enable2DTemperatureCorrection" = No + | | | | "IOClass" = "AppleCLCD2" + | | | | "DebugUInt32" = 0x0 + | | | | "IOMFBBrightnessLevelMA" = 0xffffffffffffffff + | | | | "PixelCaptureBlockMask" = 0x0 + | | | | "TimingElements" = ({"StandardType"=0x0,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0xa50,"Active"=0xa00,"PixelRepetition"=0x0,"PreciseSyncRate"=0x68f0ae,"BackPorch"=0x28,"SyncWidth"=0x20,"FrontPorch"=0x8,"SyncPolarity"=0x1,"SyncRate"=0x690000},"VerticalAttributes"={"Total"=0x6d5,"Active"=0x680,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0006,"BackPorch"=0x2c,"SyncWidth"=0x8,"FrontPorch"=0x21,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"UnsafeColo$ + | | | | "IOMFBMaxSrcPixels" = {"PixelClock"=0x2a704200,"MaxSrcRectTotal"=0x1680000,"MaxSrcBufferHeight"=0x4000,"IOMFBMaxCompressedSizeInBytes"=0x0,"IOMFBCompressionSupport"=0x1,"VideoClock"=0x841a9a8,"MaxSrcRectWidth"=0x1400,"MaxSrcBufferWidth"=0x4000,"MaxVideoSrcDownscalingWidth"=0x66cc} + | | | | "APTEnableCA" = No + | | | | "CMPixelCaptureLocation" = 0xd + | | | | "IOMFBIntDcpUsedForExtWhenLidClose" = Yes + | | | | "RuntimeProperty::frameInfoTraceEnable" = No + | | | | "APTEnableEvents" = No + | | | | "enableDBMMode" = Yes + | | | | "enableBLMSloper" = Yes + | | | | "color-accuracy-index" = 0x85 + | | | | "PreferredTimingElements" = ({"StandardType"=0x0,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0xa50,"Active"=0xa00,"PixelRepetition"=0x0,"PreciseSyncRate"=0x68f0ae,"BackPorch"=0x28,"SyncWidth"=0x20,"FrontPorch"=0x8,"SyncPolarity"=0x1,"SyncRate"=0x690000},"VerticalAttributes"={"Total"=0x6d5,"Active"=0x680,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0006,"BackPorch"=0x2c,"SyncWidth"=0x8,"FrontPorch"=0x21,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"U$ + | | | | "IOMFBWPASupported" = 0x1 + | | | | "enablePixelCapture" = No + | | | | "APTEnableCDFD" = No + | | | | "PDCSaveRepeatUnstablePCC" = Yes + | | | | "IOMFBSupportsICC" = Yes + | | | | "NormalModeActive" = Yes + | | | | "BLMPowergateEnable" = Yes + | | | | "AmbientBrightness" = 0x3ecbbe + | | | | "DisableBConBoot" = 0x0 + | | | | "DisplayPipeStrideRequirements" = {"StrideLinearHorizontal"=0x40,"StrideLinearVertical"=0x1} + | | | | "requestPixelBacklightModulation" = No + | | | | "set0DTempSensorValue" = 0xffffffffffffffff + | | | | "GP0PixelCaptureLocation" = 0x9 + | | | | "CMDegammaMethod" = 0x0 + | | | | "CECorrectionFactor" = 0x10000 + | | | | "MaxVideoSrcDownscalingWidth" = 0x66cc + | | | | "IOMFBTemperatureCompensationEnable" = Yes + | | | | "PCCCabalEnable" = Yes + | | | | "DisableTempComp" = No + | | | | "IOMFBIndicatorNitsCap" = 0x20caf5c + | | | | "enableLinearToPanel" = Yes + | | | | "enableDefaultTemperatureCorrection" = No + | | | | "PDCSettleCount" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "BLMStandbyEnable" = No + | | | | "ALSSSumsPrecision" = 0x24 + | | | | "IdleCachingMethod" = 0x2 + | | | | "APTResetCA" = No + | | | | "BLMAHMode" = 0x2 + | | | | "IOMFBContrastEnhancerStrength" = 0x13 + | | | | "AODFixedRR" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "QMSVRREnableConfig" = 0x0 + | | | | "IOMFBSupportsYFlip" = Yes + | | | | "overdriveCompCutoff" = 0x0 + | | | | "displayOnTimestamp" = 0x2dc0596946b + | | | | "DisplayPipePlaneBaseAlignment" = {"DefaultStride"=0x0,"LinearX_Alignment"=0x40,"LinearY_Alignment"=0x1,"PlaneBaseAlignmentLinear"=0x40} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "BacklightMatching" = {"IOPropertyMatch"={"backlight-control"=Yes}} + | | | | "maxPeakBpp" = 0x0 + | | | | "GPLiteMaxSrcSz" = 0x0 + | | | | "maxAverageBpp" = 0x0 + | | | | "IOMFBBrightnessLevelIDAC" = 0xffffffffffffffff + | | | | "IOMFBIndicatorBrightnessNits" = 0x10000 + | | | | "PCC2DEnable" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "ean-mode-caching" = 0x0 + | | | | "PDCGlobalTemp" = 0x0 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "APTPDCEnable" = Yes + | | | | "APTEnableConfigExpired" = Yes + | | | | "AODWaitForWalkdown" = 0x1 + | | | | "APTPDCEnablePM" = 0x1 + | | | | "enableGPAlphaDiv" = Yes + | | | | "use0DSensorFor2DTemp" = No + | | | | "IOMFB Debug Info" = {} + | | | | "IOMFBSupportsXFlip" = Yes + | | | | "edrScaleinGP" = Yes + | | | | "PCCEnable" = Yes + | | | | "darkBoot" = No + | | | | "APTPanicOnStuckPolarity" = No + | | | | "AOTEnable" = No + | | | | "ADP is generic pipe" = Yes + | | | | "BLMPLimitCfg" = 0x1 + | | | | "ALSSRGBCoeffsPrecision" = 0x8 + | | | | "BLMVLEDManual" = 0xdc + | | | | "ACSSSupported" = No + | | | | "Brightness_Scale" = 0x108df + | | | | "ALSSChannelCount" = 0x4 + | | | | "IOMFBTestBacklightDimValue" = 0x1cc0 + | | | | "DisplayClock" = 0xabbc2f0 + | | | | "PDCDataVersion" = 0x1b5c + | | | | "BLNitsCap" = 0x13afff6 + | | | | "APTPanicOnChargeParity" = No + | | | | "IOMFBBICSType" = 0x0 + | | | | "BlendPixelCaptureLocation" = 0x1 + | | | | "PCCTrinityEnable" = Yes + | | | | "M3TimingParameters" = {"subframe-interrupt-time-lines"=0x66c,"subframe-duration-nclks"=0x61a7f,"display-lead-time-nclks"=0x6443,"initial-vbi-advance-lines"=0x2,"initial-subframe-irq-time-lines"=0x66c,"vbi-advance-lines"=0x2} + | | | | "GP1PixelCaptureLocation" = 0x9 + | | | | "APTFixedRR" = 0x0 + | | | | "SPLCSupported" = No + | | | | "ChargeValuesPublish" = No + | | | | "PixelClock" = 0x2a704200 + | | | | "FFR_table_index" = 0x0 + | | | | "bics_mode" = 0x0 + | | | | "PixelCaptureConfig" = 0x0 + | | | | "enableDisplayTMDpc" = Yes + | | | | "IONameMatched" = "disp0,t8122" + | | | | "ALSSWindowCount" = 0x40 + | | | | "clockRatio" = 0x523d7 + | | | | "enableDither" = Yes + | | | | "NormalModeEnable" = Yes + | | | | "SupportsAOT1HzOptimizations" = No + | | | | "enableDarkEnhancer" = Yes + | | | | "uniformity2D" = Yes + | | | | "FrameInfoForRepeats" = No + | | | | "IOMFBSecureIndicatorFactor" = 0x10000 + | | | | "BLMAHUPCount" = 0x0 + | | | | "SupportsAOTPowerSaving" = No + | | | | "DisplayAttributes" = {"TiledDisplayInfo"={},"ProductAttributes"={"ManufacturerID"="00-10-fa","ProductID"=0x333430313441,"LegacyManufacturerID"=0x610},"DisplayAllocation"={"ExtraPipes"=0x0,"MainUFP"=0x0,"UseSingleTile"=No,"PeerUFP"=0x0}} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "ColorElements" = ({"ElementData"=<0800000000000000000000001000000000000000000000000000000000000000>,"StandardType"=0x0,"Score"=0x3ad67,"IsVirtual"=No,"ID"=0x1,"PixelEncoding"=0x0,"ElementType"=0x1,"SupportsDSC"=0x0,"EOTF"=0x0,"Colorimetry"=0x10,"DynamicRange"=0x0,"Depth"=0x8}) + | | | | "ProxScanPosition" = 0x0 + | | | | "PDCSaveLongFrames" = Yes + | | | | "ALSSSupported" = No + | | | | "APTEnableDefaultGray" = Yes + | | | | "enableLAC" = Yes + | | | | "defaultTemperatureCorrectionValue" = 0xffffffffffffffff + | | | | "IOMFBSecureContentFactor" = 0x10000 + | | | | "IdleState" = 0x5 + | | | | "QoSDebug" = 0x1 + | | | | "VideoClock" = 0x841a9b0 + | | | | "ProxScanPlan" = 0xffffffffffffffff + | | | | "IOMFBBrightnessLevel" = 0x3af73a + | | | | "DCPIndex" = 0x0 + | | | | "InitialPanelTemperature" = 0x1e07ae + | | | | "forcePixelBacklightModulation" = 0x2 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "BLMAHOutputFreq" = 0x0 + | | | | "APTEnablePRC" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "SystemConsoleMode" = No + | | | | "brightnessCorrectionB" = 0x10000 + | | | | "enableGPDeringing" = Yes + | | | | "ADCLLoadAll" = No + | | | | "ForceSecureAnimation" = No + | | | | "IOMatchedAtBoot" = Yes + | | | | "APTPanicOnChargeOOB" = No + | | | | "APTEventsMask" = 0x0 + | | | | "W40a_Blending_OK" = 0x1 + | | | | "BLMAHOutputLogEnable" = No + | | | | "Panel_ID" = "FP1503305EK25YTAY+5A2D4Y0441A2HF+PROD+B451345214525+3550321650322150323A503230+Y11241112Y11541116+6861B2437GJ53700M49FT4497A5172099+S40J68AHZXS40J68AHZXS40J68AHZXS40J68AH" + | | | | "APTEnableLogs" = No + | | | | "WPCPixelCaptureLocation" = 0x2 + | | | | "BLMAHStatsLogEnable" = No + | | | | "PCCEnableLogs" = No + | | | | "APTDevice" = No + | | | | "PCCStabilityThreshold" = 0x9 + | | | | "RuntimeProperty::registerTraceEnable" = No + | | | | "IOMFBDisplayRefresh" = {"displayRefreshStepMachTime"=0x0,"displayRefreshStep"=0x0,"displayMaxRefreshInterval"=0x4443914,"displayMinRefreshInterval"=0x4443914,"displayMinRefreshIntervalMachTime"=0x61a7f,"displayMaxRefreshIntervalMachTime"=0x61a7f} + | | | | "BlendOutputCSCMethod" = 0x0 + | | | | "IOMFBSupports2DBL" = No + | | | | "APTLimitRefreshRate" = No + | | | | "brightnessCorrection" = 0x10000 + | | | | "IOFunctionParent000000DB" = <> + | | | | "ChargeValuesReset" = No + | | | | "DisableDisplayOptimize" = 0x0 + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | } + | | | + | | +-o dcp0-expert + | | | | { + | | | | "compatible" = <6463702d6578706572742d763100> + | | | | "device_type" = <6463702d65787065727400> + | | | | "join-power-plane" = <01000000> + | | | | "name" = <646370302d65787065727400> + | | | | "role" = <44435000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleDCPExpert + | | | { + | | | "IOClass" = "AppleDCPExpert" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1} + | | | "DCPExpertPowerState" = 0x1 + | | | "IOFunctionParent000000DC" = <> + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dcp-expert-v1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "DCPPowerState" = 0x4 + | | | "DCPPowerAssertionCount" = 0x1 + | | | "BootComplete" = Yes + | | | "DCPPowerRetained" = No + | | | "IONameMatched" = "dcp-expert-v1" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | "role" = "DCP" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | "DebugState" = () + | | | } + | | | + | | +-o dcp@7EC00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<1a020000>,<19020000>,<1c020000>,<1b020000>) + | | | | "hdcp-channels" = <0500000006000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <94010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28ec00000,"length"=0x6c000}),({"address"=0x28e850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-parent" = <67000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <64637000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <1a020000190200001c0200001b020000> + | | | | "clock-ids" = <> + | | | | "hdcp-parent" = <8c000000> + | | | | "audio" = + | | | | "dp-switch-ufp-endpoint" = <00000000> + | | | | "dp-switch-ufp-port" = <00000000> + | | | | "role" = <44435000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <64637000> + | | | | "power-gates" = <94010000> + | | | | "reg" = <0000c07e0000000000c00600000000000000857e000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "DCP" + | | | | } + | | | | + | | | +-o iop-dcp-nub + | | | | { + | | | | "uuid" = <38453833323631412d354343412d334543422d413442332d33414441444645333531464200> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f473b756e6b6e6f776e3b756e6b6e6f776e3b756e6b6e6f776e3b756e6b6e6f776e00> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "pre-loaded" = <01000000> + | | | | "KDebugCoreID" = 0x10 + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0080220000010000000000000000000000409c050001000000006c000100000000408ce10301000000006c0000000000004008060001000000002a00000000000000d30a0001000000009600000000000000d30a00010000004002000a0000000080b9e503010000ffffffffffffffff000096000001000000000001020000000040b9e503010000ffffffffffffffff000099010001000000400000020000000040ade503010000ffffffffffffffff004099010001000000000c00020000000040b6e103010000ffffffffffffffff0040a501000100000000f70302000000> + | | | | "name" = <696f702d6463702d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(DCP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IOHibernateState" = <00000000> + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="DCP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="DCP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o DCPEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint1 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o system + | | | | | { + | | | | | "reg-stream-block-size" = 0x800 + | | | | | "system-service" = Yes + | | | | | "interface-id" = 0x5 + | | | | | "role" = "DCP" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce7f,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o powerlog-service + | | | | | { + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x5a0ba,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0xb,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "interface-id" = 0x7 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce7f,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "role" = "DCP" + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKEndpointInterfaceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = "com.apple.afk.user" + | | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "DebugState" = {"dataQueue"={"queueSize"=0x3fcc,"enqueueTimestamp"=0x1a91114b8b94,"SpaceAvailableCnt"=0x0,"tail"=0x14d0,"notifySpaceAvailable"=0x0,"head"=0x14d0},"EnsureDescriptorDelivery"=0x1,"SessionCount"=0x0,"EnsureCommandDelivery"=0x1,"ReportCallback"=0x1,"EnsureReportDelivery"=0x0,"CommandCallback"=0x0,"DescriptorCallback"=0x1} + | | | | } + | | | | + | | | +-o DCPEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint2 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEndpoint2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCP" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint3 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dcpexpert-service + | | | | { + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce7f,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCP" + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint4 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce80,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCP" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint5 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x6,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-controller-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0xd + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce80,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x30f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-controller-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0xf + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce80,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x30f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispextE:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x11 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce81,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdp-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x13 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce81,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispextE:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x15 + | | | | | | "EPICUnit" = 0x1 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpav-controller-epic:1" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce81,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdp-controller-epic: + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x17 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "dispextE:dcpdp-controller-epic:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce81,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPControllerProxy + | | | | { + | | | | "IOClass" = "DCPDPControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint6 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-power-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXPowerControllerShared" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x1 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-power-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce81,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpav-power-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVPowerControllerProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-power-epic"} + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "DCPAVPowerControllerProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "Embedded" + | | | | "Unit" = 0x0 + | | | | } + | | | | + | | | +-o DCPEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint7 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-sac-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPDisplaySACController" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x1 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-sac-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce82,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x2,"enqueued-reports"=0x1,"enqueued-commands"=0x41,"isOpen"=0x1,"enqueued-responses"=0x2,"handled-responses"=0x41} + | | | | | "EPICName" = "dcpav-sac-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVRemoteSACControllerProxy + | | | | { + | | | | "IOClass" = "DCPAVRemoteSACControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-sac-epic"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint8 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0xc6,"termination-events"=0xc4} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-device-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x189 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-device-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bcdb3,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpav-device-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVDeviceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVDeviceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-device-epic"} + | | | | | "IOUserClientClass" = "DCPAVDeviceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVDeviceUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-device-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x18b + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpdp-device-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bcda7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | "EPICName" = "dcpdp-device-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPDeviceProxy + | | | | { + | | | | "IOClass" = "DCPDPDeviceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-device-epic"} + | | | | "IOUserClientClass" = "DCPDPDeviceProxyUserClient" + | | | | "BranchIEEEOUI" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "SinkDeviceID" = "A41043" + | | | | "SinkIEEEOUI" = 0xfa1000 + | | | | "IODPDeviceUserInterfaceSupported" = Yes + | | | | "BranchDeviceID" = "" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint9 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0xc6,"termination-events"=0xc4} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-service-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPAgileCDIDPDisplay" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x189 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-service-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bcda8,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpav-service-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVServiceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVServiceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-service-epic"} + | | | | | "IOAVServiceUserInterfaceSupported" = Yes + | | | | | "IOUserClientClass" = "DCPAVServiceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-service-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPAgileCDIDPDisplay" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x18b + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpdp-service-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bcda8,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-service-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPServiceProxy + | | | | { + | | | | "IOClass" = "DCPDPServiceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-service-epic"} + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOUserClientClass" = "DCPDPServiceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPServiceUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint10 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x63,"termination-events"=0x62} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-video-interface-epi + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPAVSimpleVideoInterface" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0xc5 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-video-interface-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bcd8f,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpav-video-interface-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVVideoInterfaceProxy + | | | | { + | | | | "IOClass" = "DCPAVVideoInterfaceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-video-interface-epic"} + | | | | "IOUserClientClass" = "DCPAVVideoInterfaceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOAVVideoInterfaceUserInterfaceSupported" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "Embedded" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint11 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-port-epic:0 + | | | | | | { + | | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "MaxPixelWidth" = 0x1400 + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce83,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "EPICUnit" = 0x0 + | | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | | "role" = "DCP" + | | | | | | "ResourceAvailableDefault" = No + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x62,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x62,"handled-responses"=0x0} + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "interface-name" = "dispextE:dcpdptx-port-epic:0" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | | { + | | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Location" = "External" + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Unit" = 0x0 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcp-nub) + | | | | | { + | | | | | "DisplayHints" = {} + | | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000491a3406000000000300000001000000>,"EventTime"=0x6341a49,"EventClass"="SetState"}) + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-port-epic:1 + | | | | | { + | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x3 + | | | | | "MaxPixelWidth" = 0x1400 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce84,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "EPICUnit" = 0x1 + | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | "role" = "DCP" + | | | | | "ResourceAvailableDefault" = No + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x62,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x62,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "interface-name" = "dispextE:dcpdptx-port-epic:1" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | { + | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcp-nub) + | | | | { + | | | | "DisplayHints" = {} + | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000d3a73406000000000300000001000000>,"EventTime"=0x634a7d3,"EventClass"="SetState"}) + | | | | } + | | | | + | | | +-o DCPEndpoint12 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint12 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x3,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpdptx-hdcp-interface:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce84,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x30f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "Embedded" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-hdcp-interface + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x3 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce84,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-hdcp-interface + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x5 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "dispextE:dcpdptx-hdcp-interface:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce84,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "External" + | | | | "Unit" = 0x1 + | | | | } + | | | | + | | | +-o DCPEndpoint13 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint13 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o CBAPToDCPService + | | | | | { + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x13,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x13} + | | | | | "interface-id" = 0x1 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aebd3,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "role" = "DCP" + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKEndpointInterfaceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = "com.apple.afk.user" + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "DebugState" = {"dataQueue"={"queueSize"=0x3fcc,"enqueueTimestamp"=0x0,"SpaceAvailableCnt"=0x0,"tail"=0x0,"notifySpaceAvailable"=0x0,"head"=0x0},"EnsureDescriptorDelivery"=0x1,"SessionCount"=0x0,"EnsureCommandDelivery"=0x1,"ReportCallback"=0x0,"EnsureReportDelivery"=0x0,"CommandCallback"=0x0,"DescriptorCallback"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint18 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint18 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o md-manager + | | | | | { + | | | | | "interface-id" = 0x1 + | | | | | "epi-is-desc-mgr" = Yes + | | | | | "role" = "DCP" + | | | | | "interface-name" = "md-manager" + | | | | | "md-allocator" = "md-al-remote" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1bce85,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKLocalMemoryDescriptorManager + | | | | { + | | | | "IOClass" = "AFKLocalMemoryDescriptorManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"md-allocator"="md-al-remote"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleFirmwareKit" + | | | | "role" = "DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "DebugState" = {"Descs"=[],"FreeReqs"=()} + | | | | "md-allocator" = "md-al-local" + | | | | } + | | | | + | | | +-o DCPEndpoint24 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleDCPLinkServiceSoC + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOClass" = "AppleDCPLinkServiceSoC" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("DCPEndpoint24","DCPEXTEndpoint24") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "DCPEndpoint24" + | | | | "IOUserClientClass" = "AppleDCPLinkService" + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "DCP" + | | | | } + | | | | + | | | +-o AFKFirmwareService + | | | { + | | | "IOPropertyMatch" = {"role"="DCP"} + | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | "IOProviderClass" = "RTBuddyService" + | | | "IOClass" = "AFKFirmwareService" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "Role" = "DCP" + | | | } + | | | + | | +-o dart-dcp@7D30C000 + | | | | { + | | | | "dart-id" = <0c000000> + | | | | "IOInterruptSpecifiers" = (<2d020000>) + | | | | "bypass-15" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28d30c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525441534300> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "l2-tt-5" = <0040ecff030100000200000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d64637000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <050000000f000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <2d020000> + | | | | "pt-region-5" = <0040ecff030100000040f0ff03010000> + | | | | "dapf-instance-0" = <000070d002000000008071d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000004072d002000000008072d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000000d002000000808607d0020000002000000000000000000000000000000000000000000000000000000000000000000301000000000000003cd00200000000003fd002000000200000000000000000000000000000000000000000000000000000000000000000030100000000000000e0ed02000000ffffefed0200000020000000000000000000000000000000$ + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "retention-force-quiesce" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "apf-bypass-15" = <> + | | | | "reg" = <00c0307d000000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000DF" = <> + | | | | } + | | | | + | | | +-o mapper-dcp@5 + | | | | { + | | | | "name" = <6d61707065722d64637000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <05000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <0000960000010000000096010001000000009901000100000040320600010000> + | | | } + | | | + | | +-o dart-disp0@7D304000 + | | | | { + | | | | "apf-bypass-4" = <> + | | | | "page-size" = <00400000> + | | | | "l2-tt-4" = <0040ebff030100000200000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "retention" = <> + | | | | "sid" = <00000000040000000f000000> + | | | | "interrupts" = <2d020000> + | | | | "flush-by-dva" = <00000000> + | | | | "apf-bypass-0" = <> + | | | | "retention-force-quiesce" = <> + | | | | "real-time" = <> + | | | | "apf-bypass-15" = <> + | | | | "dart-id" = <0d000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "vm-size" = <0000000010000000> + | | | | "sid-count" = <10000000> + | | | | "pt-region-4" = <0040ebff030100000040ecff03010000> + | | | | "allow-pte-remap" = <> + | | | | "IODeviceMemory" = (({"address"=0x28d304000,"length"=0x4000}),({"address"=0x28d300000,"length"=0x4000})) + | | | | "AAPL,phandle" = + | | | | "name" = <646172742d646973703000> + | | | | "instance" = <54524144000000004441525400000000554d4d5300000000534d4d5500000000> + | | | | "device_type" = <6461727400> + | | | | "compatible" = <646172742c743831313000> + | | | | "dart-options" = <65000000> + | | | | "l2-tt-0" = <0040f0ff030100000200000000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "vm-base" = <0000000000010000> + | | | | "reg" = <0040307d0000000000400000000000000000307d000000000040000000000000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "bypass-15" = <> + | | | | "IOInterruptSpecifiers" = (<2d020000>) + | | | | "pt-region-0" = <0040f0ff030100000040f4ff03010000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000E1" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-disp0@0 + | | | | | { + | | | | | "name" = <6d61707065722d646973703000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | "iommu-initial-translations" = <000099010001000000409901000100000040a5010001000000409c0500010000> + | | | | } + | | | | + | | | +-o mapper-disp0-piodma@4 + | | | | { + | | | | "name" = <6d61707065722d64697370302d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <00409901000100000040a50100010000> + | | | } + | | | + | | +-o dcp-sac-controller + | | | | { + | | | | "device_type" = <6463702d7361632d636f6e74726f6c6c657200> + | | | | "sac-index-count" = <02000000> + | | | | "function-saca_lcd0" = <26010000414341533064636c> + | | | | "function-saca_lcd1" = <26010000414341533164636c> + | | | | "AAPL,phandle" = + | | | | "name" = <6463702d7361632d636f6e74726f6c6c657200> + | | | | } + | | | | + | | | +-o DCPAVSACController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "IOService" + | | | "IOClass" = "DCPAVSACController" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dcp-sac-controller","dcp0-sac-controller","dcp1-sac-controller") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dcp-sac-controller" + | | | "role" = "DCP" + | | | } + | | | + | | +-o dp-audio0 + | | | | { + | | | | "dma-channels" = <6400000002000000000000000008000000080000000000000000000000000000> + | | | | "power-gates" = <53000000> + | | | | "dma-parent" = <95000000> + | | | | "clock-gates" = <53000000> + | | | | "function-device_reset_dpa" = <820000005453524153000000> + | | | | "device_type" = <64702d617564696f3000> + | | | | "name" = <64702d617564696f3000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o DCPAVAudioDMADelegate + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "DCPAVAudioDMADelegate" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dp-audio","dp-audio0","dp-audio1","dp-audio2","dp-audio3","dp-audio4","dp-audio5","dp-audio6","dp-audio7","dp-audio8","dp-audio9") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dp-audio0" + | | | "TransferInformation" = {"TransferAttempts"=0x0,"TransferCompletions"=0x0} + | | | } + | | | + | | +-o dispext0@8000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<4e020000>,<61020000>,<51020000>,<50020000>,<4f020000>,<56020000>,<4c020000>,<55020000>) + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x318000000,"length"=0x690000}),({"address"=0x318800000,"length"=0x690000}),({"address"=0x319320000,"length"=0x4000}),({"address"=0x319344000,"length"=0x4000}),({"address"=0x31a800000,"length"=0x800000}),({"address"=0x2d03d0000,"length"=0x1000})) + | | | | "external" = <01000000> + | | | | "display-default-color" = <00000000> + | | | | "function-bw_req_interrupt0" = <8200000051524942720000002300000001000000> + | | | | "display-timing-info" = <0004000032000000330000003200000058020000da0000000600000032000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "clcdclk_frequency" = <820000004342475201000000> + | | | | "name" = <646973706578743000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <64697370657874302c743831323200> + | | | | "clock-ids" = <5e010000a2010000> + | | | | "interrupts" = <4e0200006102000051020000500200004f020000560200004c02000055020000> + | | | | "framebuffer-height" = <70080000> + | | | | "framebuffer-width" = <00100000> + | | | | "device_type" = <6578742d646973706c61792d73756273797374656d00> + | | | | "power-gates" = <> + | | | | "reg" = <000000080100000000006900000000000000800801000000000069000000000000003209010000000040000000000000004034090100000000400000000000000000800a01000000000080000000000000003dc0000000000010000000000000> + | | | | } + | | | | + | | | +-o AppleCLCD2 + | | | | { + | | | | "ForceSecureAnimation" = No + | | | | "GP0PixelCaptureLocation" = 0x9 + | | | | "APTEnablePRC" = No + | | | | "APTEnableLogs" = No + | | | | "NormalModeEnable" = No + | | | | "AOTEnable" = No + | | | | "SPLCSupported" = No + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "APTEnableConfigExpired" = Yes + | | | | "brightnessCorrection" = 0x10000 + | | | | "IOMFBBrightnessLevelIDAC" = 0xffffffffffffffff + | | | | "IOClass" = "AppleCLCD2" + | | | | "IOMFB Debug Info" = {} + | | | | "DPTimingModeId" = 0x30 + | | | | "external" = Yes + | | | | "IOMFBTemperatureCompensationEnable" = No + | | | | "APTEnableEvents" = No + | | | | "ProxScanPlan" = 0xffffffffffffffff + | | | | "IOMFBIntDcpUsedForExtWhenLidClose" = No + | | | | "APTResetCA" = No + | | | | "color-accuracy-index" = 0x0 + | | | | "APTFixedRR" = 0x0 + | | | | "AODWaitForWalkdown" = 0x1 + | | | | "FrameInfoForRepeats" = No + | | | | "APTLimitRefreshRate" = No + | | | | "brightnessCorrectionB" = 0x10000 + | | | | "IOMFBSupportsICC" = Yes + | | | | "PDCSaveLongFrames" = No + | | | | "IOMFBSecureIndicatorFactor" = 0x10000 + | | | | "maxPeakBpp" = 0x0 + | | | | "IOMFBStatsTapPoint" = 0x1 + | | | | "MaxVideoSrcDownscalingWidth" = 0xb5d1 + | | | | "ColorElements" = ({"ElementType"=0x1,"ElementData"=<0800000000000000000000000a00000000000000000000000000000000000000>,"Depth"=0x8,"PixelEncoding"=0x0,"EOTF"=0x0,"Colorimetry"=0xa,"StandardType"=0x1,"SupportsDSC"=0x0,"DynamicRange"=0x0,"ID"=0x1,"IsVirtual"=Yes},{"ElementType"=0x1,"ElementData"=<0800000003000000010000000100000000000000000000000000000000000000>,"Depth"=0x8,"PixelEncoding"=0x3,"EOTF"=0x0,"Colorimetry"=0x1,"StandardType"=0x2,"SupportsDSC"=0x0,"DynamicRange"=0x1,"ID"=0x3,"IsVirtual"=Yes},{"ElementType"=0x1,"Elemen$ + | | | | "DisplayHeight" = 0x438 + | | | | "IdleState" = 0x5 + | | | | "ChargeValuesReset" = No + | | | | "M3TimingParameters" = {"subframe-interrupt-time-lines"=0x416,"subframe-duration-nclks"=0x61a80,"display-lead-time-nclks"=0x7080,"initial-vbi-advance-lines"=0x2,"initial-subframe-irq-time-lines"=0x416,"vbi-advance-lines"=0x2} + | | | | "GPLiteMaxSrcSz" = 0x0 + | | | | "PDCSettleCount" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMFBNumLayers" = {"FullFrameRequired"=0x0,"MaxNumLayers"=0x3} + | | | | "enableGPDeringing" = Yes + | | | | "enableDefaultTemperatureCorrection" = No + | | | | "DCPIndex" = 0x1 + | | | | "PixelClock" = 0x35a4e900 + | | | | "IOMFBSupportsYFlip" = Yes + | | | | "APTPDCEnablePM" = 0x1 + | | | | "CMPixelCaptureLocation" = 0xd + | | | | "IOMFBUUID" = "04721301-0000-0000-2014-010380331D78" + | | | | "IOMFBBrightnessLevel" = 0x10000 + | | | | "IOMFBBICSType" = 0x0 + | | | | "IOMFBBrightnessCompensationEnable" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "PCCEnableLogs" = No + | | | | "maxAverageBpp" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "AODFixedRR" = 0x0 + | | | | "PixelCaptureBlockMask" = 0x0 + | | | | "QoSDebug" = 0x0 + | | | | "use0DSensorFor2DTemp" = No + | | | | "RuntimeProperty::registerTraceEnable" = No + | | | | "BlendOutputCSCMethod" = 0x0 + | | | | "enableDisplayTMDpc" = Yes + | | | | "APTPanicOnChargeOOB" = No + | | | | "Transport" = {"Upstream"="DP","Downstream"="DP"} + | | | | "darkBoot" = No + | | | | "IOMFBSupports2DBL" = No + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "set0DTempSensorValue" = 0xffffffffffffffff + | | | | "AmbientBrightness" = 0x10000 + | | | | "enableGPAlphaDiv" = Yes + | | | | "APTPanicOnStuckPolarity" = No + | | | | "DisableTempComp" = No + | | | | "edrScaleinGP" = Yes + | | | | "GP1PixelCaptureLocation" = 0x9 + | | | | "DisplayPipeStrideRequirements" = {"StrideLinearHorizontal"=0x40,"StrideLinearVertical"=0x1} + | | | | "IOMFBScalingLimits" = {"YUVLayer_MaxScale"=0x4,"YUVLayer_MinScaleFraction"=0x2,"RGBLayer_MinScaleFraction"=0x2,"RGBLayer_MaxScale"=0x4} + | | | | "IOMFBMaxSrcPixels" = {"PixelClock"=0x0,"MaxSrcRectTotal"=0x1b00000,"MaxSrcBufferHeight"=0x4000,"IOMFBMaxCompressedSizeInBytes"=0x0,"IOMFBCompressionSupport"=0x1,"VideoClock"=0x0,"MaxSrcRectWidth"=0x1800,"MaxSrcBufferWidth"=0x4000,"MaxVideoSrcDownscalingWidth"=0x0} + | | | | "ALSSSupported" = No + | | | | "DisplayAttributes" = {"SupportsSuspend"=No,"MaximumRefreshRate"=0x4b,"SupportsActiveOff"=No,"PortID"=0x0,"ProductAttributes"={"YearOfManufacture"=0x7da,"ManufacturerID"="ACR","SerialNumber"=0x3203ae8,"ProductName"="Acer G235H","AlphanumericSerialNumber"="LJK0W0044330","LegacyManufacturerID"=0x472,"ProductID"=0x113,"WeekOfManufacture"=0x20},"MaxVerticalImageSize"=0x1d,"MinimumVariableRefreshRate"=0x380000,"MaxHorizontalImageSize"=0x33,"HasHDMILegacyEDID"=No,"Chromaticity"={"Red"={"X"=0xa4c0,"Y"=0x5600},"Green"={"X"=0x4d00,"Y"$ + | | | | "clockRatio" = 0xc1f07 + | | | | "IOMFBIndicatorNitsCap" = 0x28a0000 + | | | | "DisplayWidth" = 0x780 + | | | | "IOMFBIndicatorBrightnessNits" = 0x10000 + | | | | "DisableDisplayOptimize" = 0x0 + | | | | "SupportsAOTPowerSaving" = No + | | | | "ACSSSupported" = No + | | | | "ADP is generic pipe" = Yes + | | | | "enablePixelCapture" = No + | | | | "CMDegammaMethod" = 0x0 + | | | | "IOMFB_KTRACE_API_VERSION" = "3.1" + | | | | "IdleCachingMethod" = 0x2 + | | | | "IOMatchedAtBoot" = Yes + | | | | "DebugUInt32" = 0x0 + | | | | "IOMFBSupportsGPLite" = Yes + | | | | "APTDevice" = No + | | | | "IOMFBDigitalDimmingLevel" = 0x50000 + | | | | "GPBandwidth" = 0x3200 + | | | | "TimingElements" = ({"StandardType"=0x1,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0x320,"Active"=0x280,"PixelRepetition"=0x0,"PreciseSyncRate"=0x0,"BackPorch"=0x50,"SyncWidth"=0x40,"FrontPorch"=0x10,"SyncPolarity"=0x0,"SyncRate"=0x0},"VerticalAttributes"={"Total"=0x1f4,"Active"=0x1e0,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0000,"BackPorch"=0xd,"SyncWidth"=0x4,"FrontPorch"=0x3,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"UnsafeColorElementIDs$ + | | | | "enableLinearToPanel" = Yes + | | | | "PreferredTimingElements" = ({"StandardType"=0x1,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0x898,"Active"=0x780,"PixelRepetition"=0x0,"PreciseSyncRate"=0x438000,"BackPorch"=0x94,"SyncWidth"=0x2c,"FrontPorch"=0x58,"SyncPolarity"=0x1,"SyncRate"=0x440000},"VerticalAttributes"={"Total"=0x465,"Active"=0x438,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0000,"BackPorch"=0x24,"SyncWidth"=0x5,"FrontPorch"=0x4,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"U$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "APTDefaultGrayValue" = 0xff + | | | | "ChargeValuesPublish" = No + | | | | "IOFunctionParent000000E6" = <> + | | | | "APTPDCEnable" = Yes + | | | | "APTPanicOnChargeParity" = No + | | | | "NormalModeActive" = Yes + | | | | "PixelCaptureConfig" = 0x0 + | | | | "ADCLLoadAll" = No + | | | | "FFR_table_index" = 0x0 + | | | | "VideoClock" = 0x46cf710 + | | | | "IOMFBWPASupported" = 0x1 + | | | | "DispPerfState" = 0x0 + | | | | "APTEnableDefaultGray" = Yes + | | | | "BacklightMatching" = {"IOPropertyMatch"={"backlight-control"=Yes}} + | | | | "QMSVRREnableConfig" = 0x0 + | | | | "IOMFBDisplayRefresh" = {"displayRefreshStepMachTime"=0x0,"displayRefreshStep"=0x0,"displayMaxRefreshInterval"=0xaaaaaaa,"displayMinRefreshInterval"=0x4444444,"displayMinRefreshIntervalMachTime"=0x61a70,"displayMaxRefreshIntervalMachTime"=0xf4230} + | | | | "DisplayClock" = 0x5c0dac8 + | | | | "PDCSaveRepeatUnstablePCC" = No + | | | | "EDID UUID" = "04721301-0000-0000-2014-010380331D78" + | | | | "defaultTemperatureCorrectionValue" = 0xffffffffffffffff + | | | | "enableDither" = Yes + | | | | "IONameMatch" = ("disp0,t8122","dispext0,t8122") + | | | | "IOMFBSupportsXFlip" = Yes + | | | | "AOTEnableOf" = 0x1a88834327cc + | | | | "W40a_Blending_OK" = 0x1 + | | | | "RuntimeProperty::frameInfoTraceEnable" = No + | | | | "SystemConsoleMode" = No + | | | | "SupportsAOT1HzOptimizations" = No + | | | | "PanelLayout" = 0x0 + | | | | "IOMFBBrightnessLevelMA" = 0xffffffffffffffff + | | | | "APTEnableCA" = No + | | | | "bics_mode" = 0x0 + | | | | "BlendPixelCaptureLocation" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "TemperatureStructVersion2D" = 0x1 + | | | | "APTEventsMask" = 0x0 + | | | | "DisplayPipePlaneBaseAlignment" = {"DefaultStride"=0x0,"LinearX_Alignment"=0x40,"LinearY_Alignment"=0x1,"PlaneBaseAlignmentLinear"=0x40} + | | | | "Panel_ID" = "FP1503305EK25YTAY+5A2D4Y0441A2HF+PROD+B451345214525+3550321650322150323A503230+Y11241112Y11541116+6861B2437GJ53700M49FT4497A5172099+S40J68AHZXS40J68AHZXS40J68AHZXS40J68AH" + | | | | "enable2DTemperatureCorrection" = No + | | | | "uniformity2D" = No + | | | | "IOMFBSecureContentFactor" = 0x10000 + | | | | "APTEnableCDFD" = No + | | | | "IONameMatched" = "dispext0,t8122" + | | | | "ProxScanPosition" = 0x0 + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | } + | | | + | | +-o dcpext-expert + | | | | { + | | | | "compatible" = <6463702d6578706572742d763100> + | | | | "device_type" = <6463702d65787065727400> + | | | | "join-power-plane" = <01000000> + | | | | "name" = <6463706578742d65787065727400> + | | | | "role" = <44435045585400> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleDCPExpert + | | | { + | | | "IOClass" = "AppleDCPExpert" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1} + | | | "DCPExpertPowerState" = 0x1 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dcp-expert-v1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "DCPPowerState" = 0x4 + | | | "DCPPowerAssertionCount" = 0x1 + | | | "IOFunctionParent000000E7" = <> + | | | "BootComplete" = Yes + | | | "IONameMatched" = "dcp-expert-v1" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | "role" = "DCPEXT" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | "DebugState" = () + | | | "DCPPowerRetained" = No + | | | } + | | | + | | +-o dcpext@AC00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<47020000>,<46020000>,<49020000>,<48020000>) + | | | | "hdcp-channels" = <0700000008000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <95010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31ac00000,"length"=0x6c000}),({"address"=0x31a850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-parent" = <67000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <64637065787400> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <47020000460200004902000048020000> + | | | | "clock-ids" = <> + | | | | "hdcp-parent" = <8c000000> + | | | | "audio" = + | | | | "dp-switch-ufp-endpoint" = <01000000> + | | | | "dp-switch-ufp-port" = <00000000> + | | | | "role" = <44435045585400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <64637000> + | | | | "power-gates" = <95010000> + | | | | "reg" = <0000c00a0100000000c00600000000000000850a010000000040000000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "DCPEXT" + | | | | } + | | | | + | | | +-o iop-dcpext-nub + | | | | { + | | | | "uuid" = <38453833323631412d354343412d334543422d413442332d33414441444645333531464200> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f473b756e6b6e6f776e00> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "pre-loaded" = <01000000> + | | | | "KDebugCoreID" = 0x12 + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "external-index" = <01000000> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0080220000010000000000000000000000409c050001000000006c0001000000004062e10301000000006c0000000000004008060001000000002a00000000000040d50a0001000000009600000000000040d50a00010000004002000a000000004062e003010000ffffffffffffffff00403206000100000000000102000000> + | | | | "name" = <696f702d6463706578742d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(DCPEXT) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IOHibernateState" = <00000000> + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "DCPEXT" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKFirmwareService + | | | | { + | | | | "IOPropertyMatch" = {"role"="DCPEXT"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "IOClass" = "AFKFirmwareService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Role" = "DCPEXT" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254536c70436e74,0x10002000$ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint1 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o system + | | | | | { + | | | | | "reg-stream-block-size" = 0x800 + | | | | | "system-service" = Yes + | | | | | "interface-id" = 0x1 + | | | | | "role" = "DCPEXT" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af012,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o powerlog-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af012,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint2 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint3 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dcpexpert-service + | | | | { + | | | | "interface-id" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af012,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint4 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af013,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint5 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x4,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af013,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x71,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x3 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af013,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x71,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x5 + | | | | | | "EPICUnit" = 0x1 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-controller-epic:1" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af013,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-controller-epic: + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x7 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpdp-controller-epic:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af013,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPControllerProxy + | | | | { + | | | | "IOClass" = "DCPDPControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint6 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint7 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint7" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint8 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x12,"termination-events"=0x10} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-device-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x21 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-device-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aed97,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x4,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpav-device-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVDeviceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVDeviceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-device-epic"} + | | | | | "IOUserClientClass" = "DCPAVDeviceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVDeviceUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-device-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x23 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpdp-device-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aed90,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x4,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x10,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x10} + | | | | | "EPICName" = "dcpdp-device-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPDeviceProxy + | | | | { + | | | | "IOClass" = "DCPDPDeviceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-device-epic"} + | | | | "IOUserClientClass" = "DCPDPDeviceProxyUserClient" + | | | | "BranchIEEEOUI" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "SinkDeviceID" = "" + | | | | "SinkIEEEOUI" = 0x0 + | | | | "IODPDeviceUserInterfaceSupported" = Yes + | | | | "BranchDeviceID" = "" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint9 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x12,"termination-events"=0x10} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-service-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "DCPDP13Service" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x21 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-service-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aed94,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x6,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-service-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVServiceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVServiceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-service-epic"} + | | | | | "IOAVServiceUserInterfaceSupported" = Yes + | | | | | "IOUserClientClass" = "DCPAVServiceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-service-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPDP13Service" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x23 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpdp-service-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aed92,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x6,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-service-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPServiceProxy + | | | | { + | | | | "IOClass" = "DCPDPServiceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-service-epic"} + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOUserClientClass" = "DCPDPServiceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPServiceUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint10 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0xb,"termination-events"=0xa} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-video-interface- + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPAVSimpleVideoInterface" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x15 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpav-video-interface-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aed21,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x4,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x3,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x3} + | | | | | "EPICName" = "dcpav-video-interface-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVVideoInterfaceProxy + | | | | { + | | | | "IOClass" = "DCPAVVideoInterfaceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-video-interface-epic"} + | | | | "IOUserClientClass" = "DCPAVVideoInterfaceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOAVVideoInterfaceUserInterfaceSupported" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "External" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint11 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x0,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-port-epic:0 + | | | | | | { + | | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "MaxPixelWidth" = 0x1800 + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"ActivityTickles"=0x4,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af011,"DriverPowerState"=0x0,"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "EPICUnit" = 0x0 + | | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | | "role" = "DCPEXT" + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x16d,"enqueued-reports"=0x1,"enqueued-commands"=0x52,"isOpen"=0x1,"enqueued-responses"=0x16d,"handled-responses"=0x52} + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "interface-name" = "dispext0:dcpdptx-port-epic:0" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | | { + | | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Location" = "External" + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Unit" = 0x0 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcpext-nub) + | | | | | { + | | | | | "DisplayHints" = {"MaxBpc"=0x8,"EDID UUID"="04721301-0000-0000-2014-010380331D78","MaxTotalPixelRate"=0x8d9ee20,"MaxW"=0x780,"MaxActivePixelRate"=0x76a7000,"Tiled"=No,"ProductName"="Acer G235H ","MaxH"=0x438} + | | | | | "EventLog" = ({"EventPayload"={"QueueOp"="Done","Action"="Unplug"},"EventRaw"=<2000000018000000236391750c0000000200000004000000>,"EventTime"=0xc75916323,"EventClass"="SetAction"},{"EventPayload"={"QueueOp"="Enqueue","Action"="DisplayRelease"},"EventRaw"=<2000000018000000277bdf830c0000000000000002000000>,"EventTime"=0xc83df7b27,"EventClass"="SetAction"},{"EventPayload"={"QueueOp"="Dequeue","Action"="DisplayRelease"},"EventRaw"=<2000000018000000137edf830c0000000100000002000000>,"EventTime"=0xc83df7e13,"EventClas$ + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-port-epic:1 + | | | | | { + | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x3 + | | | | | "MaxPixelWidth" = 0x1800 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x2,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af019,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "EPICUnit" = 0x1 + | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "interface-name" = "dispext0:dcpdptx-port-epic:1" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | { + | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcpext-nub) + | | | | { + | | | | "DisplayHints" = {} + | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000007cc14506000000000300000001000000>,"EventTime"=0x645c17c,"EventClass"="SetState"}) + | | | | } + | | | | + | | | +-o DCPEXTEndpoint12 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint12 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x22,"termination-events"=0x1e} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-interface + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x2,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af01a,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x71,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-interface + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x3 + | | | | | | "EPICUnit" = 0x1 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-interface:1" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x2,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af01a,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x1 + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-auth-sess + | | | | | | { + | | | | | | "EPICProviderClass" = "AppleDCPDPTXHDCP1Controller" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-auth-session:0" + | | | | | | "interface-id" = 0x41 + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aebe5,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "EPICUnit" = 0x0 + | | | | | | "EPICName" = "dcpdptx-hdcp-auth-session" + | | | | | | "role" = "DCPEXT" + | | | | | | "HDCPProtocolType" = 0x1 + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "HDCPMessageTransportType" = "IODPHDCPMessageTransport" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPAuthSessionProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-auth-session"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPAuthSessionProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-auth-sess + | | | | | { + | | | | | "EPICProviderClass" = "AppleDCPDPTXHDCP2Controller" + | | | | | "EPICLocation" = "External" + | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-auth-session:0" + | | | | | "interface-id" = 0x43 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1aebe4,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "EPICUnit" = 0x0 + | | | | | "EPICName" = "dcpdptx-hdcp-auth-session" + | | | | | "role" = "DCPEXT" + | | | | | "HDCPProtocolType" = 0x2 + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x4,"enqueued-reports"=0x8,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x4,"handled-responses"=0x0} + | | | | | "HDCPMessageTransportType" = "IODPHDCPMessageTransport" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemoteHDCPAuthSessionProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-auth-session"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPAuthSessionProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "External" + | | | | "Unit" = 0x0 + | | | | } + | | | | + | | | +-o DCPEXTEndpoint13 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint13 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint13" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint18 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint18 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o md-manager + | | | | | { + | | | | | "interface-id" = 0x1 + | | | | | "epi-is-desc-mgr" = Yes + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "md-manager" + | | | | | "md-allocator" = "md-al-remote" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x2,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x1af01b,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKLocalMemoryDescriptorManager + | | | | { + | | | | "IOClass" = "AFKLocalMemoryDescriptorManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"md-allocator"="md-al-remote"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleFirmwareKit" + | | | | "role" = "DCPEXT" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "DebugState" = {"Descs"=[],"FreeReqs"=()} + | | | | "md-allocator" = "md-al-local" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint24 + | | | | { + | | | | } + | | | | + | | | +-o AppleDCPLinkServiceSoC + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | "IOClass" = "AppleDCPLinkServiceSoC" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("DCPEndpoint24","DCPEXTEndpoint24") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "DCPEXTEndpoint24" + | | | "IOUserClientClass" = "AppleDCPLinkService" + | | | } + | | | + | | +-o dart-dcpext@930C000 + | | | | { + | | | | "dart-id" = <0e000000> + | | | | "IOInterruptSpecifiers" = (<57020000>) + | | | | "bypass-15" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31930c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525441534300> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "l2-tt-5" = <0040e3ff030100000200000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d64637065787400> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <050000000f000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <57020000> + | | | | "pt-region-5" = <0040e3ff030100000040e7ff03010000> + | | | | "dapf-instance-0" = <000070d002000000008071d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000004072d002000000008072d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000000d0020000007f8607d0020000002000000000000000000000000000000000000000000000000000000000000000000301000000000000003cd00200000000003fd00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000010c702000000004010c70200000020000000000000000000000000000000$ + | | | | "vm-base" = <0000000000010000> + | | | | "sid-count" = <10000000> + | | | | "retention-force-quiesce" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "apf-bypass-15" = <> + | | | | "reg" = <00c03009010000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "IOFunctionParent000000EA" = <> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-dcpext@5 + | | | | { + | | | | "name" = <6d61707065722d64637065787400> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <05000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <00409c05000100000040320700010000> + | | | } + | | | + | | +-o dart-dispext0@9304000 + | | | | { + | | | | "apf-bypass-4" = <> + | | | | "page-size" = <00400000> + | | | | "l2-tt-4" = <0040e2ff030100000200000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "retention" = <> + | | | | "sid" = <00000000040000000f000000> + | | | | "interrupts" = <57020000> + | | | | "flush-by-dva" = <00000000> + | | | | "apf-bypass-0" = <> + | | | | "retention-force-quiesce" = <> + | | | | "real-time" = <> + | | | | "apf-bypass-15" = <> + | | | | "dart-id" = <0f000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "vm-size" = <0000000010000000> + | | | | "sid-count" = <10000000> + | | | | "pt-region-4" = <0040e2ff030100000040e3ff03010000> + | | | | "allow-pte-remap" = <> + | | | | "IODeviceMemory" = (({"address"=0x319304000,"length"=0x4000}),({"address"=0x319300000,"length"=0x4000})) + | | | | "AAPL,phandle" = + | | | | "name" = <646172742d646973706578743000> + | | | | "instance" = <54524144000000004441525400000000554d4d5300000000534d4d5500000000> + | | | | "device_type" = <6461727400> + | | | | "compatible" = <646172742c743831313000> + | | | | "dart-options" = <65000000> + | | | | "l2-tt-0" = <0040e7ff030100000200000000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "vm-base" = <0000000000010000> + | | | | "reg" = <0040300901000000004000000000000000003009010000000040000000000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "bypass-15" = <> + | | | | "IOInterruptSpecifiers" = (<57020000>) + | | | | "pt-region-0" = <0040e7ff030100000040ebff03010000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent000000EC" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-dispext0@0 + | | | | | { + | | | | | "name" = <6d61707065722d646973706578743000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-dispext0-piodma@4 + | | | | { + | | | | "name" = <6d61707065722d64697370657874302d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o dp-audio1 + | | | | { + | | | | "dma-channels" = <6600000002000000000000000008000000080000000000000000000000000000> + | | | | "power-gates" = <5f000000> + | | | | "dma-parent" = <95000000> + | | | | "clock-gates" = <5f000000> + | | | | "function-device_reset_dpa" = <82000000545352415f000000> + | | | | "device_type" = <64702d617564696f3100> + | | | | "name" = <64702d617564696f3100> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o DCPAVAudioDMADelegate + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "DCPAVAudioDMADelegate" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dp-audio","dp-audio0","dp-audio1","dp-audio2","dp-audio3","dp-audio4","dp-audio5","dp-audio6","dp-audio7","dp-audio8","dp-audio9") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dp-audio1" + | | | "TransferInformation" = {"TransferAttempts"=0x0,"TransferCompletions"=0x0} + | | | } + | | | + | | +-o scaler0@D000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,) + | | | | "perf-workloads" = + | | | | "clock-gates" = <88010000830000007f01000080010000> + | | | | "AAPL,phandle" = + | | | | "coprovider-group" = <7363616c657200> + | | | | "IODeviceMemory" = (({"address"=0x31d000000,"length"=0x30000}),({"address"=0x31d210000,"length"=0x4000}),({"address"=0x31d204000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = + | | | | "perf-clocks" = <0000000003000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <7363616c65723000> + | | | | "function-device_reset" = <820000005453524175000000> + | | | | "interrupt-parent" = <69000000> + | | | | "workload-priority" = <05000000> + | | | | "compatible" = <7363616c65722c7438313031007363616c65722c73356c383936307800> + | | | | "interrupts" = + | | | | "clock-ids" = <7f010000> + | | | | "hardware-version" = <10000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <7363616c657200> + | | | | "power-gates" = <88010000830000007f01000080010000> + | | | | "reg" = <0000000d0100000000000300000000000000210d0100000000400000000000000040200d010000000040000000000000> + | | | | } + | | | | + | | | +-o AppleM2ScalerCSCDriver + | | | | { + | | | | "hcuApiWithoutHdr" = No + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "GangedTransformSize" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "EnableMSRPowerDown" = Yes + | | | | "EnableStickyRegistersDump" = No + | | | | "LogVerbosity" = 0x0 + | | | | "ActiveDartStartTime_0" = 0x78cd203486ed + | | | | "DisableSIMDOptimizations" = No + | | | | "EnableCacheHints" = Yes + | | | | "IOMatchedAtBoot" = Yes + | | | | "ForceDisplayFilters" = No + | | | | "PixelCapturePreSclX" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "TriggerOneTimeRegistersDump" = No + | | | | "ActiveDartEndTime_0" = 0x0 + | | | | "IOClass" = "AppleM2ScalerCSCDriver" + | | | | "LogModuleMask" = 0x0 + | | | | "DisableTimeoutRegisterDump" = No + | | | | "FakePowerState" = No + | | | | "IONameMatched" = "scaler,s5l8960x" + | | | | "ContextSwitchCount_0" = 0x0 + | | | | "ScalerStartTime_0" = 0x78cd2035e0ca + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "ScalerEndTime_0" = 0x78cd203ac059 + | | | | "EnableKernelTests" = No + | | | | "ScalerUsage_0" = 0x133a51 + | | | | "WorkloadPriority" = 0x0 + | | | | "PixelCapturePreSclY" = 0x0 + | | | | "PixelCapturePostSclX" = 0x0 + | | | | "TransformSize_0" = 0xe1000 + | | | | "MaxActiveWindowSize" = 0x0 + | | | | "ForceDefaultFilters" = 0x0 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "NumScalers" = 0x1 + | | | | "LogHeaderMask" = 0x0 + | | | | "EnableFiltersNoRewriteMode" = No + | | | | "IOSurfaceAcceleratorCapabilitiesDict" = {"IOSurfaceAcceleratorCapabilitiesSymmetricScaling"=0x0,"IOSurfaceAcceleratorFormatOut2Planes444"=0x1,"IOSurfaceAcceleratorCapabilities16bitYCbCr"=0x1,"IOSurfaceAcceleratorFormatInLumaOnlyL010"=0x1,"IOSurfaceAcceleratorCapabilities12bitYCbCr"=0x1,"IOSurfaceAcceleratorFormatInARGB8101010"=0x1,"IOSurfaceAcceleratorCapabilitiesInterchangeSubblockSize"=0x4,"IOSurfaceAcceleratorFormatIn1PlaneYCBCR10422"=0x1,"IOSurfaceAcceleratorFormatOutPMARGB8888"=0x1,"IOSurfaceAcceleratorCapabilitiesSourc$ + | | | | "EnablePixelCapture" = No + | | | | "ClearUsageStatistics" = 0x0 + | | | | "SymmetricScaling" = 0x0 + | | | | "TriggerPipeEnablementDump" = 0x0 + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "ForcedTimeoutModeEnable" = No + | | | | "IONameMatch" = ("scaler,s5l8960x") + | | | | "EnableCompletionRegistersDump" = No + | | | | "ScalerLoad_0" = 0x6bdc376407 + | | | | "DisableMsbReplicationWorkaround" = 0x0 + | | | | "DisableDeRinging" = No + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "TransformDumpLevel" = 0x0 + | | | | "ChromaDownsamplingCositingMethod" = 0x0 + | | | | "PixelCapturePostSclY" = 0x0 + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | { + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | } + | | | + | | +-o dart-scaler@D200000 + | | | | { + | | | | "dart-id" = <10000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31d200000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7363616c657200> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0000000001000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "manual-availability" = <01000000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff0000000000080808000000000028020000040000003f00003f000000000a00000a000000002c02000004000000000700000000000000010000000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000200d010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent000000F1" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-scaler@0 + | | | | | { + | | | | | "name" = <6d61707065722d7363616c657200> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-scaler-piodma@1 + | | | | { + | | | | "name" = <6d61707065722d7363616c65722d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o jpeg0@89000000 + | | | | { + | | | | "compatible" = <6a7065672c7438313130006a7065672c73356c383932307800> + | | | | "iommu-parent" = + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "hw-type" = <663030303800> + | | | | "reg" = <00000089000000000040000000000000> + | | | | "clock-gates" = <860100007501000076010000> + | | | | "clock-ids" = <4501000046010000> + | | | | "device_type" = <6a70656700> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x299000000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "power-gates" = <860100007501000076010000> + | | | | "coprovider-group" = <6a70656700> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6a7065673000> + | | | | } + | | | | + | | | +-o AppleJPEGDriver + | | | | { + | | | | "IOClass" = "AppleJPEGDriver" + | | | | "AppleJPEGSupportsMissingEOI" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleJPEGDriver" + | | | | "IOMatchedAtBoot" = Yes + | | | | "Fast Clock frames_1" = 0x34 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AppleJPEGIsLegacyDevice" = 0x0 + | | | | "AppleJPEGSupportsCompressedInterchangeFormats" = 0x1 + | | | | "AppleJPEGSupportsAppleInterchangeFormats" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "Norm Clock frames_0" = 0x35b + | | | | "IONameMatch" = ("jpeg,s5l8920x") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleJPEGDriver" + | | | | "AppleJPEGNumCores" = 0x2 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleJPEGDriver" + | | | | "Fast Clock frames_0" = 0x5cf + | | | | "IONameMatched" = "jpeg,s5l8920x" + | | | | "AppleJPEGSupports12BitsFormat" = 0x0 + | | | | "AppleJPEGSupportsRSTLogging" = 0x1 + | | | | "Norm Clock frames_1" = 0x1c + | | | | "AppleJPEGRequiresMCUAlignment" = 0x0 + | | | | "AppleJPEGSupportsDCTScaling" = 0x1 + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-jpeg0@89004000 + | | | | { + | | | | "dart-id" = <11000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x299004000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6a7065673000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00400089000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000F5" = <> + | | | | } + | | | | + | | | +-o mapper-jpeg0@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6a7065673000> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o jpeg1@89008000 + | | | | { + | | | | "compatible" = <6a7065672c7438313130006a7065672c73356c383932307800> + | | | | "iommu-parent" = + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "hw-type" = <663030303800> + | | | | "reg" = <00800089000000000040000000000000> + | | | | "clock-gates" = <870100007501000076010000> + | | | | "clock-ids" = <4501000046010000> + | | | | "device_type" = <6a70656700> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x299008000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "power-gates" = <870100007501000076010000> + | | | | "coprovider-group" = <6a70656700> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6a7065673100> + | | | | } + | | | | + | | | +-o AppleJPEGDriver + | | | | { + | | | | "IOClass" = "AppleJPEGDriver" + | | | | "AppleJPEGSupportsMissingEOI" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleJPEGDriver" + | | | | "IOMatchedAtBoot" = Yes + | | | | "Fast Clock frames_1" = 0x34 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AppleJPEGIsLegacyDevice" = 0x0 + | | | | "AppleJPEGSupportsCompressedInterchangeFormats" = 0x1 + | | | | "AppleJPEGSupportsAppleInterchangeFormats" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "Norm Clock frames_0" = 0x35b + | | | | "IONameMatch" = ("jpeg,s5l8920x") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleJPEGDriver" + | | | | "AppleJPEGNumCores" = 0x2 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleJPEGDriver" + | | | | "Fast Clock frames_0" = 0x5cf + | | | | "IONameMatched" = "jpeg,s5l8920x" + | | | | "AppleJPEGSupports12BitsFormat" = 0x0 + | | | | "AppleJPEGSupportsRSTLogging" = 0x1 + | | | | "Norm Clock frames_1" = 0x1c + | | | | "AppleJPEGRequiresMCUAlignment" = 0x0 + | | | | "AppleJPEGSupportsDCTScaling" = 0x1 + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-jpeg1@8900C000 + | | | | { + | | | | "dart-id" = <12000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x29900c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6a7065673100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00c00089000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000F8" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-jpeg1@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6a7065673100> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ave@5100000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | "clock-gates" = <830100007001000071010000c1000000c2000000c3000000c4000000c000000072010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x315100000,"length"=0x45c000}),({"address"=0x315800000,"length"=0x800000}),({"address"=0x315050000,"length"=0x4000}),({"address"=0x2d0708000,"length"=0x4000}),({"address"=0x314000000,"length"=0x1000000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "function-clock_req_interrupt" = <8200000051524943730000002300000001000000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "uuid" = <35363436334334372d364637302d333731352d384333362d31383741353134444535344400> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <61766500> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6176653200> + | | | | "interrupts" = + | | | | "clock-ids" = <9e010000> + | | | | "pre-loaded" = <01000000> + | | | | "soc-id" = <743831323200> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61766500> + | | | | "power-gates" = <830100007001000071010000c1000000c2000000c3000000c4000000c000000072010000> + | | | | "reg" = <000010050100000000c04500000000000000800501000000000080000000000000000505010000000040000000000000008070c000000000004000000000000000000004010000000000000100000000> + | | | | "segment-ranges" = <00c0a300000100000000000000000000000000000001000000801000010000000080840100010000008010000000000000801000000100000080120000000000> + | | | | } + | | | | + | | | +-o AppleAVE2Driver + | | | { + | | | "IOClass" = "AppleAVE2Driver" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleAVE2" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "H264EncoderCanDo444" = Yes + | | | "H264EncoderCanDo1080p60" = Yes + | | | "HEVCEncoderCanDo4k60" = Yes + | | | "IOAVEMCTFFilterCapabilities" = {"MinResolutions"=({"Width"=0xa0,"Height"=0x40}),"MaxResolutions"=({"Width"=0x4000,"Height"=0x2000},{"Width"=0x2000,"Height"=0x4000})} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("ave2") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "H264EncoderCanDo422" = Yes + | | | "H264EncoderCanDo4k30" = Yes + | | | "HEVCEncoderCanDo4k30" = Yes + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IONameMatched" = "ave2" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAVE2" + | | | "MCTFCanDo420" = Yes + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAVE2" + | | | } + | | | + | | +-o dart-ave@5030000 + | | | | { + | | | | "dart-id" = <13000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "bypass-15" = <0000001002000000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x315030000,"length"=0x4000}),({"address"=0x315040000,"length"=0x4000}),({"address"=0x315020000,"length"=0x4000}),({"address"=0x315044000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000054524144010000004350554441525400554d4d5300000000534d4d550000000046504144010000004350555f44415046> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <01000000> + | | | | "dart-options" = <25000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "allow-mixed-bypass-mode" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61766500> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff00000000000808080000000000280200000400000000003f000000000000000a00000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000305010000000040000000000000000004050100000000400000000000000000020501000000004000000000000000400405010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000FB" = <> + | | | | } + | | | | + | | | +-o mapper-ave@0 + | | | | { + | | | | "name" = <6d61707065722d61766500> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <80000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o avd@78000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,) + | | | | "ads-present" = <01000000> + | | | | "clock-gates" = <840100007301000074010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x288000000,"length"=0x1404000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <61766400> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6176642c743831303300> + | | | | "clock-ids" = <56010000> + | | | | "interrupts" = + | | | | "avd-version" = <04000000> + | | | | "function-avd_reset" = <82000000545352412e000000> + | | | | "decode-samples-per-second" = <03b70100> + | | | | "h264-playback-level" = <2a000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61766400> + | | | | "power-gates" = <840100007301000074010000> + | | | | "reg" = <00000078000000000040400100000000> + | | | | } + | | | | + | | | +-o AppleAVD + | | | | { + | | | | "IOClass" = "AppleAVD" + | | | | "IOPlatformSleepAction" = 0x64 + | | | | "AVDKextType" = 0x1 + | | | | "H264DecoderSupportsTileDecode" = Yes + | | | | "IOAVDAV1DecodeCapabilities" = {"VTSupportedProfileArray"=(0x0,0x2),"VTPerProfileDetails"={"0"={"VTMaxDecodeLevel"=0x3f},"2"={"VTMaxDecodeLevel"=0x3f}}} + | | | | "H264DecoderCanDo444" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAVD" + | | | | "IOMatchedAtBoot" = Yes + | | | | "FirmwareSize" = " 58396" + | | | | "AVCSupported" = 0x10006000000370f + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "HEVCSupported" = Yes + | | | | "H264DecoderCanDo422" = Yes + | | | | "HEVCCanDecodeTileToCanvas" = Yes + | | | | "IOAVDH264DecodeCapabilities" = {"VTSupportedProfileArray"=(0x42,0x4d,0x58,0x64,0x6e,0x7a,0xf4,0x2c),"VTPerProfileDetails"={"122"={"VTMaxDecodeLevel"=0x50},"66"={"VTMaxDecodeLevel"=0x50},"244"={"VTMaxDecodeLevel"=0x50},"77"={"VTMaxDecodeLevel"=0x50},"110"={"VTMaxDecodeLevel"=0x50},"100"={"VTMaxDecodeLevel"=0x50},"88"={"VTMaxDecodeLevel"=0x50},"44"={"VTMaxDecodeLevel"=0x50}}} + | | | | "IOProbeScore" = 0x0 + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IONameMatch" = ("avd,s5l8920x","avd,t8020","avd,t8030","avd,t8101","avd,t8103") + | | | | "FirmwareVersion" = "0x74da5854" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAVD" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAVD" + | | | | "IONameMatched" = "avd,t8103" + | | | | "IOAVDHEVCDecodeCapabilities" = {"VTSupportedProfileArray"=(0x1,0x2,0x3,0x4),"VTPerProfileDetails"={"3"={"VTMaxDecodeLevel"=0xba},"1"={"VTMaxDecodeLevel"=0xba},"4"={"VTMaxDecodeLevel"=0xba},"2"={"VTMaxDecodeLevel"=0xba}}} + | | | | "IOPlatformWakeAction" = 0x64 + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-avd@79010000 + | | | | { + | | | | "dart-id" = <14000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x289010000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61766400> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000100000002000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000179000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000FE" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-avd@0 + | | | | | { + | | | | | "name" = <6d61707065722d61766400> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-avd-piodma@1 + | | | | | { + | | | | | "name" = <6d61707065722d6176642d70696f646d6100> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "AAPL,phandle" = <00010000> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <00010000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-avd-adsbuf@2 + | | | | { + | | | | "name" = <6d61707065722d6176642d61647362756600> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <02000000> + | | | | "AAPL,phandle" = <01010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <01010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apr@11000000 + | | | | { + | | | | "compatible" = <6170722c663000> + | | | | "iommu-parent" = <04010000> + | | | | "interrupt-parent" = <69000000> + | | | | "reg" = <000000110100000000400000000000000000001001000000008000000000000000800711010000000040000000000000> + | | | | "interrupts" = <590300007e030000> + | | | | "AAPL,phandle" = <02010000> + | | | | "clock-gates" = <960100007d0100007e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <61707200> + | | | | "IOInterruptSpecifiers" = (<59030000>,<7e030000>) + | | | | "IODeviceMemory" = (({"address"=0x321000000,"length"=0x4000}),({"address"=0x320000000,"length"=0x8000}),({"address"=0x321078000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "function-bw_req_interrupt" = <8200000051524942740000000000000000000000> + | | | | "function-device_reset" = <820000005453524174000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <61707200> + | | | | } + | | | | + | | | +-o AppleProResHW + | | | { + | | | "IOClass" = "AppleProResHW" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleProResHW" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformWakeAction" = 0x64 + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IOPlatformSleepAction" = 0x64 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("apr,f0") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "apr,f0" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleProResHW" + | | | "IOProResHWDecode" = "1" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleProResHW" + | | | "IOProResHWEncode" = "1" + | | | } + | | | + | | +-o dart-apr@11028000 + | | | | { + | | | | "dart-id" = <15000000> + | | | | "IOInterruptSpecifiers" = (<58030000>) + | | | | "AAPL,phandle" = <03010000> + | | | | "IODeviceMemory" = (({"address"=0x321028000,"length"=0x4000}),({"address"=0x32102c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152545254000054524144010000004441525441534300> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "clamp-tlimits" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "trans-idle-timeout" = <64000000> + | | | | "name" = <646172742d61707200> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <01000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <58030000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000007f000f0000000000000004000000000004080000040000007f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0080021101000000004000000000000000c00211010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <03010000> + | | | | "IOFunctionParent00000103" = <> + | | | | } + | | | | + | | | +-o mapper-apr@1 + | | | | { + | | | | "name" = <6d61707065722d61707200> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <00010000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "AAPL,phandle" = <04010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <04010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o isp@94000000 + | | | | { + | | | | "function-bw_req_interrupt" = <82000000515249422d0000002000000001000000> + | | | | "function-ane_data_param_get" = <0801000074654764> + | | | | "function-ane_ep_control" = <080100006c744365> + | | | | "function-saca0c" = <2601000041434153346d6163> + | | | | "interrupt-parent" = <69000000> + | | | | "no-firmware-service" = <> + | | | | "interrupts" = <3701000038010000390100003a010000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "function-saca2c" = <2601000041434153356d6163> + | | | | "iommu-parent" = <07010000> + | | | | "function-saca5" = <2601000041434153476d6163> + | | | | "function-saca3b" = <2601000041434153436d6163> + | | | | "face-detection-support" = <01000000> + | | | | "function-ane_data_param_set" = <0801000074655364> + | | | | "function-conf_isp_ref1_clk_freq" = <8200000043505349010000009e1ac15516981b55> + | | | | "function-saca4c" = <2601000041434153466d6163> + | | | | "clock-gates" = <890100002000000021000000220000002300000077010000> + | | | | "role" = <49535000> + | | | | "uuid" = <34323237304530442d333337412d333036352d424333432d31334233343331354139344400> + | | | | "function-saca0" = <2601000041434153306d6163> + | | | | "pre-loaded" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "lpdprx_phy_efuse" = <11000000> + | | | | "lpdprx_phy1_efuse" = <12000000> + | | | | "IODeviceMemory" = (({"address"=0x2a4000000,"length"=0x4000000}),({"address"=0x2d0700000,"length"=0x18000})) + | | | | "isp-mobile-defect" = <00000000> + | | | | "function-saca4" = <2601000041434153446d6163> + | | | | "AAPL,phandle" = <05010000> + | | | | "name" = <69737000> + | | | | "power-gates" = <890100002000000021000000220000002300000077010000> + | | | | "function-clock_req_interrupt" = <82000000515249432d0000002100000001000000> + | | | | "function-saca0b" = <2601000041434153326d6163> + | | | | "clock-ids" = <690100006b010000> + | | | | "device_type" = <69737000> + | | | | "compatible" = <6973702c6831332d67656e65726963006973702c73356c383936307800> + | | | | "function-saca2b" = <2601000041434153336d6163> + | | | | "function-saca3" = <2601000041434153426d6163> + | | | | "function-device_reset" = <82000000545352412d000000> + | | | | "camera-front" = <01000000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "function-saca2d" = <2601000041434153366d6163> + | | | | "function-conf_isp_ref2_clk_freq" = <8200000043505349020000009e1ac15516981b55> + | | | | "function-saca4b" = <2601000041434153456d6163> + | | | | "sensor-type" = <12000000> + | | | | "segment-ranges" = <0040b400000100000000000000000000000000000001000000809d0001000000000097010001000000809d000000000000809d000001000000c0410000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <00000094000000000000000400000000000070c0000000000080010000000000> + | | | | "function-conf_isp_ref0_clk_freq" = <8200000043505349000000009e1ac15516981b55> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "function-saca2" = <2601000041434153316d6163> + | | | | "IOInterruptSpecifiers" = (<37010000>,<38010000>,<39010000>,<3a010000>) + | | | | } + | | | | + | | | +-o AppleH13CamIn + | | | | { + | | | | "IOClass" = "AppleH13CamIn" + | | | | "FrontIRStructuredLightProjectorSerialNumString" = "XXXXXXXX" + | | | | "ISPFirmwareVersion" = "49.500" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleH13CameraInterface" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "FrontCameraSerialNumber" = <0000000000000000> + | | | | "FrontCameraModuleSerialNumString" = "DNM502502JW0WNMD6" + | | | | "IOFunctionParent00000105" = <> + | | | | "SavageDATFileStatus" = "Unknown" + | | | | "IOProbeScore" = 0x0 + | | | | "RamdiskMode" = No + | | | | "IONameMatch" = "isp,h13-generic" + | | | | "FrontCameraExpected" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleH13CameraInterface" + | | | | "FCClValidationStatus" = "Invalid" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleH13CameraInterface" + | | | | "FirmwareLoaded" = Yes + | | | | "IONameMatched" = "isp,h13-generic" + | | | | "FrontCameraActive" = Yes + | | | | "CmPMValidationStatus" = "Unknown" + | | | | "CmClValidationStatus" = "Unsupported" + | | | | "YonkersDATFileStatus" = "Unknown" + | | | | "FrontCameraStreaming" = Yes + | | | | "IOReportLegend" = ({"IOReportGroupName"="ISP","IOReportChannels"=((0x746f7420696e7400,0x180000001,"Total Interrupts"),(0x707772206f6e0000,0x180000001,"Number Power Ups"),(0x707772206f666600,0x180000001,"Number Power Downs"),(0x7361633020636e74,0x180000001,"Number SAC Action0"),(0x7361633120636e74,0x180000001,"Number SAC Action1"),(0x7361633220636e74,0x180000001,"Number SAC Action2"),(0x7361633420636e74,0x180000001,"Number SAC Action4"),(0x7361633066616931,0x180000001,"Number SAC Action0 FreqArray1"),(0x7361633166616931,0x180$ + | | | | "RestoreMode" = No + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ISPFirmwareLinkDate" = "Mar 7 2025 - 21:21:48" + | | | | } + | | | | + | | | +-o AppleH13CamInUserClient + | | | { + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | } + | | | + | | +-o dart-isp@964A8000 + | | | | { + | | | | "dart-id" = <16000000> + | | | | "IOInterruptSpecifiers" = (<3c010000>) + | | | | "bypass-15" = <> + | | | | "AAPL,phandle" = <06010000> + | | | | "IODeviceMemory" = (({"address"=0x2a64a8000,"length"=0x4000}),({"address"=0x2a64b4000,"length"=0x4000}),({"address"=0x2a64bc000,"length"=0x4000}),({"address"=0x2a64b0000,"length"=0x4000}),({"address"=0x2a64b8000,"length"=0x4000}),({"address"=0x2a64ac000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b0054524144020000004441525452540000554d4d5301000000534d4d55424c4b00554d4d5302000000534d4d55525400004650414400000000444150464c4c5400> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d69737000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <3c010000> + | | | | "manual-availability" = <01000000> + | | | | "real-time" = <> + | | | | "dapf-instance-0" = + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "dart-tunables-instance-2" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00804a9600000000004000000000000000404b9600000000004000000000000000c04b9600000000004000000000000000004b9600000000004000000000000000804b9600000000004000000000000000c04a96000000000040000000000000> + | | | | "vm-size" = <000000a000000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000106" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <06010000> + | | | | } + | | | | + | | | +-o mapper-isp@0 + | | | | { + | | | | "name" = <6d61707065722d69737000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <80010000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = <07010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <07010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ane@0 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0c020000>) + | | | | "clock-gates" = <85010000> + | | | | "AAPL,phandle" = <08010000> + | | | | "IODeviceMemory" = (({"address"=0x310000000,"length"=0x2000000}),({"address"=0x2d0700000,"length"=0x18000}),({"address"=0x2d0724000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "ane-type" = + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <0a010000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "uuid" = <44433046354237462d393332432d333545322d414630432d35333231393133464142413000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <616e6500> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <616e652c743830323000> + | | | | "interrupts" = <0c020000> + | | | | "clock-ids" = <4a0100004901000048010000> + | | | | "pre-loaded" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616e6500> + | | | | "power-gates" = <85010000> + | | | | "reg" = <00000000010000000000000200000000000070c0000000000080010000000000004072c0000000000040000000000000> + | | | | "segment-ranges" = <00c09700000100000000000000000000000000000001000000000c0001000000004055010001000000000c000000000000000c000001000000c0100000000000> + | | | | } + | | | | + | | | +-o H11ANE + | | | | { + | | | | "IOClass" = "H11ANEIn" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleH11ANEInterface" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "ane,t8020" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="H11ANE","IOReportChannels"=((0x0,0x180000001,"Total Interrupts"),(0x1,0x180000001,"Number Power Ups"),(0x2,0x180000001,"Number Power Downs"),(0x3,0x180000001,"Memory Alloc Requests"),(0x4,0x180000001,"Memory Free Requests"),(0x5,0x180000001,"ANECPU Commands Sent"),(0x6,0x180000001,"ANECPU Responses Received"),(0x7,0x180000001,"H2T Buffer Responses"),(0x8,0x180000001,"T2H Buffer Notifications"),(0x9,0x180000001,"T2H IO Commands"),(0xa,0x180000001,"ANECPU Log Messages"),(0xb,0x180000001$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "ane,t8020" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleH11ANEInterface" + | | | | "DeviceProperties" = {"ANEDevicePropertyANECPUSubType"=0x6,"ANEDevicePropertyIsInternalBuild"=No,"ANEDevicePropertyANEVersion"=0x90,"ANEDevicePropertyANEMinorVersion"=0x20,"ANEDevicePropertyANEHWBoardType"=0xb0,"ANEDevicePropertyANEHWBoardSubType"=0x0,"ANEDevicePropertyNumANECores"=0x10,"ANEDevicePropertyTypeANEArchitectureTypeStr"="h15g"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleH11ANEInterface" + | | | | "FirmwareLoaded" = Yes + | | | | "IOFunctionParent00000108" = <> + | | | | } + | | | | + | | | +-o ANEClientHints + | | | | { + | | | | } + | | | | + | | | +-o H11ANEInUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 9871, aneuserd" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-ane@1800000 + | | | | { + | | | | "dart-id" = <17000000> + | | | | "IOInterruptSpecifiers" = (<0d020000>) + | | | | "bypass-15" = <> + | | | | "AAPL,phandle" = <09010000> + | | | | "IODeviceMemory" = (({"address"=0x311800000,"length"=0x4000}),({"address"=0x311810000,"length"=0x4000}),({"address"=0x311820000,"length"=0x4000}),({"address"=0x311804000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152544c4c540054524144010000004441525442524400545241440200000044415254425752004650414400000000444150464c4c5400> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff001000000000008000004000000ff000f000000000000000600000000000408000004000000ff000f0$ + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d616e6500> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <0d020000> + | | | | "manual-availability" = <01000000> + | | | | "dapf-instance-0" = <008046a502000000038046a502000000010000000000000000000000000000000000000000000000000000000000000000030100380470d0020000003b0470d00200000001000000000000000000000000000000000000000000000000000000000000000003010000c070d0020000001bc070d0020000000100000000000000000000000000000000000000000000000000000000000000000301002c6872d0020000002f6872d002000000010000000000000000000000000000000000000000000000000000000000000000030100008046920200000003804692020000000100000000000000000000000000000000000000000000000000000000000000$ + | | | | "dart-tunables-instance-2" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000007f000f0000000000000006000000000004080000040000007f000f0$ + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00008001010000000040000000000000000081010100000000400000000000000000820101000000004000000000000000408001010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000109" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <09010000> + | | | | } + | | | | + | | | +-o mapper-ane@0 + | | | | { + | | | | "name" = <6d61707065722d616e6500> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <00020000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = <0a010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <0a010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sgx@80000000 + | | | | { + | | | | "reg" = <000000800000000000000004000000000000d0800000000000c0120000000000> + | | | | "perf-state-table-count" = <01000000> + | | | | "gpu-se-engagement-criteria" = <58020000> + | | | | "gpu-pwr-integral-gain" = <8695a53c> + | | | | "gfx-handoff-size" = <0040000000000000> + | | | | "gpu-fast-die0-target" = <58000000> + | | | | "gpu-avg-power-min-duty-cycle" = <1e000000> + | | | | "clock-ids" = <66010000> + | | | | "gpu-se-inactive-threshold" = + | | | | "interrupt-parent" = <69000000> + | | | | "power-gates" = <6501000066010000> + | | | | "gpu-fast-die0-sensor-mask" = <02000000> + | | | | "gfx-shared-l2-region-size" = <0040000000000000> + | | | | "interrupts-valid" = <5f000000> + | | | | "gpu-se-reset-criteria" = <32000000> + | | | | "gpu-avg-power-kp" = <9a99f93f> + | | | | "gfx-shared-region-size" = <0000040000000000> + | | | | "gpu-perf-boost-min-util" = <5a000000> + | | | | "gpu-perf-tgt-utilization" = <55000000> + | | | | "metal-standard" = <00010000> + | | | | "gpu-pwr-integral-min-clamp" = <00000000> + | | | | "gpu-se-tgt" = <78050000> + | | | | "gpu-avg-power-ki-only" = <00008c42> + | | | | "gpu-num-perf-states" = <0d000000> + | | | | "gfx-data-base" = <0000660100010000> + | | | | "gpu-se-filter-time-constant-1" = <03000000> + | | | | "compatible" = <6770752c743831323200> + | | | | "gpu-pwr-sample-period-aic-clks" = <400d0300> + | | | | "gpu-se-kp" = <0000a0c0> + | | | | "name" = <73677800> + | | | | "gptbat-ready" = <01000000> + | | | | "AAPL,phandle" = <0b010000> + | | | | "gpu-ppm-ki" = <3333c242> + | | | | "gpu-ppm-filter-time-constant-ms" = <64000000> + | | | | "gfx-qos" = <0100000001000000> + | | | | "interrupts" = + | | | | "gpu-pwr-proportional-gain" = + | | | | "gpu-perf-filter-drop-threshold" = <00000000> + | | | | "gpu-pwr-filter-time-constant" = <39010000> + | | | | "gpu-fast-die0-integral-gain" = <0000e143> + | | | | "meta-sw-interrupt" = <484001d102000000484201d10200000000400000> + | | | | "gpu-se-ki-1" = <0000c8c2> + | | | | "rtkit-private-vm-region-size" = <0000000020000000> + | | | | "procedural-antialiasing" = <> + | | | | "gpu-perf-proportional-gain2" = + | | | | "gpu-sochot-temp" = <6c000000> + | | | | "perf-states" = <000000007d000000807825147602000080eed524ad02000000ff712fe90200000059d431110300000028503711030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "clock-gates" = <6501000066010000> + | | | | "gpu-se-ki" = <000048c2> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "perf-states-sram" = <0000000016030000807825141603000080eed5241603000000ff712f160300000059d431160300000028503716030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "gpu-perf-filter-time-constant" = <05000000> + | | | | "gpu-fast-die0-alarm-threshold" = <58000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "perf-state-count" = <0e000000> + | | | | "gpu-perf-boost-ce-step" = <32000000> + | | | | "gfx-handoff-base" = <0000f7ff03010000> + | | | | "rtkit-private-vm-region-base" = <0000000000fcffff> + | | | | "gpu-perf-integral-gain" = + | | | | "gpu-pwr-min-duty-cycle" = <1e000000> + | | | | "ttbat-phys-addr-base" = + | | | | "gfx-shared-region-base" = <0080f7ff03010000> + | | | | "gpu-perf-integral-min-clamp" = <00000000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "gpu-avg-power-target-filter-tc" = <01000000> + | | | | "gpu-perf-filter-time-constant2" = + | | | | "IODeviceMemory" = (({"address"=0x290000000,"length"=0x4000000}),({"address"=0x290d00000,"length"=0x12c000})) + | | | | "gfx-shared-l2-region-base" = <0040f7ff03010000> + | | | | "gpu-avg-power-filter-tc-ms" = <28000000> + | | | | "product-dram" = <32000000> + | | | | "has-kf" = <01000000> + | | | | "gpu-fast-die0-proportional-gain" = <00000842> + | | | | "gpu-perf-proportional-gain" = + | | | | "opengl-standard" = <00030000> + | | | | "gpu-perf-base-pstate" = <01000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "gpu-power-sample-period" = <08000000> + | | | | "device_type" = <73677800> + | | | | "gpu-se-filter-time-constant" = <09000000> + | | | | "gpu-ppm-kp" = <9a993940> + | | | | "gfx-data-size" = <00000f0000000000> + | | | | "gpu-se-kp-1" = <000020c1> + | | | | "gpu-region-size" = <0040000000000000> + | | | | "gpu-perf-integral-gain2" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200040000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200040001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200040002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200040003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200040004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "gpu-region-base" = <0080fbff03010000> + | | | | } + | | | | + | | | +-o AGXAcceleratorG15G + | | | | { + | | | | "SchedulerState" = {"Stamps"=(),"BusyWorkQueues"=()} + | | | | "IOMatchedAtBoot" = Yes + | | | | "vendor-id" = <6b100000> + | | | | "GPURawCounterBundleName" = "AGXGPURawCounterBundle" + | | | | "AGXParameterBufferMaxSizeEverMemless" = 0x22440000 + | | | | "GPURawCounterPluginClassName" = "AGXGPURawCounterSourceGroup" + | | | | "MetalPluginClassName" = "AGXG15GDevice" + | | | | "SCMVersionNumber" = "" + | | | | "AGCInfo" = {"fLastSubmissionPID"=0x1bd,"fSubmissionsSinceLastCheck"=0x0,"fBusyCount"=0x0} + | | | | "MetalPluginName" = "AGXMetalG15G_C0" + | | | | "IONameMatched" = "gpu,t8122" + | | | | "CommandSubmissionEnabled" = Yes + | | | | "PerformanceStatistics" = {"In use system memory (driver)"=0x0,"Alloc system memory"=0x2965f4000,"Tiler Utilization %"=0xd,"recoveryCount"=0x0,"lastRecoveryTime"=0x0,"Renderer Utilization %"=0xc,"TiledSceneBytes"=0xd0000,"Device Utilization %"=0xd,"SplitSceneCount"=0x0,"Allocated PB Size"=0x32e0000,"In use system memory"=0x1cc94000} + | | | | "IOGLBundleName" = "AppleMetalOpenGLRenderer" + | | | | "AGXParameterBufferMaxSizeNeverMemless" = 0x11220000 + | | | | "IOGLESBundleName" = "AppleMetalGLRenderer" + | | | | "IOSourceVersion" = "325.34.1" + | | | | "IOPersonalityPublisher" = "com.apple.AGXG15G" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "model" = "Apple M3" + | | | | "AGXTraceCodeVersion" = "3.43.0" + | | | | "SCMBuildTime" = "" + | | | | "CFBundleIdentifier" = "com.apple.AGXG15G" + | | | | "gpu-core-count" = 0x8 + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AGXParameterBufferMaxSize" = 0x33660000 + | | | | "IONameMatch" = ("gpu,t8132","gpu,t8015","gpu,t8027","gpu,t8030","gpu,t8103","gpu,t8122") + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AGXAcceleratorG15G" + | | | | "CFBundleIdentifierKernel" = "com.apple.AGXG15G" + | | | | "GPUConfigurationVariable" = {"num_gps"=0x4,"gpu_gen"=0xf,"is_sksm"=0x0,"usc_gen"=0x3,"num_cores"=0xa,"num_mgpus"=0x1,"gpu_var"="G","core_mask_list"=(0x3bd),"num_frags"=0xa} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x1,0x180000001,"Alloc system memory"),(0x2,0x180000001,"In use system memory"),(0x3,0x180000001,"GPU Restart Count"),(0x4,0x180000001,"In use system memory (driver)"),(0x5,0x180000001,"Last GPU Restart")),"IOReportGroupName"="Internal Statistics","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x454e45524759,0x100020001,"GPU Energy")),"IOReportGroupName"="Energy Model","IOReportChannelInfo"={"IOReportChannelUnit"=0x300007600000000}},{"IOReportGroupName"="GPU $ + | | | | "IOMatchCategory" = "IOAccelerator" + | | | | "IOProbeScore" = 0x2710 + | | | | "KDebugVersion" = 0x100000000 + | | | | "SurfaceList" = () + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 449, runningboardd" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78cd210b8bd9,"accumulatedGPUTime"=0x576bc947d2f},{"API"="Metal","lastSubmittedTime"=0x773473fe1eb7,"accumulatedGPUTime"=0x103ef2eb},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "CommandQueueCount" = 0x4 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x5 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x6e2d50909b86,"accumulatedGPUTime"=0x25cfac6b}) + | | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 449, runningboardd" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x772589bcfd4c,"accumulatedGPUTime"=0x7f14252}) + | | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x5fd16dfb9449,"accumulatedGPUTime"=0x264f3e17e}) + | | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x7733a8304582,"accumulatedGPUTime"=0x154d42fe},{"API"="Metal","lastSubmittedTime"=0x716a5734d383,"accumulatedGPUTime"=0x116a3ab3a}) + | | | | "IOUserClientCreator" = "pid 1079, WallpaperMacinto" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x3 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x69ab4b719e68,"accumulatedGPUTime"=0xf339a0}) + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x3 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x58a7aee7029f,"accumulatedGPUTime"=0x2f56417}) + | | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x4 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78cd205950bb,"accumulatedGPUTime"=0x164243e90},{"API"="Metal","lastSubmittedTime"=0x774928f2575a,"accumulatedGPUTime"=0x1d1931fa},{"API"="Metal","lastSubmittedTime"=0x31cfd967af9d,"accumulatedGPUTime"=0x319c63b92},{"API"="Metal","lastSubmittedTime"=0x7748f6005f60,"accumulatedGPUTime"=0x3fb34},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | | "CommandQueueCount" = 0x5 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0xa + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1345, TextInputMenuAge" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1081, CursorUIViewServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 2809, UserNotification" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 4947, Fork" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 442, com.apple.cmio.r" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 47427, Activity Monitor" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 53769, com.apple.Safari" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 53784, Music" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 91365, Terminal" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x5ac98ba43337,"accumulatedGPUTime"=0x20d90a31}) + | | | | "IOUserClientCreator" = "pid 93188, Telegram" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 93443, System Settings" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 94721, Notes" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x3 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x5d9185b212d1,"accumulatedGPUTime"=0x6d215b8},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 94727, PaperKitExtensio" + | | | | "CommandQueueCount" = 0x4 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x5 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78c5ce091674,"accumulatedGPUTime"=0xfbe6610}) + | | | | "IOUserClientCreator" = "pid 5135, PowerPreferences" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78c9265f949f,"accumulatedGPUTime"=0x2a4c3ef71}) + | | | | "IOUserClientCreator" = "pid 7070, Yandex Helper (G" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78c7a044673a,"accumulatedGPUTime"=0x349a185}) + | | | | "IOUserClientCreator" = "pid 8115, iconservicesagen" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 14001, Electron" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78c920cc79c1,"accumulatedGPUTime"=0x2a2445df3}) + | | | | "IOUserClientCreator" = "pid 14004, Code Helper (GPU" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17471, System Informati" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17475, com.apple.appkit" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17528, Tips" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17531, com.apple.WebKit" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17537, replayd" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x4 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x78a9133d8367,"accumulatedGPUTime"=0xce0ae8}) + | | | | "IOUserClientCreator" = "pid 17880, Freeform" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 18680, Ollama" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="GL/CL","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 18682, Ollama Helper (G" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 18685, ollama" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x789ece8eb913,"accumulatedGPUTime"=0x46293b6de5}) + | | | | "IOUserClientCreator" = "pid 18687, ollama" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 19047, TextInputSwitche" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 19276, LinkedNotesUISer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | { + | | | "API" = "Metal" + | | | "AppUsage" = () + | | | "IOUserClientCreator" = "pid 19379, Python" + | | | } + | | | + | | +-o gfx-asc@82400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <67010000> + | | | | "AAPL,phandle" = <0c010000> + | | | | "IODeviceMemory" = (({"address"=0x292400000,"length"=0x6c000}),({"address"=0x292050000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <0e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6766782d61736300> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = + | | | | "clock-ids" = <66010000> + | | | | "role" = <47465800> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <6766782d61736300> + | | | | "power-gates" = <67010000> + | | | | "reg" = <000040820000000000c006000000000000000582000000000800000000000000> + | | | | "segment-ranges" = <00409000000100000000000000fcffff004090000001000000c0050001000000000066010001000000c0050000fcffff000066010001000000000f0000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "GFX" + | | | | } + | | | | + | | | +-o iop-gfx-nub + | | | | { + | | | | "uuid" = <32324432374432392d454134442d334346322d423932302d39393844303233414536453900> + | | | | "shutdown-sleep" = <> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <0d010000> + | | | | "KDebugCoreID" = 0xf + | | | | "firmware-name" = <47465800> + | | | | "power-managed" = <7472756500> + | | | | "no-firmware-service" = <> + | | | | "segment-ranges" = <00409000000100000000000000fcffff004090000001000000c0050001000000000066010001000000c0050000fcffff000066010001000000000f0000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6766782d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(GFX) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <0d010000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "FirmwareUUID" = "22d27d29-ea4d-3cf2-b920-998d023ae6e9" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "not set" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "GFX" + | | | | "IOReportLegend" = ({"IOReportGroupName"="GFX","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"},{"IOReportGroupName"="GFX","IOReportChannels"=((0x5254537461740000,0x600020002,"power state")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Power State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "GFX" + | | | | | } + | | | | | + | | | | +-o AGXFirmwareKextG15RTBuddy + | | | | { + | | | | "IOPropertyMatch" = {"role"="GFX"} + | | | | "CFBundleIdentifier" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOMatchCategory" = "AGXFirmwareKextG15RTBuddy" + | | | | "IOClass" = "AGXFirmwareKextG15RTBuddy" + | | | | "IOPersonalityPublisher" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "CFBundleIdentifierKernel" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o GFXEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o GFXEndpoint2 + | | | { + | | | } + | | | + | | +-o mapper-gfx-asc + | | | | { + | | | | "compatible" = <696f6d6d752d6d61707065722c67667800> + | | | | "name" = <6d61707065722d6766782d61736300> + | | | | "AAPL,phandle" = <0e010000> + | | | | } + | | | | + | | | +-o AGXArmFirmwareMapper + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.AGXG15G" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AGXArmFirmwareMapper" + | | | "IOPersonalityPublisher" = "com.apple.AGXG15G" + | | | "CFBundleIdentifierKernel" = "com.apple.AGXG15G" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "iommu-mapper,gfx" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper,gfx" + | | | "IOMapperID" = <0e010000> + | | | } + | | | + | | +-o mca-switch@93400000 + | | | | { + | | | | "numSerDes" = <0c000000> + | | | | "compatible" = <6d63612d7377697463682c743831323200> + | | | | "regStride" = <00400000004000000400000004000000> + | | | | "AAPL,phandle" = <0f010000> + | | | | "reg" = <0000409300000000008001000000000000003093000000000000030000000000d80004c000000000100000000000000000005093000000000040000000000000> + | | | | "clock-gates" = <63000000640000006500000067000000> + | | | | "mca-identity" = <2e307773> + | | | | "numMCLKs" = <04000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3400000,"length"=0x18000}),({"address"=0x2a3300000,"length"=0x30000}),({"address"=0x2d00400d8,"length"=0x10}),({"address"=0x2a3500000,"length"=0x4000})) + | | | | "device_type" = <6d63612d73776974636800> + | | | | "numClusters" = <04000000> + | | | | "name" = <6d63612d73776974636800> + | | | | } + | | | | + | | | +-o AppleMCA2Switch + | | | { + | | | "IOClass" = "AppleMCA2Switch" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "numSerDes" = 0xc + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | "ActiveRoutes" = ("AUD4(M) -> PIN2") + | | | "IOPlatformWakeAction" = 0x1388 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("mca-switch,t8122") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "numMCLKs" = 0x4 + | | | "IOFunctionParent0000010F" = <> + | | | "IONameMatched" = "mca-switch,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | "SynthesizedRoutes" = () + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | "numClusters" = 0x4 + | | | "mclkPinMask" = 0xf + | | | } + | | | + | | +-o mca0@93400000 + | | | | { + | | | | "mca-identity" = <2e306c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <04030000> + | | | | "reg" = <000040930000000000400000000000000000309300000000004000000000000000403093000000000040000000000000> + | | | | "AAPL,phandle" = <10010000> + | | | | "IOInterruptSpecifiers" = (<04030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e306c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3400000,"length"=0x4000}),({"address"=0x2a3300000,"length"=0x4000}),({"address"=0x2a3304000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613000> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca0a + | | | | { + | | | | "iisConfig" = <0102000004200100001bb700fa000100300001000f000000ff0000000408181003002010> + | | | | "AAPL,phandle" = <11010000> + | | | | "IOReportLegendPublic" = Yes + | | | | "external-power-provider" = + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "mca-identity" = <6130636d> + | | | | "function-i2s_route" = <0f0100005273326930647561306e697003030200> + | | | | "Name" = "mca0a" + | | | | "name" = <6d6361306100> + | | | | "internal-bclk-loopback" = <> + | | | | "syncGen-config" = <306e797330676b63306e797330676b63> + | | | | "compatible" = <6d63612c743831323200> + | | | | "dma-channels" = <2800000021000000000000000003000080010000000000000000000000000000290000002100000000000000000300008001000000000000000000000000000028000000220000000000000000030000800100000000000000000000000000002900000022000000000000000003000080010000000000000000000000000000> + | | | | "function-i2s_route0" = <0f0100005273326930647561316e697003030200> + | | | | "function-admac_powerswitch" = + | | | | "mclk-config" = <00000000ffffffff> + | | | | "device_type" = <69327300> + | | | | "dma-parent" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca0a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca0a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca0a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca0a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca0a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca0a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "fifo_depth" = 0x3c + | | | | } + | | | | + | | | +-o audio-speaker@201 + | | | | { + | | | | "device_type" = <617564696f2d6461746100> + | | | | "compatible" = <617564696f2d646174612c736e30313237373600> + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Name" = "audio-speaker" + | | | | "reg" = <0102000004000100001bb700fa000100300001000f000000ff0000000408181000002010> + | | | | "AAPL,phandle" = <12010000> + | | | | "name" = <617564696f2d737065616b657200> + | | | | } + | | | | + | | | +-o Speaker + | | | | { + | | | | "io buffer frame size" = 0x3de0 + | | | | "LowPowerActiveChannelMask" = 0x0 + | | | | "bidirectional" = Yes + | | | | "current state" = "off" + | | | | "device UID" = "Speaker" + | | | | "clock domain" = 0x6d61696e + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x10,"channels per frame"=0x4,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x10,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x10,"sample rate"=0xbb8000000000,"channels per frame"=0x4,"bits per channel"=0x18,"format flags"=0x4,"bytes per packet"=0x10,"frames$ + | | | | "outputArrayCal" = {} + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "LowPowerEnableChannelMask" = 0x0 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device name" = "SN012776" + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x4,"MaxOutputChannelCount"=0x4} + | | | | "speakerID" = 0x3 + | | | | "DebuggingInfo" = {"TestcaseRunTimeMS"=0x0,"BeginTestcaseWithRunCount"=0x0,"TestcaseNumber"=0x0,"DelayAfterRequestConfigChangeMS"=0x0,"TestcaseTimeoutMS"=0x0,"DelayBeforeRequestConfigChangeMS"=0x0,"DoNotReturnAfterRequestConfigChange"=0x0,"DelayInPerformConfigChange"=0x0} + | | | | "controls" = ({"control ID"=0x12f,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x6d757465,"value"=0x1,"base class"=0x746f676c,"read only"=0x0},{"control ID"=0x13f,"variant"=0x0,"property selectors"=(0x61747331,0x61747363,0x61747323,0x61747332,0x61747333,0x61747334),"scope"=0x6f757470,"element"=0x1,"class"=0x61747363,"value"=0x0,"base class"=0x6c65766c,"range map"=({"start db value"=0x0,"start int value"=0x0,"db per step"=0x0,"integer steps"=0x0}),"transfer function"=0x0,"read only"=0x1},{"control ID"=0x15f,"va$ + | | | | "is private" = Yes + | | | | "sample rate" = 0xbb8000000000 + | | | | "output safety offset" = 0x49 + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x10,"channels per frame"=0x8,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x10,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x10,"sample rate"=0xbb8000000000,"channels per frame"=0x8,"bits per channel"=0x10,"format flags"=0xc,"bytes per packet"=0x10,"frames $ + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "output latency" = 0x4a + | | | | "is running" = No + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"},{"property selector"=0x4c50456d,"registry key"="LowPowerEnableChannelMask"},{"property selector"=0x4c50416d,"registry key"="LowPowerActiveChannelMask"},{"property selector"=0x53414461,"registry key"="outputArrayCal"},{"property selector"=0x73706964,"registry key"="speakerID"}) + | | | | "input latency" = 0x21 + | | | | "IOReporters" = Yes + | | | | "supports prewarming" = No + | | | | "device manufacturer" = "Apple Inc." + | | | | "input safety offset" = 0x31 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Speaker","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Speaker","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportChannelC$ + | | | | "transport type" = 0x626c746e + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mca1@93404000 + | | | | { + | | | | "mca-identity" = <2e316c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <05030000> + | | | | "reg" = <004040930000000000400000000000000080309300000000004000000000000000c03093000000000040000000000000> + | | | | "AAPL,phandle" = <13010000> + | | | | "IOInterruptSpecifiers" = (<05030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e316c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3404000,"length"=0x4000}),({"address"=0x2a3308000,"length"=0x4000}),({"address"=0x2a330c000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613100> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca1a + | | | | { + | | | | "mclk-config" = <01000000ffffffff> + | | | | "mca-identity" = <6131636d> + | | | | "compatible" = <6d63612c743831323200> + | | | | "Name" = "mca1a" + | | | | "AAPL,phandle" = <14010000> + | | | | "function-i2s_route" = <0f01000052733269322e7874336e697002020200> + | | | | "dma-channels" = <2c0000002100000000000000c0000000600000000000000000000000000000002d0000002100000000000000c0000000600000000000000000000000000000002c0000002200000000000000c0000000600000000000000000000000000000002d0000002200000000000000c000000060000000000000000000000000000000> + | | | | "function-admac_powerswitch" = + | | | | "syncGen-config" = <316e797331676b63316e797331676b63> + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca1a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca1a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca1a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca1a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca1a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca1a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "device_type" = <69327300> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "dma-parent" = + | | | | "external-power-provider" = + | | | | "function-i2s_route0" = <0f01000052733269322e7872322e787401010000> + | | | | "name" = <6d6361316100> + | | | | } + | | | | + | | | +-o audio-loopback@1201 + | | | | { + | | | | "private" = <3100> + | | | | "compatible" = <617564696f2d646174612c617564696f2d6c6f6f706261636b00> + | | | | "reg" = <011200000f100100001bb700fa0001003000010003000000030000000202101000000000> + | | | | "data-sources" = <6332706102020000000001000000000080bb00004c6f6f706261636b00> + | | | | "Name" = "audio-loopback" + | | | | "device_type" = <617564696f2d6461746100> + | | | | "AAPL,phandle" = <15010000> + | | | | "name" = <617564696f2d6c6f6f706261636b00> + | | | | } + | | | | + | | | +-o Loopback + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "transport type" = 0x626c746e + | | | | "IOMatchedAtBoot" = Yes + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703263,"name"="Loopback"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703263,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x32 + | | | | "output latency" = 0x3e + | | | | "device name" = "Loopback" + | | | | "IONameMatched" = "audio-data,audio-loopback" + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x2,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x14,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xb$ + | | | | "IOFunctionParent00000115" = <> + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x2,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x14,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Loopback" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x4a + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = Yes + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,audio-loopback" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x1a + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x3e8 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Loopback","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Loopback","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportChanne$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x2,"MaxOutputChannelCount"=0x2} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mca2@93408000 + | | | | { + | | | | "mca-identity" = <2e326c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <06030000> + | | | | "reg" = <008040930000000000400000000000000000319300000000004000000000000000403193000000000040000000000000> + | | | | "AAPL,phandle" = <16010000> + | | | | "IOInterruptSpecifiers" = (<06030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e326c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3408000,"length"=0x4000}),({"address"=0x2a3310000,"length"=0x4000}),({"address"=0x2a3314000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613200> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca2a + | | | | | { + | | | | | "mclk-config" = <02000000ffffffff> + | | | | | "mca-identity" = <6132636d> + | | | | | "compatible" = <6d63612c743831323200> + | | | | | "function-mclk_frequency" = <86000000664f434e02000000> + | | | | | "AAPL,phandle" = <17010000> + | | | | | "function-i2s_route" = <0f0100005273326934647561326e697002020200> + | | | | | "dma-channels" = <3000000021000000000000000003000080010000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000003000000022000000000000000003000080010000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000> + | | | | | "function-admac_powerswitch" = + | | | | | "Name" = "mca2a" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca2a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca2a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca2a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca2a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca2a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca2a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | | "device_type" = <69327300> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "fifo_depth" = 0x20 + | | | | | "dma-parent" = + | | | | | "external-power-provider" = + | | | | | "iisConfig" = <011300000220010000000000400001003000010003000000000000000200181802002000> + | | | | | "name" = <6d6361326100> + | | | | | } + | | | | | + | | | | +-o audio-codec-output@1301 + | | | | | { + | | | | | "device_type" = <617564696f2d6461746100> + | | | | | "compatible" = <617564696f2d646174612c637334326c383400> + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Name" = "audio-codec-output" + | | | | | "reg" = <011300000220010000000000400001000000000003000000000000000200202000000000> + | | | | | "AAPL,phandle" = <18010000> + | | | | | "name" = <617564696f2d636f6465632d6f757470757400> + | | | | | } + | | | | | + | | | | +-o Codec Output + | | | | | { + | | | | | "io buffer frame size" = 0x3de0 + | | | | | "LowPowerActiveChannelMask" = 0x0 + | | | | | "bidirectional" = No + | | | | | "current state" = "streaming audio" + | | | | | "device UID" = "Codec Output" + | | | | | "clock domain" = 0x6d61696e + | | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xac4400000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xac4400000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xb$ + | | | | | "outputArrayCal" = {} + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "LowPowerEnableChannelMask" = 0x0 + | | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | | "headset info" = {"mic connector reversed"=No,"multiple buttons"=No,"button"=No,"microphone"=No} + | | | | | "device name" = "CS42L84 Output" + | | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x0,"MaxOutputChannelCount"=0x2} + | | | | | "DebuggingInfo" = {"TestcaseRunTimeMS"=0x0,"BeginTestcaseWithRunCount"=0x0,"TestcaseNumber"=0x0,"DelayAfterRequestConfigChangeMS"=0x0,"TestcaseTimeoutMS"=0x0,"DelayBeforeRequestConfigChangeMS"=0x0,"DoNotReturnAfterRequestConfigChange"=0x0,"DelayInPerformConfigChange"=0x0} + | | | | | "is private" = Yes + | | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x6a61636b,"value"=0x1,"base class"=0x746f676c,"read only"=0x1},{"control ID"=0x12d,"variant"=0x0,"scope"=0x696e7074,"element"=0x0,"class"=0x6a61636b,"value"=0x0,"base class"=0x746f676c,"read only"=0x1},{"control ID"=0x130,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x646d7574,"value"=0x0,"base class"=0x746f676c,"property selectors"=(0x646d7574),"read only"=0x0},{"control ID"=0x132,"variant"=0x0,"scope"=0x6f757470,"elemen$ + | | | | | "sample rate" = 0xbb8000000000 + | | | | | "output safety offset" = 0x4a + | | | | | "input streams" = () + | | | | | "is running" = Yes + | | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | | "output latency" = 0x48 + | | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"},{"property selector"=0x4c50456d,"registry key"="LowPowerEnableChannelMask"},{"property selector"=0x4c50416d,"registry key"="LowPowerActiveChannelMask"},{"property selector"=0x53414461,"registry key"="outputArrayCal"}) + | | | | | "input latency" = 0x6 + | | | | | "IOReporters" = Yes + | | | | | "supports prewarming" = No + | | | | | "device manufacturer" = "Apple Inc." + | | | | | "input safety offset" = 0x18 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Output","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Codec Output","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IORepo$ + | | | | | "transport type" = 0x626c746e + | | | | | } + | | | | | + | | | | +-o IOAudio2DeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o mca2b + | | | | { + | | | | "mclk-config" = <02000000ffffffff> + | | | | "mca-identity" = <6232636d> + | | | | "compatible" = <6d63612c743831323200> + | | | | "function-mclk_frequency" = <86000000664f434e02000000> + | | | | "AAPL,phandle" = <19010000> + | | | | "function-i2s_route" = <0f0100005273326935647561326e697001010200> + | | | | "dma-channels" = + | | | | "function-admac_powerswitch" = + | | | | "internal-bclk-loopback" = <> + | | | | "Name" = "mca2b" + | | | | "device_type" = <69327300> + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41425258554e,0x101000001,"mca2b.IRQ.DMA_B.RX_Fifo_Underflow"),(0x444d414254584f56,0x101000001,"mca2b.IRQ.DMA_B.TX_Fifo_Overflow"),(0x545842554e464c4f,0x101000001,"mca2b.IRQ.TXB_Underflow"),(0x5458424652455252,0x101000001,"mca2b.IRQ.TXB_Frame_Error"),(0x5258424f56464c4f,0x101000001,"mca2b.IRQ.RXB_Overflow"),(0x5258424652455252,0x101000001,"mca2b.IRQ.RXB_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "dma-parent" = + | | | | "external-power-provider" = + | | | | "name" = <6d6361326200> + | | | | } + | | | | + | | | +-o audio-codec-input@1301 + | | | | { + | | | | "private" = <3100> + | | | | "compatible" = <617564696f2d646174612c637334326c38342d696e70757400> + | | | | "reg" = <011300000220010000000000400001000000000000000000010000000001202000000000> + | | | | "data-sources" = <6332706101000000000004000000000080bb00000000000044ac000000000000885801000000000000770100636f646563696e70757400> + | | | | "Name" = "audio-codec-input" + | | | | "device_type" = <617564696f2d6461746100> + | | | | "AAPL,phandle" = <1a010000> + | | | | "name" = <617564696f2d636f6465632d696e70757400> + | | | | } + | | | | + | | | +-o Codec Input + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "transport type" = 0x626c746e + | | | | "IOMatchedAtBoot" = Yes + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703263,"name"="codecinput"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703263,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x4c + | | | | "output latency" = 0x0 + | | | | "device name" = "CS42L84 Input" + | | | | "IONameMatched" = "audio-data,cs42l84-input" + | | | | "output streams" = () + | | | | "IOFunctionParent0000011A" = <> + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x1,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x4,"channels per frame"=0x1,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xac4400000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xac$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Codec Input" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x18 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = No + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,cs42l84-input" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x34 + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Input","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Codec Input","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReport$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x1,"MaxOutputChannelCount"=0x0} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o smctempsensor0 + | | | | { + | | | | "name" = <736d6374656d7073656e736f723000> + | | | | "compatible" = <736d632d74656d7073656e736f7200> + | | | | "device_type" = <736d6374656d7073656e736f7200> + | | | | "timerInterval" = + | | | | "sensor" = <6d54504c> + | | | | "AAPL,phandle" = <1b010000> + | | | | } + | | | | + | | | +-o AppleSMCSensorDispatcher + | | | | { + | | | | "IOClass" = "AppleSMCSensorDispatcher" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOUserClientClass" = "AppleSMCSensorDispatcherUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("smc-tempsensor") + | | | | "IOResourceMatch" = "IOKit" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-tempsensor" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "QueueSize" = 0x0 + | | | | } + | | | | + | | | +-o AppleSMCSensorDispatcherUserClient + | | | { + | | | "IOUserClientCreator" = "pid 413, thermalmonitord" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o cpu-debug-interface + | | | | { + | | | | "aft-control-list" = <0000080703000000> + | | | | "AAPL,phandle" = <1c010000> + | | | | "aft-instance-list" = <0000182002000000414d43433000000000000000000000000000182202000000414d43433100000000000000000000000000c65802000000494f4130000000000000000000000000000006500200000041434350300000000000000000000000> + | | | | "enable_trace" = <0000e90000000000280100000000000060000f00000000000000008000000000d8000f00000000000000000202000000ffffffff0000000000000000000000000000e9010000000028010000000000006000f000000000000000008000000000d800f000000000000000000202000000ffffffff000000000000000000000000000005000000000010900000000000000800010000000000050000000000000008000100000000000b00100200000000ffffffff000000000000000000000000000015000000000010900000000000000800020000000000050000000000000008000200000000000b00100200000000ffffffff000000000000000000000000000$ + | | | | "trace_halt" = <0000e500000000004090000000000000b0000f0000000000000000000f000000ffffffff0000000000000000000000000000e501000000004090000000000000b000f00000000000000000000f000000> + | | | | "enable_stop_clocks" = <000028d400000000001000000000000000000000000000800100010000000000ffffffff00000000000000000000000000003cd40000000004060000000000000000000000000080010000000000000080000000000000800100000000000000ffffffff000000000000000000000000000238d400000000540000000000000040000000000000800100000000000000ffffffff000000000000000000000000004038d400000000004000000000000034050500000000800100000000000000ffffffff000000000000000000000000000338d400000000140000000000000004000000000000800100000000000000> + | | | | "device_type" = <6370752d64656275672d696e7465726661636500> + | | | | "aft-params" = + | | | | "cpu_halt" = <> + | | | | "stop_clocks" = <0000020000000000780600000000000000040f00000000800100000000000000ffffffff000000000000000000000000000002010000000078060000000000000004f000000000800100000000000000> + | | | | "name" = <6370752d64656275672d696e7465726661636500> + | | | | "enable_alt_trace" = <0000e90000000000280100000000000060000f00000000000000008000000000d8000f00000000000000000202000000ffffffff0000000000000000000000000000e9010000000028010000000000006000f000000000000000008000000000d800f000000000000000000202000000ffffffff000000000000000000000000000005000000000010900000000000000800010000000000050000000000000008000100000000000b00100200000000ffffffff000000000000000000000000000015000000000010900000000000000800020000000000050000000000000008000200000000000b00100200000000ffffffff00000000000000000000000$ + | | | | } + | | | | + | | | +-o AppleARMLightEmUp + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | "IOProviderClass" = "IOService" + | | | "IOClass" = "AppleARMLightEmUp" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "cpu-debug-interface" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "cpu-debug-interface" + | | | } + | | | + | | +-o aft@10180000 + | | | { + | | | "device_type" = <61667400> + | | | "reg" = <000018100000000000c0000000000000> + | | | "IODeviceMemory" = (({"address"=0x220180000,"length"=0xc000})) + | | | "name" = <61667400> + | | | "AAPL,phandle" = <1d010000> + | | | "compatible" = <6166742c743831323000> + | | | } + | | | + | | +-o timesync + | | | { + | | | "name" = <74696d6573796e6300> + | | | "function-perf_cycle_count" = <82000000544e4350010000000400000008000000> + | | | "frequency-stability-upper" = <10270000> + | | | "local-clock" = <00000000> + | | | "frequency-tolerance-lower" = + | | | "oscillator-type" = <01000000> + | | | "frequency-stability-lower" = + | | | "AAPL,phandle" = <1e010000> + | | | "frequency-tolerance-upper" = <10270000> + | | | } + | | | + | | +-o fillmore + | | | { + | | | "device_type" = <66696c6c6d6f726500> + | | | "arch-type" = <62743100> + | | | "local-mac-address" = <2cbc87000c6a31c3> + | | | "name" = <66696c6c6d6f726500> + | | | "AAPL,phandle" = <1f010000> + | | | "compatible" = <66696c6c6d6f72652c627400> + | | | } + | | | + | | +-o apple-processor-trace + | | { + | | "device_type" = <6170706c652d70726f636573736f722d747261636500> + | | "name" = <6170706c652d70726f636573736f722d747261636500> + | | "AAPL,phandle" = <20010000> + | | "compatible" = <6170706c652d70726f636573736f722d74726163652c743831323200> + | | } + | | + | +-o buttons + | | | { + | | | "DeviceOpenedByEventSystem" = Yes + | | | "compatible" = <627574746f6e7300> + | | | "press-count-double-timeout" = + | | | "HIDServiceGlobalModifiersUsage" = <02000000> + | | | "press-count-tracking" = <01000000> + | | | "AAPL,phandle" = <21010000> + | | | "long-press-timeout" = + | | | "device_type" = <627574746f6e7300> + | | | "button-names" = <686f6c6400> + | | | "panic-usage" = <40000c00> + | | | "platform-type-consumer" = <01000000> + | | | "alternate-long-press" = <01000000> + | | | "function-button_hold" = <9f000000526e7462444c4862> + | | | "press-count-triple-timeout" = + | | | "name" = <627574746f6e7300> + | | | "press-count-usage-pairs" = <30000c0040000c00> + | | | } + | | | + | | +-o AppleM68Buttons + | | | { + | | | "IOMatchedAtBoot" = Yes + | | | "LongPressTimeout" = 0x186a0 + | | | "PrimaryUsagePage" = 0xc + | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | "VersionNumber" = 0x0 + | | | "PressCountTrackingEnabled" = Yes + | | | "VendorID" = 0x0 + | | | "Built-In" = Yes + | | | "PressCountDoublePressTimeout" = 0x493e0 + | | | "DebugState" = {"ButtonInterruptTS(ns)"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"DiagnosticMaskAny"=0x0,"PowerState"=0x2,"ButtonUnfilteredMask"=0x0,"StackshotMaskOn"=No,"CoverDetached"=No,"DarkBootPending"=0x0,"ButtonPriorities"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"DiagnosticMaskTS"=0x0,"DiagnosticMaskOn"=No,"ShutdownDebugMode"=0x0,"ShutdownNVRAMSyncDelay"=0x0,"DiagnosticMaskAll"=0x0,"SydiagnoseMaxHoldDelay"=0x7d0,"ButtonStateMask"=0x0,"ButtonNames"=("hold"),"StackshotMask"=0x1,"SydiagnoseMinHoldDelay"=0xfa,"ButtonDownFil$ + | | | "ButtonUsagePairs" = (0xc00000030) + | | | "IONameMatched" = "buttons" + | | | "PressCountTriplePressTimeout" = 0x927c0 + | | | "ProductID" = 0x0 + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleM68Buttons" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | "ReportInterval" = 0x36b0 + | | | "VendorIDSource" = 0x0 + | | | "IOFunctionParent00000121" = <> + | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"NotificationCenterGesture$ + | | | "CFBundleIdentifier" = "com.apple.driver.AppleM68Buttons" + | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "Priority Button" = "hold" + | | | "IONameMatch" = "buttons" + | | | "LocationID" = 0x0 + | | | "IOClass" = "AppleM68Buttons" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleM68Buttons" + | | | "PrimaryUsage" = 0x1 + | | | "CountryCode" = 0x0 + | | | "Filter Delay" = 0x36b0 + | | | "AlternateLongPressHandling" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "PressCountUsagePairs" = (0xc0030,0xc0040) + | | | "IOProbeScore" = 0x0 + | | | "HIDServiceSupport" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o IOHIDEventServiceUserClient + | | { + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 445, WindowServer" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x1980,"NotificationForce"=0x0,"NotificationCount"=0x66,"head"=0x1980},"EnqueueEventCount"=0x66,"LastEventType"=0x3,"LastEventTime"=0x1a84ed6ab54} + | | } + | | + | +-o port-usb-c-1 + | | { + | | "name" = <706f72742d7573622d632d3100> + | | "compatible" = <646f636b2c7573622d6300> + | | "primary-port-id" = <01000000> + | | "port-number" = <01000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7573622d6300> + | | "port-type" = <02000000> + | | "AAPL,phandle" = <22010000> + | | } + | | + | +-o port-usb-c-2 + | | { + | | "name" = <706f72742d7573622d632d3200> + | | "compatible" = <646f636b2c7573622d6300> + | | "primary-port-id" = <02010000> + | | "port-number" = <02000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7573622d6300> + | | "port-type" = <02000000> + | | "AAPL,phandle" = <23010000> + | | } + | | + | +-o port-t818-1 + | | { + | | "transports-supported" = <> + | | "AAPL,phandle" = <24010000> + | | "primary-port-id" = <05010000> + | | "port-number" = <01000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7438313800> + | | "name" = <706f72742d743831382d3100> + | | "port-type" = <11000000> + | | } + | | + | +-o backlight + | | | { + | | | "mA2Nits2ndOrderCoef" = + | | | "milliAmps2DACTablePart2" = <8f059d05ab05b805c505d105dd05e805f305fe05080612061c0625062e0637064006480650065806600668066f0677067e0685068c0693069906a006a606ac06b206b806be06c406ca06cf06d506da06df06e506ea06ef06f406f906fe06020707070c071007150719071e07220726072a072f07330737073b073f07430747074a074e075207560759075d076007640768076b076e077207750778077c077f078207850789078c078f079207950798079b079e07a107a407a707aa07ac07af07b207b507b807ba07bd07c007c207c507c807ca07cd07cf07d207d407d707d907dc07de07e107e307e507e807ea07ec07ef07f107f307f607f807fa07fc07$ + | | | "min-restriction-disableth" = <2c010000> + | | | "nits2mAmps1stOrderCoef" = <94470d00> + | | | "pre-strobe-dim-period" = <64000000> + | | | "truetone-shift-a" = <0080fbff> + | | | "LmaxProduct" = <00000d02> + | | | "LmidProduct" = <00008c00> + | | | "truetone-shift-b" = <9a190200> + | | | "blr-cct-warning" = + | | | "calibratedMidCurrent" = <30330300> + | | | "max-restriction-disableth2" = + | | | "nits2mAmps2ndOrderCoef" = + | | | "min-restriction-enableth" = <58020000> + | | | "backlight-calibration" = <0002cf00cf364dce8b02000000000000> + | | | "calibratedMaxCurrent" = + | | | "use-trinity" = <01000000> + | | | "LminProduct" = <00000200> + | | | "nits2mAmps0thOrderCoef" = + | | | "max-restriction-disableth" = <20030000> + | | | "mA2Nits0thOrderCoef" = + | | | "AAPL,phandle" = <25010000> + | | | "milliAmps2DACPart1MaxCurrent" = <00a00200> + | | | "backlight-marketing-table" = <0000000000000200a58503002d8d05008364080099590c004eee110083a4190011322400a8e83200e28147004405640000008c000080c2009a990e01cccc780100000d02> + | | | "milliAmps2DACPart2MaxCurrent" = <00801100> + | | | "milliAmps2DACTablePart1" = <000000000000000038008100bd00f0001c01430165018501a101bc01d401eb010002140227023802490259026902770285029302a002ac02b802c402cf02d902e402ee02f80201030b0314031c0325032d0335033d0345034d0354035b0362036903700377037d0384038a03900396039c03a203a703ad03b303b803bd03c303c803cd03d203d703dc03e103e503ea03ef03f303f803fc030004050409040d041104150419041d042104250429042d043104340438043c043f04430446044a044d045104540457045b045e046104640468046b046e047104740477047a047d0480048304860489048b048e0491049404970499049c049f04a104a404a704$ + | | | "name" = <6261636b6c6967687400> + | | | "backlight-update-policy" = <01000000> + | | | "iDAC2MilliAmpsTable" = <85000000880000008b0000008f0000009200000096000000990000009d000000a1000000a5000000a9000000ad000000b2000000b6000000bb000000bf000000c4000000c9000000ce000000d3000000d8000000dd000000e3000000e8000000ee000000f4000000fa00000000010000060100000d010000130100001a010000210100002801000030010000370100003f010000470100004f010000570100005f01000068010000710100007a010000830100008d01000097010000a1010000ab010000b5010000c0010000cb010000d7010000e2010000ee010000fa0100000702000014020000210200002e0200003c0200004a0200005802000067020000$ + | | | "max-restriction-factor" = <41030000> + | | | "device_type" = <6261636b6c6967687400> + | | | "use-AAB-architecture" = <01000000> + | | | "min-restriction-factor" = + | | | "max-restriction-enableth" = <2c010000> + | | | "max-restriction-factor-aaboff" = <41030000> + | | | "use-cabal" = <01000000> + | | | "sync-backlight-off" = <01000000> + | | | "sync-wake-ramp" = <01000000> + | | | "min-restriction-factor-aaboff" = + | | | "default-whitepoint-type" = <01000000> + | | | "dcp-brightness-node" = <01000000> + | | | "energy-saving" = <01000000> + | | | "mA2Nits1stOrderCoef" = <40130000> + | | | } + | | | + | | +-o AppleARMBacklight + | | { + | | "IOClass" = "AppleARMBacklight" + | | "backlight-control" = Yes + | | "display-backlight-compensation" = <000000018df9bf970000e39b000100000000fdfe77f6616a0000e561000100000000fe3abc937fea0000eb36000100000000feea83d617630000f1ec000100000000fff26206df020000f7210000ffb6000100003ea5d6c70000fbc80000ffc400010000ffcdfeb2000100000001000000010000> + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOReportLegendPublic" = Yes + | | "IOProviderClass" = "IOPlatformDevice" + | | "backlight-marketing-table" = <0000000000000200a58503002d8d05008364080099590c004eee110083a4190011322400a8e83200e28147004405640000008c000080c2009a990e01cccc780100000d02> + | | "IOFunctionParent00000125" = <> + | | "IOProbeScore" = 0x0 + | | "IONameMatch" = "backlight" + | | "CurrentNits" = 0x0 + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IONameMatched" = "backlight" + | | "new-backlight-architecture" = Yes + | | "IODisplayParameters" = {"BrightnessMilliNits"={"min"=0x2030,"value"=0x293c2,"uncalMilliNits"=0x8d63,"max"=0x2117da},"brightness"={"min"=0x0,"max"=0x10000,"value"=0x8000},"rawBrightness"={"min"=0x0,"max"=0x7ff,"value"=0x5ee},"BrightnessMicroAmps"={"min"=0xbb,"max"=0xce4c,"value"=0xdb2}} + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "IOReportLegend" = ({"IOReportGroupName"="backlight report","IOReportChannels"=((0x6d69652066616374,0x100020001,"MIE factor"),(0x6470622066616374,0x100020001,"DPB factor")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="playback backlight factors report"},{"IOReportGroupName"="backlight report","IOReportChannels"=((0x6d6963726f616d70,0x100040001,"MicroAmps value"),(0x6d696c6c696e6974,0x100040001,"MilliNits value"),(0x756d696c6c69206e,0x100040001,"UncalMilliNits value"),(0x6272696768742076,0x100040001,"U$ + | | "backlight-calibration-parameters" = {"lMinPanel"=0x83d7d,"current-for-mid-backlight"=0xe07ef,"lMidProduct"=0x8c0000,"hardware-max-current-limit"=0x118000,"lMaxPanel"=0x878cb74,"current-for-max-backlight"=0x34d020,"lMaxProduct"=0x20d0000,"milliAmps2NitsScaleFactor"=0x28b0000,"lMidPanel"=0x29097b1,"lMinProduct"=0x20000} + | | } + | | + | +-o sacm + | | | { + | | | "compatible" = <7361636d2c3100> + | | | "name" = <7361636d00> + | | | "AAPL,phandle" = <26010000> + | | | } + | | | + | | +-o AppleARMSlowAdaptiveClockingManager + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMSlowAdaptiveClockingManager" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "sacm" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "sacm" + | | "IOFunctionParent00000126" = <> + | | } + | | + | +-o defaults + | | | { + | | | "kern.io_throttle_period_tier3" = <14000000> + | | | "AAPL,phandle" = <27010000> + | | | "uat-enforce-gpu-carveout" = <00000000> + | | | "pmap-io-filters" = <444d50430000080050434d412404040050434d411c07040050434d410010040050434d41001c040050434d41081c0400> + | | | "no-effaceable-storage" = <> + | | | "nvme-iboot-sptm-security" = <> + | | | "l2-ecc-correctable-panic" = <01000000> + | | | "content-protect" = <> + | | | "ean-storage-present" = <> + | | | "pmap-max-asids" = <00400000> + | | | "kern.thread_group_extra_bytes" = <40000000> + | | | "cpx-encryption-mode" = <02000000> + | | | "name" = <64656661756c747300> + | | | "trm-profile" = <02000000> + | | | "kern.io_throttle_window_tier3" = <64000000> + | | | "data-journaling" = <> + | | | "aes-service-publish-timeout" = <78000000> + | | | "dual-spi-nand" = <01000000> + | | | "serial-device" = + | | | "usb-storage-workaround" = <01000000> + | | | "kern.perf_tg_no_dipi" = <01000000> + | | | "uat-vaddr-size" = <2b000000> + | | | "trm-enabled" = <01000000> + | | | "entangle-nonce" = <> + | | | "pmap-io-ranges" = <000000000800000000000000020000002700008065494350000000000a00000000000080000000002700008065494350000000000c00000000000000020000002700008065494350000000000e00000000000080000000002700008065494350000000a00500000000000020000000002700008065494350000000c005000000000000400000000027000080654943500000ac9c0200000000400000000000000740000054524144004000a10200000000400000000000000740000054524144008000a10200000000400000000000000740000046504144008009e4020000000040000000000000074000005452414400c009e402000000004000000000000007400$ + | | | "kern.vm_compressor" = <04000000> + | | | "panic-reset-type" = <02000000> + | | | } + | | | + | | +-o AppleImage4 + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.security.AppleImage4" + | | | "IOMatchCategory" = "AppleImage4" + | | | "IOClass" = "AppleImage4" + | | | "IOPersonalityPublisher" = "com.apple.security.AppleImage4" + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "CFBundleIdentifierKernel" = "com.apple.security.AppleImage4" + | | | "IONameMatch" = "defaults" + | | | "IOUserClientClass" = "AppleImage4UserClient" + | | | "IONameMatched" = "defaults" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o AppleMobileApNonce + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileApNonce" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleMobileApNonce" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileApNonce" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileApNonce" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "defaults" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "defaults" + | | "IOUserClientClass" = "AppleMobileApNonceUserClient" + | | } + | | + | +-o product + | | { + | | "sandman-support" = <01000000> + | | "display-mirroring" = <01000000> + | | "upgradeable-memory" = <00000000> + | | "wifi-chipset" = <3433383800> + | | "lockdown-certtype" = <01000000> + | | "bluetooth-lea2" = <01000000> + | | "product-name" = <4d6163426f6f6b20416972202831332d696e63682c204d332c20323032342900> + | | "RF-exposure-separation-distance" = <05000000> + | | "mobiledevice-min-ver" = <3137373400> + | | "product-id" = + | | "raw-panel-serial-number" = <465031353033333035454b3235595441592b35413244345930343431413248462b50524f442b423435313334353231343532352b33353530333231363530333232313530333233413530333233302b5931313234313131325931313534313131362b363836314232343337474a35333730304d343946543434393741353137323039392b5334304a363841485a585334304a363841485a585334304a363841485a585334304a36384148> + | | "product-description" = <4d6163426f6f6b20416972202831332d696e63682c204d332c20323032342900> + | | "product-soc-name" = <4170706c65204d3300> + | | "partially-occluded-display" = <01000000> + | | "allow-32bit-apps" = <01000000> + | | "coverglass-serial-number" = <465031353033333035454b323559544159> + | | "builtin-mics" = <03000000> + | | "exclaves-enabled" = <00000000> + | | "display-backlight-compensation" = <00000003029000000000e39b000100000000fdfe0ccd00000000e561000100000000fe3a333300000000eb36000100000000feea666600000000f1ec000100000000fff2999900000000f7210000ffb600010000cccc00000000fbc80000ffc400010000ffff0000000100000001000000010000> + | | "has-boot-chime" = <01000000> + | | "compatible-device-fallback" = <4d6163426f6f6b41697231302c3100> + | | "external-hdr" = <> + | | "device-perf-memory-class" = <10000000> + | | "dual-iboot-support" = <01000000> + | | "artwork-scale-factor" = <02000000> + | | "has-exclaves" = <00000000> + | | "public-key-accelerator" = <01000000> + | | "tcon-path" = <61726d2d696f2f737069342f647038353500> + | | "name" = <70726f6475637400> + | | "artwork-device-idiom" = <6d616300> + | | "has-virtualization" = <01000000> + | | "AAPL,phandle" = <28010000> + | | "graphics-featureset-class" = <4150504c453900> + | | "compatible-app-variant" = <4d616346616d696c7932302c3100> + | | "artwork-dynamic-displaymode" = <3000> + | | "bluetooth-le" = <01000000> + | | "has-applelpm" = <00000000> + | | "framebuffer-identifier" = <3000> + | | "allow-hactivation" = <00000000> + | | "ephemeral-data-mode" = <00000000> + | | "chrome-identifier" = <3000> + | | "app-macho-architecture" = <61726d363400> + | | "atomic-firmware-update-support" = <01000000> + | | "ptp-large-files" = <01000000> + | | "udid-version" = <02000000> + | | "graphics-featureset-fallbacks" = <4150504c45383a4150504c45373a4150504c45363a4150504c45353a4150504c45343a4150504c45333a4150504c453376313a4150504c45323a4150504c45313a474c4553322c3000> + | | "ambient-light-sensor-serial-num" = <3037303130413346413345453145364200> + | | "artwork-display-gamut" = <503300> + | | "partition-style" = <6d61634f5300> + | | "single-stage-boot" = <01000000> + | | "builtin-battery" = <01000000> + | | "artwork-device-subtype" = <81060000> + | | "primary-calibration-matrix" = <01000000f2f0fa0042960600cc78feff737400003709fd00558202009b4effff33850000322c0001> + | | "usb-c-smc-pwr" = <> + | | } + | | + | +-o iboot-syscfg + | | { + | | "name" = <69626f6f742d73797363666700> + | | "AAPL,phandle" = <2b010000> + | | } + | | + | +-o filesystems-props + | | { + | | "name" = <66696c6573797374656d732d70726f707300> + | | "isc_size" = <0000401f> + | | "AAPL,phandle" = <2d010000> + | | } + | | + | +-o PassthruInterruptController + | | { + | | "IOPlatformInterruptController" = Yes + | | } + | | + | +-o ApplePCIEMSIController-apcie + | | { + | | "MSIFree" = 0x20 + | | "Vector Count" = 0x20 + | | "InterruptControllerName" = "ApplePCIEMSIController-apcie" + | | } + | | + | +-o APCIECMSIController-apciec0 + | | { + | | "MSIFree" = 0x200 + | | "Vector Count" = 0x200 + | | "InterruptControllerName" = "APCIECMSIController-apciec0" + | | } + | | + | +-o APCIECMSIController-apciec1 + | | { + | | "MSIFree" = 0x200 + | | "Vector Count" = 0x200 + | | "InterruptControllerName" = "APCIECMSIController-apciec1" + | | } + | | + | +-o ApplePCIECLegacyIntController-apciec0 + | | { + | | "InterruptControllerName" = "ApplePCIECLegacyIntController-apciec0" + | | } + | | + | +-o ApplePCIECLegacyIntController-apciec1 + | { + | "InterruptControllerName" = "ApplePCIECLegacyIntController-apciec1" + | } + | + +-o IOResources + | | { + | | "KeyboardBacklight" = Yes + | | "IOPMU" = "AppleDialogSPMIPMU is not serializable" + | | "CoreAnalyticsMessenger" = "IOService" + | | "CCDataStream" = "IOService" + | | "OSKextReceiptQueried" = Yes + | | "IOBSD" = "IOService" + | | "IOResourceMatched" = ("IOKit","IOPlatformUUID","CCPipe","AKSFileSystemKeyServices","AKSKernelServices","AKSFileVaultServices","IOResourceMatched","IOAllCPUInitialized","SEP","sepBootedOnce","IOTimeSyncTime","AppleSMCEmbeddedResource","IOTimeSyncDaemonService","IONVRAM","IOPMU","IORTC","com.apple.AppleFSCompression.Type1","IOBSD","com.apple.AppleFSCompression.Type5","com.apple.AppleFSCompression.Type3","com.apple.AppleFSCompression.Type4","com.apple.AppleFSCompression.Type7","com.apple.AppleFSCompression.Type8","com.apple.AppleFSComp$ + | | "AppleSMCEmbeddedResource" = "AppleSMCKeysEndpoint is not serializable" + | | "IONVRAM" = "IOService" + | | "com.apple.AppleFSCompression.Type10" = Yes + | | "IOAVBLocalClock" = "IOService" + | | "IOAVBNub" = "IOService" + | | "com.apple.AppleFSCompression.Type1" = Yes + | | "IOTimeSyncTime" = "IOService" + | | "com.apple.AppleFSCompression.Type11" = Yes + | | "IOTimeSyncDaemonService" = "IOService" + | | "IORTC" = "AppleDialogSPMIPMURTC is not serializable" + | | "com.apple.AppleFSCompression.Type3" = Yes + | | "AKSFileSystemKeyServices" = "AppleKeyStore is not serializable" + | | "com.apple.AppleFSCompression.Type12" = Yes + | | "boot-uuid-media" = "AppleAPFSVolume is not serializable" + | | "com.apple.AppleDiskImageController.load" = Yes + | | "com.apple.AppleFSCompression.Type4" = Yes + | | "als-lgp-version" = 0x7 + | | "CCCapture" = "IOService" + | | "CCFaultReporter" = "IOService" + | | "sepBootedOnce" = "IOService" + | | "com.apple.AppleFSCompression.Type5" = Yes + | | "com.apple.AppleFSCompression.Type13" = Yes + | | "IOAllCPUInitialized" = Yes + | | "CCPipe" = "IOService" + | | "AKSFileVaultServices" = "AppleKeyStore is not serializable" + | | "AKSKernelServices" = "AppleKeyStore is not serializable" + | | "SEP" = "IOService" + | | "com.apple.AppleFSCompression.Type7" = Yes + | | "com.apple.AppleFSCompression.Type14" = Yes + | | "CCLogStream" = "IOService" + | | "com.apple.iokit.SCSISubsystemGlobals" = Yes + | | "com.apple.AppleFSCompression.Type8" = Yes + | | "IOKit" = "IOService" + | | "IOPlatformUUID" = "EBBBA7A3-C701-55D7-9490-A651759B5894" + | | "com.apple.AppleFSCompression.Type9" = Yes + | | "IOTimeSyncClockManager" = "IOService" + | | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kSCSecuritySessionID"=0x186ab,"kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionIDKey"=0x101,"kCGSSessionUserNameKey"="test","kCGSSessionGroupIDKey"=0x14,"CGSSessionUniqueSessionUUID"="2378D763-CF6F-469B-90F8-CABA378BE3A9","kCGSessionLongUserNameKey"="main","kCGSSessionAuditIDKey"=0x186ab,"kCGSSessionLoginwindowSafeLogin"=No,"kCGSSessionUserIDKey"=0x1f5}) + | | "IOConsoleUsersSeed" = <49040000> + | | } + | | + | +-o com_apple_driver_FairPlayIOKit + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.FairPlayIOKit" + | | | "IOMatchCategory" = "FairPlayIOKit" + | | | "IOClass" = "com_apple_driver_FairPlayIOKit" + | | | "IOPersonalityPublisher" = "com.apple.driver.FairPlayIOKit" + | | | "IOKitDebug" = 0x0 + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.FairPlayIOKit" + | | | "IOUserClientClass" = "com_apple_driver_FairPlayIOKitUserClient" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1053, fairplayd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | | { + | | | "IOUserClientCreator" = "pid 53795, lskdd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | { + | | "IOUserClientCreator" = "pid 19087, adid" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AUC + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.AUC" + | | "IOProviderClass" = "IOResources" + | | "IOClass" = "AUC" + | | "IOPersonalityPublisher" = "com.apple.AUC" + | | "CFBundleIdentifierKernel" = "com.apple.AUC" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IOUserClientClass" = "AUCUserClient" + | | } + | | + | +-o AppleARMBootPerf + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "AppleARMBootPerf" + | | "IOClass" = "AppleARMBootPerf" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleARMSFRManifest + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "AppleARMSFRManifest" + | | "IOClass" = "AppleARMSFRManifest" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleMesaResources + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | "IOMatchCategory" = "AppleMesaResources" + | | "IOClass" = "AppleMesaResources" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | "IOMatchedAtBoot" = Yes + | | } + | | + | +-o AppleCredentialManager + | | | { + | | | "IOClass" = "AppleCredentialManager" + | | | "HIDRM_PolicyEnabled" = No + | | | "TRM_RelaxedPeriod" = Yes + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleCredentialManager" + | | | "IOMatchedAtBoot" = Yes + | | | "ACMTRMStore_AnalyticsSave" = <010000001b000000471b1e680000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a84f1e68000000001e2a0000080000000000000000000000430a000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOProviderClass" = "IOResources" + | | | "TRM_CacheMissCount" = 0x0 + | | | "TRM_PolicyTimeout" = 0x93a80 + | | | "IOProbeScore" = 0x0 + | | | "IOUserClientClass" = "AppleCredentialManagerUserClient" + | | | "TRM_PolicyReason" = 0x1 + | | | "TRM_CacheMissThreshold" = 0x5 + | | | "TRM_GracePeriodReason" = 0x2 + | | | "TRM_ConfigProfile" = 0x2 + | | | "TRM_CacheMiss" = No + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleCredentialManager" + | | | "IOMatchCategory" = "AppleCredentialManager" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleCredentialManager" + | | | "TRM_GracePeriodTimeout" = 0x3f480 + | | | "TRM_EffectiveConfigProfile" = 0x2 + | | | "TRM_RelaxedPeriodTimeout" = 0x3f480 + | | | "TRM_DeviceLocked" = No + | | | "TRM_Recovery" = No + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "ACMTRMStore_AnalyticsLoad" = <010000001b000000471b1e680000000000000000050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8461e6800000000312600000700000000000000000000008005000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "HIDRM_EnrollmentPending" = Yes + | | | "TRM_BaseSystem" = No + | | | "TRM_UnlockedPeriod" = Yes + | | | "TRM_UnlockedPeriodTimeout" = 0x15180 + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | { + | | "IOUserClientCreator" = "pid 872, coreauthd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleDiskImagesController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDiskImages2" + | | | "IOMatchCategory" = "AppleDiskImageDevice" + | | | "IOClass" = "AppleDiskImagesController" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDiskImages2" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDiskImages2" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "DIDeviceCreatorUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o AppleDiskImageDevice@0 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x0 + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x0 + | | | | "Device Characteristics" = {"Serial Number"="12000001-0000-0000-9AD3-080000000000","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x0 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = No + | | | | "DiskImageURL" = "file:///System/Library/AssetsV2/com_apple_MobileAsset_iOSSimulatorRuntime/6fb1e5fe25ee1c372f7116516e615c556906bd4e.asset/AssetData/090-44150-318.dmg" + | | | | "InstanceID" = "12000001-0000-0000-9AD3-080000000000" + | | | | "image-format-read-only" = No + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1205, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x15dddf8c00,"Errors (Write)"=0x0,"Total Time (Read)"=0xc0c2b6a55a,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x48658,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk4" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x14 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x21f608600 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x4 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "0CA45903-8792-4D81-96A5-03C2789FE01B" + | | | | } + | | | | + | | | +-o Untitled 1@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x4400 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x15 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "C2542757-AC23-44E2-86C9-C86E09CFE0DE" + | | | | "BSD Unit" = 0x4 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk4s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x486da,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x15dea03000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x16 + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "A5FE6C9D-215C-4BBC-8FB0-1DA1916DDC04" + | | | | "BSD Unit" = 0x5 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk5" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x86000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x15de3d6000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x481bb,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object ca$ + | | | | "UUID" = "A5FE6C9D-215C-4BBC-8FB0-1DA1916DDC04" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o iOS 18.4 Simulator Bundle@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x1 + | | | | "Sealed" = "No" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "iOS 18.4 Simulator Bundle" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x17 + | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "1E636626-73D7-484B-835A-A24FBF7D2C5C" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x15de3d6000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x65a,"Calls to VNOP_GETATTRLISTBULK"=0x2b,"Calls to VNOP_CLOSE"=0x2d3,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x1,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x8dda1,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x481bb,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Cal$ + | | | | "BSD Unit" = 0x5 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk5s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@1 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x0 + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x1 + | | | | "Device Characteristics" = {"Serial Number"="5AA5CF43-80E8-5387-A1C2-185EBC8FD440","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x0 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = No + | | | | "DiskImageURL" = "file:///Library/Developer/CoreSimulator/Cryptex/Images/bundle/SimRuntimeBundle-21CF05C3-9B4C-4CBA-BABC-8D9C33F0052A/Restore/090-44334-323.dmg" + | | | | "InstanceID" = "5AA5CF43-80E8-5387-A1C2-185EBC8FD440" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1218, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x98a4e4c00,"Errors (Write)"=0x0,"Total Time (Read)"=0x1944a25592fd,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x10d895,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk6" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x18 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x4d1c08600 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x6 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "D0192999-C7DA-4EF8-8170-A81184138B1A" + | | | | } + | | | | + | | | +-o Untitled 1@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x4400 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x19 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "4D5EB942-18ED-48C7-9B56-0601C0F6E737" + | | | | "BSD Unit" = 0x6 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk6s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x10d99a,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x98aae4000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1a + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "4C8AF76D-682E-493B-B6E1-3554FD1FAB3F" + | | | | "BSD Unit" = 0x7 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk7" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x132000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x91dec8000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0xa0ec8,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object ca$ + | | | | "UUID" = "4C8AF76D-682E-493B-B6E1-3554FD1FAB3F" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o iOS 18.4 Simulator@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x21 + | | | | "Sealed" = "Yes" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "iOS 18.4 Simulator" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1b + | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "DD50EC5C-3A04-49B5-88ED-F50BB6C03943" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x91dec8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x3ce7192c,"Calls to VNOP_GETATTRLISTBULK"=0xd18,"Calls to VNOP_CLOSE"=0x44fab8,"Calls to VNOP_MNOMAP"=0x16cb7,"Calls to VNOP_INACTIVE"=0x145e85,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0xacb627,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0xa0ec8,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed $ + | | | | "BSD Unit" = 0x7 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk7s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@2 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x1f5 + | | | | "bs-apple-quarantine-info" = <712f303038333b36383063633065303b5361666172693b31373743353735392d444336382d343843392d383945442d37323431334631353541453700> + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "quarantine" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x2 + | | | | "Device Characteristics" = {"Serial Number"="D7ECA3FF-A0C0-59B4-A532-AE465A6B126C","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x14 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = Yes + | | | | "DiskImageURL" = "file:///Users/main/Downloads/Endoparasitic_2_v1_0_4_MacOS-U2B.iso" + | | | | "InstanceID" = "D7ECA3FF-A0C0-59B4-A532-AE465A6B126C" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 3005, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x331aec00,"Errors (Write)"=0x0,"Total Time (Read)"=0x57eb29557,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x809e,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk8" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x1c + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x13200000 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x8 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "FC720CE5-7197-4BC1-ACA6-D7D789C4C6EF" + | | | | } + | | | | + | | | +-o disk image@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x5000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1d + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "5801D318-7D51-4CE7-B916-F64493CFAA6D" + | | | | "BSD Unit" = 0x8 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk8s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x8092,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x331a5000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1e + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "4E0CA371-907B-43DF-BFF1-5D7F31104991" + | | | | "BSD Unit" = 0x9 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk9" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x4000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x3312b000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x8054,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache:$ + | | | | "UUID" = "4E0CA371-907B-43DF-BFF1-5D7F31104991" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o Endoparasitic 2@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x1 + | | | | "Sealed" = "No" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "Endoparasitic 2" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1f + | | | | "FormattedBy" = "newfs_apfs (2313.41.1)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "F9F7CE72-0818-4C54-A869-DA53F4F8A363" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x3312b000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x119b,"Calls to VNOP_GETATTRLISTBULK"=0xeb,"Calls to VNOP_CLOSE"=0x497a,"Calls to VNOP_MNOMAP"=0x1d,"Calls to VNOP_INACTIVE"=0x1cc,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x1b7f5,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x8054,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"C$ + | | | | "BSD Unit" = 0x9 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk9s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@3 + | | | { + | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | "Physical Interconnect Location" = "File" + | | | "RootDeviceEntryID" = 0x1000007e0 + | | | "owner-uid" = 0x1f5 + | | | "bs-apple-quarantine-info" = <712f303038333b36383063633066333b5361666172693b34394635334338332d424446312d343734452d384644352d33364130344534304134383200> + | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | "quarantine" = Yes + | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | "IOUnit" = 0x3 + | | | "Device Characteristics" = {"Serial Number"="BFCD03D4-99A0-5CAF-B15C-6DDC62DED0C2","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | "owner-gid" = 0x14 + | | | "IOMaximumBlockCountRead" = 0x1000 + | | | "sparse-backend" = No + | | | "IOMaximumByteCountRead" = 0x200000 + | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | "device-type" = "Generic" + | | | "image-encrypted" = No + | | | "IOMaximumByteCountWrite" = 0x200000 + | | | "autodiskmount" = Yes + | | | "DiskImageURL" = "file:///Users/main/Downloads/Mini_Motorways_v1_16_1_MacOS.iso" + | | | "InstanceID" = "BFCD03D4-99A0-5CAF-B15C-6DDC62DED0C2" + | | | "image-format-read-only" = Yes + | | | } + | | | + | | +-o DIDeviceIOUserClient + | | | { + | | | "IOUserClientCreator" = "pid 3105, diskimagesiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOBlockStorageDriver + | | | { + | | | "IOClass" = "IOBlockStorageDriver" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x1202c00,"Errors (Write)"=0x0,"Total Time (Read)"=0x24df787,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x92,"Retries (Write)"=0x0} + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | } + | | | + | | +-o Apple Disk Image Media + | | | { + | | | "Content" = "GUID_partition_scheme" + | | | "Removable" = Yes + | | | "Whole" = Yes + | | | "Leaf" = No + | | | "BSD Name" = "disk10" + | | | "Ejectable" = Yes + | | | "Preferred Block Size" = 0x200 + | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | "BSD Minor" = 0x20 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Writable" = No + | | | "BSD Major" = 0x1 + | | | "Size" = 0x12900000 + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Open" = Yes + | | | "Content Hint" = "" + | | | "BSD Unit" = 0xa + | | | } + | | | + | | +-o IOMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7530 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "IOMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOGUIDPartitionScheme + | | | { + | | | "IOProbeScore" = 0xfa0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOStorage" + | | | "IOClass" = "IOGUIDPartitionScheme" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "Content Mask" = "GUID_partition_scheme" + | | | "IOMatchedAtBoot" = Yes + | | | "UUID" = "E143967B-EA4C-473D-B94C-8A7AC98A6F30" + | | | } + | | | + | | +-o disk image@1 + | | | { + | | | "Open" = Yes + | | | "Preferred Block Size" = 0x200 + | | | "Base" = 0x5000 + | | | "Writable" = No + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Size" = 0x128f6000 + | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | "BSD Minor" = 0x21 + | | | "Whole" = No + | | | "Removable" = Yes + | | | "UUID" = "AE14D537-4C04-43BC-BF74-4FBE1BF64116" + | | | "BSD Unit" = 0xa + | | | "BSD Major" = 0x1 + | | | "Ejectable" = Yes + | | | "BSD Name" = "disk10s1" + | | | "Partition ID" = 0x1 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "GPT Attributes" = 0x0 + | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | "Leaf" = No + | | | "TierType" = "Main" + | | | } + | | | + | | +-o IOMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7530 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "IOMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleAPFSContainerScheme + | | | { + | | | "IOClass" = "AppleAPFSContainerScheme" + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "IOMedia" + | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | "IOProbeScore" = 0x7d0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOMatchCategory" = "IOStorage" + | | | "Statistics" = {"Operations (Read)"=0x86,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x11f9000} + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "APFSComposited" = No + | | | } + | | | + | | +-o AppleAPFSMedia + | | | { + | | | "Logical Block Size" = 0x1000 + | | | "Open" = Yes + | | | "Preferred Block Size" = 0x1000 + | | | "Writable" = No + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Size" = 0x128f6000 + | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | "BSD Minor" = 0x22 + | | | "Whole" = Yes + | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | "Removable" = Yes + | | | "EncryptionBlockSize" = 0x200 + | | | "UUID" = "0AA49C09-CBE8-4EC3-B154-5D3E5A84E549" + | | | "BSD Unit" = 0xb + | | | "BSD Major" = 0x1 + | | | "Ejectable" = Yes + | | | "BSD Name" = "disk11" + | | | "Physical Block Size" = 0x1000 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | "Leaf" = No + | | | } + | | | + | | +-o AppleAPFSMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleAPFSContainer + | | | { + | | | "IOClass" = "AppleAPFSContainer" + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "IOMedia" + | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | "Logical Block Size" = 0x1000 + | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | "IOProbeScore" = 0x3e8 + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOMatchCategory" = "IOStorage" + | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x4000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x118d000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x47,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache: Nu$ + | | | "UUID" = "0AA49C09-CBE8-4EC3-B154-5D3E5A84E549" + | | | "ContainerBlockSize" = 0x1000 + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "Status" = "Online" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | } + | | | + | | +-o Mini Motorways@1 + | | | { + | | | "Logical Block Size" = 0x1000 + | | | "Open" = Yes + | | | "Preferred Block Size" = 0x1000 + | | | "RoleValue" = 0x0 + | | | "Writable" = No + | | | "IncompatibleFeatures" = 0x1 + | | | "Sealed" = "No" + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "FullName" = "Mini Motorways" + | | | "Size" = 0x128f6000 + | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | "BSD Minor" = 0x23 + | | | "FormattedBy" = "newfs_apfs (2317.81.2)" + | | | "Whole" = No + | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | "Removable" = Yes + | | | "UUID" = "85CA7846-AA18-4FAB-B50D-92856B5A9007" + | | | "CaseSensitive" = No + | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x118d000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0xb8d,"Calls to VNOP_GETATTRLISTBULK"=0x4e,"Calls to VNOP_CLOSE"=0x49e,"Calls to VNOP_MNOMAP"=0x9,"Calls to VNOP_INACTIVE"=0x12d,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x12a,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x47,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to $ + | | | "BSD Unit" = 0xb + | | | "Ejectable" = Yes + | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | "BSD Name" = "disk11s1" + | | | "BSD Major" = 0x1 + | | | "Physical Block Size" = 0x1000 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Status" = "Online" + | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | "Leaf" = Yes + | | | } + | | | + | | +-o AppleAPFSVolumeBSDClient + | | { + | | "IOProbeScore" = 0x7918 + | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | "IOMatchCategory" = "IOMediaBSDClient" + | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | "IOProviderClass" = "AppleAPFSVolume" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleFDEKeyStore + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleFDEKeyStore" + | | "IOMatchCategory" = "AppleFDEKeyStore" + | | "IOClass" = "AppleFDEKeyStore" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleFDEKeyStore" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFDEKeyStore" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleFDEKeyStoreUserClient" + | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleIPAppender + | | { + | | "IOClass" = "AppleIPAppender" + | | "CFBundleIdentifier" = "com.apple.driver.AppleIPAppender" + | | "IOProviderClass" = "IOResources" + | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOUserClientClass" = "AppleIPAppenderUserClient" + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "AppleIPAppender" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleIPAppender" + | | "IOKitDebug" = 0xffff + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleIPAppender" + | | } + | | + | +-o AppleLockdownMode + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleLockdownMode" + | | "IOMatchCategory" = "AppleLockdownMode" + | | "IOClass" = "AppleLockdownMode" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleLockdownMode" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleLockdownMode" + | | "IOMatchedAtBoot" = Yes + | | } + | | + | +-o AppleRSMChannelController + | | { + | | "IOMatchCategory" = "AppleRSMChannelController" + | | "IOUserClientClass" = "AppleRSMChannelControllerClient" + | | "IOProbeScore" = 0x0 + | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x4,"MaxPowerState"=0x2,"PowerOverrideOn"=Yes} + | | } + | | + | +-o AppleKeyStore + | | | { + | | | "IOClass" = "AppleKeyStore" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPKeyStore" + | | | "IOProviderClass" = "IOResources" + | | | "IOPlatformWakeAction" = 0x3e8 + | | | "IOUserClientClass" = "AppleKeyStoreUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleKeyStore" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPKeyStore" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPKeyStore" + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 441, AirPlayXPCHelper" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 414, opendirectoryd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 572, searchpartyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 504, authd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 787, secd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 821, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 823, corespeechd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 959, chronod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 817, rapportd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 981, bluetoothuserd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 986, seserviced" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 958, ctkd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 989, corespotlightd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 940, nearbyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1673, tipsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 47528, iCloudNotificati" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 53795, lskdd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 97641, duetexpertd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 7750, UniversalControl" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 7755, securityd_system" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8198, amsaccountsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 18762, ctkd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19098, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19106, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19108, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19121, appleaccountd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | { + | | "IOUserClientCreator" = "pid 19126, mobileactivation" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleKeyStoreTest + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPKeyStore" + | | "IOMatchCategory" = "AppleKeyStoreTest" + | | "IOClass" = "AppleKeyStoreTest" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPKeyStore" + | | "IOPlatformWakeAction" = 0x3e8 + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPKeyStore" + | | "IOUserClientClass" = "AppleKeyStoreTestUserClient" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleSSE + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSSE" + | | | "IOMatchCategory" = "AppleSSE" + | | | "IOClass" = "AppleSSE" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSSE" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSSE" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "AppleSSEUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o AppleSSEUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleSSEUserClient + | | { + | | "IOUserClientCreator" = "pid 19395, nfcd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleUIOMem + | | { + | | "IOName" = "AppleUIOMem" + | | "CFBundleIdentifier" = "com.apple.driver.AppleUIO" + | | "IOMatchCategory" = "AppleUIOMem" + | | "IOClass" = "AppleUIOMem" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleUIO" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUIO" + | | "IOProbeScore" = 0x0 + | | "IOUserClientClass" = "AppleUIOMemUserClient" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o CoreAnalyticsHub + | | | { + | | | "IOClass" = "CoreAnalyticsHub" + | | | "CFBundleIdentifier" = "com.apple.iokit.CoreAnalyticsFamily" + | | | "IOProviderClass" = "IOResources" + | | | "IOUserClientClass" = "CoreAnalyticsUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "CoreAnalyticsHub" + | | | "IOReportLegendPublic" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOReportLegend" = ({"IOReportGroupName"="Hub Stats","IOReportChannels"=((0x4573692020202020,0x180000001,"API calls"),(0x4573612020202020,0x180000001,"API accepted"),(0x4573642020202020,0x180000001,"API dropped and freed"),(0x4573722020202020,0x180000001,"API per-event rate exceeded"),(0x4573702020202020,0x180000001,"Pending Retained Items"),(0x5364716620202020,0x180000001,"Shared Data Queue full, retry"),(0x45736d2020202020,0x180000001,"Serialized Messages"),(0x4573622020202020,0x180000001,"Serialized Message Bytes"),(0x4573662020$ + | | | "IOPersonalityPublisher" = "com.apple.iokit.CoreAnalyticsFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.CoreAnalyticsFamily" + | | | } + | | | + | | +-o CoreAnalyticsMessenger + | | | { + | | | "IOClass" = "CoreAnalyticsMessenger" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o CoreAnalyticsUserClient + | | { + | | "IOUserClientCreator" = "pid 453, analyticsd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o EndpointSecurityDriver + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.EndpointSecurity" + | | "IOMatchCategory" = "EndpointSecurityDriver" + | | "IOClass" = "EndpointSecurityDriver" + | | "IOPersonalityPublisher" = "com.apple.iokit.EndpointSecurity" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.EndpointSecurity" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "EndpointSecurityDriverClient" + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOBluetoothHCIController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOMatchCategory" = "IOBluetoothHCIController" + | | | "IOClass" = "IOBluetoothHCIController" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "BluetoothTransportConnected" = Yes + | | | "Built-In" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o IOBluetoothACPIMethods + | | | { + | | | } + | | | + | | +-o IOBluetoothHCIUserClient + | | | { + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOBluetoothDevice + | | | { + | | | "ConnectionHandle" = 0x1 + | | | "BluetoothObjectID" = 0x2 + | | | "BD_ADDR" = + | | | "BTTTYName" = "Bluetooth-Incoming-Port" + | | | "MaxACLPacketSize" = 0x0 + | | | "Link Level Encryption" = 0x0 + | | | "IODEXTMatchCount" = 0x1 + | | | "DeviceType" = "Serial" + | | | "BTAddress" = + | | | "ClassOfDevice" = 0x0 + | | | "IsInitiator" = Yes + | | | } + | | | + | | +-o IOUserBluetoothSerialDriver + | | | { + | | | "IOClass" = "IOUserService" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOProviderClass" = "IOBluetoothDevice" + | | | "IOUserServerCDHash" = "888255d3da25900b9f83b20ee0a094a6d05162d0" + | | | "IOPropertyMatch" = {"ClassOfDevice"=0x0,"DeviceType"="Serial"} + | | | "IOUserBluetoothSerialClient" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserBluetoothSerialClient"} + | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","CFBundleIdentifier"="com.apple.IOUserBluetoothSerialDriver","IOProviderClass"="IOBluetoothDevice","IOUserServerCDHash"="888255d3da25900b9f83b20ee0a094a6d05162d0","IOPropertyMatch"={"ClassOfDevice"=0x0,"DeviceType"="Serial"},"IOUserBluetoothSerialClient"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserBluetoothSerialClient"},"PTY"={"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.drive$ + | | | "PTY" = {"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"} + | | | "IOProbeScore" = 0x0 + | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOMatchCategory" = "IOUserBluetoothSerialDriver" + | | | "DeviceAddress" = + | | | "IOUserClasses" = ("IOUserBluetoothSerialDriver","IOService","OSObject") + | | | "IOPersonalityPublisher" = "com.apple.IOUserBluetoothSerialDriver" + | | | "kOSBundleDextUniqueIdentifier" = <1526ca90d643b7c641f429b8e2b92744a631623b75d77a819cc68546b9fc3ac2> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.driverkit.serial" + | | | "ClassOfDevice" = 0x0 + | | | "IOUserClass" = "IOUserBluetoothSerialDriver" + | | | } + | | | + | | +-o IOUserBluetoothSerialClient + | | | { + | | | "IOUserClass" = "IOUserBluetoothSerialClient" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOClass" = "IOUserUserClient" + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOUserClasses" = ("IOUserBluetoothSerialClient","IOUserClient","IOService","OSObject") + | | | } + | | | + | | +-o IOUserPseudoSerial + | | | { + | | | "IOUserClass" = "IOUserPseudoSerial" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "HiddenPort" = Yes + | | | "IOClass" = "IOUserSerial" + | | | "IOUserClasses" = ("IOUserPseudoSerial","IOUserSerial","IOService","OSObject") + | | | "IOTTYBaseName" = "Bluetooth-Incoming-Port" + | | | "PTY" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"} + | | | "IOTTYSuffix" = "" + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.serial" + | | | } + | | | + | | +-o IOSerialBSDClient + | | | { + | | | "IOClass" = "IOSerialBSDClient" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily" + | | | "IOProviderClass" = "IOSerialStreamSync" + | | | "IOTTYBaseName" = "Bluetooth-Incoming-Port" + | | | "IOSerialBSDClientType" = "IOSerialStream" + | | | "IOProbeScore" = 0x3e8 + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOTTYDevice" = "Bluetooth-Incoming-Port" + | | | "IOCalloutDevice" = "/dev/cu.Bluetooth-Incoming-Port" + | | | "IODialinDevice" = "/dev/tty.Bluetooth-Incoming-Port" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSerialFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSerialFamily" + | | | "IOTTYSuffix" = "" + | | | } + | | | + | | +-o IOUserPseudoSerialUserClient + | | { + | | "IOUserClass" = "IOUserPseudoSerialUserClient" + | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | "IOClass" = "IOUserUserClient" + | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | "IOUserClasses" = ("IOUserPseudoSerialUserClient","IOUserClient","IOService","OSObject") + | | } + | | + | +-o IODisplayWrangler + | | { + | | "IOClass" = "IODisplayWrangler" + | | "CFBundleIdentifier" = "com.apple.iokit.IOGraphicsFamily" + | | "IOProviderClass" = "IOResources" + | | "IOGraphicsIgnoreParameters" = {"aupc"=Yes,"auph"=Yes," bpc"=Yes,"aums"=Yes,"aupp"=Yes} + | | "IOGraphicsPrefsParameters" = {"thue"=Yes,"pscn"=Yes,"vbst"=Yes,"oscn"=Yes,"tbri"=Yes,"cyuv"=0x10000000,"tsat"=Yes} + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchCategory" = "IOGraphics" + | | "IOMatchedAtBoot" = Yes + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOGraphicsFamily" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOGraphicsFamily" + | | } + | | + | +-o IOHDIXController + | | { + | | "IOClass" = "IOHDIXController" + | | "CFBundleIdentifier" = "com.apple.driver.DiskImages" + | | "IOProviderClass" = "IOResources" + | | "Product Name" = "Disk Image Driver for MacOS X" + | | "IOUserClientClass" = "IOHDIXControllerUserClient" + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IOHDIXController" + | | "revision" = "671.100.2" + | | "Vendor Name" = "Apple" + | | "Product Revision Level" = "671.100.2" + | | "di-root-image-result" = 0x0 + | | "vendor" = "Apple" + | | "IOPersonalityPublisher" = "com.apple.driver.DiskImages" + | | "di-root-image-devname" = "disk4s1" + | | "CFBundleIdentifierKernel" = "com.apple.driver.DiskImages" + | | "di-root-image-devt" = 0x1000015 + | | "model" = "Disk Image Driver for MacOS X" + | | } + | | + | +-o IOKitRegistryCompatibility + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "IOMatchCategory" = "IOKitRegistryCompatibility" + | | | "IOClass" = "IOKitRegistryCompatibility" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "Entries" = ({"IOName"="display","IOClass"="IOPCIDevice","class-code"=<00000300>,"model"=<556e6b6e6f776e20556e6b6e6f776e00>,"device-id"=<10680000>,"vendor-id"=<02100000>,"revision-id"=<00000000>,"subsystem-id"=<00000000>},{"IOClass"="IOFramebuffer","IOName"="IOFB","ParentIndex"=0x0},{"IOName"="IOAccelerator","CFBundleIdentifier"="com.unknown.bundle","ParentIndex"=0x0,"IOClass"="IOAccelerator","PerformanceStatistics"={"vramFreeBytes"=0xf00000},"IOGLBundleName"="AppleMetalGLRenderer","MetalPluginName"="AGXMetalA12","VRAM,totalMB"=0x4$ + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o display + | | | | { + | | | | "IOCompatibilityProperties" = {"IOName"="display","IOClass"="IOPCIDevice","class-code"=<00000300>,"model"=<556e6b6e6f776e20556e6b6e6f776e00>,"device-id"=<10680000>,"vendor-id"=<02100000>,"revision-id"=<00000000>,"subsystem-id"=<00000000>} + | | | | } + | | | | + | | | +-o IOFB + | | | | { + | | | | "IOCompatibilityProperties" = {"IOClass"="IOFramebuffer","IOName"="IOFB","ParentIndex"=0x0} + | | | | } + | | | | + | | | +-o IOAccelerator + | | | { + | | | "IOCompatibilityProperties" = {"IOName"="IOAccelerator","CFBundleIdentifier"="com.unknown.bundle","ParentIndex"=0x0,"IOClass"="IOAccelerator","PerformanceStatistics"={"vramFreeBytes"=0xf00000},"IOGLBundleName"="AppleMetalGLRenderer","MetalPluginName"="AGXMetalA12","VRAM,totalMB"=0x4000} + | | | } + | | | + | | +-o platform + | | { + | | "IOCompatibilityProperties" = {"IOClass"="IOService","IOName"="platform","IOPath"="IODeviceTree:/efi/platform","system-id"=} + | | } + | | + | +-o IOReportHub + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOReportFamily" + | | | "IOMatchCategory" = "IOReportHub" + | | | "IOClass" = "IOReportHub" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOReportFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOReportFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOReportUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | { + | | "IOUserClientCreator" = "pid 5371, PerfPowerService" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleUSBHostResourcesTypeC + | | | { + | | | "IOClass" = "AppleUSBHostResourcesTypeC" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBHostFamily" + | | | "IOProviderClass" = "IOResources" + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x3e8 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleUSBHostResources" + | | | "UsbSmcBusCurrentPoolID" = 0xfffffffefffffd96 + | | | "UsbBusCurrentPoolID" = 0x100000269 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBHostFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBHostFamily" + | | | } + | | | + | | +-o AppleUSBHostResourcesClient + | | { + | | "IOProbeScore" = 0x1 + | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBHostFamily" + | | "IOProviderClass" = "AppleUSBHostResources" + | | "IOClass" = "AppleUSBHostResourcesClient" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBHostFamily" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBHostFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | } + | | + | +-o AppleUSBUserHCIResources + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOMatchCategory" = "AppleUSBUserHCIResources" + | | "IOClass" = "AppleUSBUserHCIResources" + | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOUSBMassStorageResource + | | { + | | "IOClass" = "IOUSBMassStorageResource" + | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBMassStorageDriver" + | | "IOProviderClass" = "IOResources" + | | "IOUserClientClass" = "IOUSBMassStorageUserClient" + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IOUSBMassStorageResource" + | | "Devices Referenced" = 0x0 + | | "Device Stats" = {} + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBMassStorageDriver" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBMassStorageDriver" + | | } + | | + | +-o IOUserEthernetResource + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOUserEthernet" + | | "IOMatchCategory" = "IOUserEthernetResource" + | | "IOClass" = "IOUserEthernetResource" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUserEthernet" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUserEthernet" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOUserEthernetResourceUserClient" + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOTimeSyncRootService + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOMatchCategory" = "IOTimeSyncRootService" + | | | "IOClass" = "IOTimeSyncRootService" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o IOTimeSyncClockManager + | | | | { + | | | | "IOClass" = "IOTimeSyncClockManager" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOTimeSyncFamily" + | | | | "IOProviderClass" = "IOTimeSyncRootService" + | | | | "TimeSyncTimeCoreAudioClockDomain" = 0x63690000 + | | | | "TranslationClockID" = 0x12c34f16ef270001 + | | | | "IOUserClientClass" = "IOTimeSyncClockManagerUserClient" + | | | | "TimeSyncTimeClockID" = 0x12c34f16ef270000 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "WantsgPTPServices" = Yes + | | | | "IOMatchCategory" = "IOTimeSyncClockManager" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOTimeSyncFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOTimeSyncFamily" + | | | | } + | | | | + | | | +-o IOTimeSyncTranslationMach + | | | | | { + | | | | | "ClockIdentifier" = 0x12c34f16ef270001 + | | | | | "IOUserClientClass" = "IOTimeSyncUserClient" + | | | | | "ClockLockState" = 0x2 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncSyncDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncgPTPManager + | | | | | { + | | | | | "IOClass" = "IOTimeSyncgPTPManager" + | | | | | "CFBundleIdentifier" = "com.apple.plugin.IOgPTPPlugin" + | | | | | "IOProviderClass" = "IOTimeSyncClockManager" + | | | | | "IOPropertyMatch" = {"WantsgPTPServices"=Yes} + | | | | | "TemperatureSensor" = {"J416s"="PMU tdev2","J416c"="PMU tdev2","J493"="PMU tdev7","J316s"="PMU tdev2","J316c"="PMU tdev2","J274"="PMU tdev8","J375c"="PMU tdev2","J457"="PMU tdev8","J473"="PMU tdev8","J293"="PMU tdev7","J413"="PMU tdev5","J414s"="PMU tdev2","J414c"="PMU tdev2","J313"="PMU tdev5","J375d"="PMU tdev2","J314s"="PMU tdev2","J314c"="PMU tdev2","J456"="PMU tdev8"} + | | | | | "IOUserClientClass" = "IOTimeSyncgPTPManagerUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "SystemDomainIdentifier" = 0x12c34f16ef270008 + | | | | | "IOMatchCategory" = "IOTimeSyncgPTPManager" + | | | | | "IOPersonalityPublisher" = "com.apple.plugin.IOgPTPPlugin" + | | | | | "CFBundleIdentifierKernel" = "com.apple.plugin.IOgPTPPlugin" + | | | | | } + | | | | | + | | | | +-o IOTimeSyncDomain + | | | | | | { + | | | | | | "GrandmasterID" = 0x12c34f16ef270008 + | | | | | | "TimeToLock" = 0x0 + | | | | | | "ASPath" = (0x12c34f16ef270008) + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "TimeToChangeGrandmaster" = 0xa + | | | | | | "ClockIdentity" = 0x12c34f16ef270008 + | | | | | | "IOUserClientClass" = "IOTimeSyncDomainUserClient" + | | | | | | "ClockLockState" = 0x2 + | | | | | | "GrandmasterChangesCounter" = 0x1 + | | | | | | "ClockIdentifier" = 0x12c34f16ef270008 + | | | | | | } + | | | | | | + | | | | | +-o IOTimeSyncTimeSyncTimePort + | | | | | | { + | | | | | | "GeneratedSyncCounter" = 0xa17ec + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "PortNumber" = 0x0 + | | | | | | "ReceivedTimeSource" = 0xa0 + | | | | | | "ClockPriority1" = 0xfa + | | | | | | "BatteryPowered" = Yes + | | | | | | "ClockAccuracy" = 0x21 + | | | | | | "LocalFrequencyStabilityLower" = 0xffffffffffffd8f0 + | | | | | | "LocalOscillatorType" = 0x1 + | | | | | | "GrandmasterID" = 0x12c34f16ef270008 + | | | | | | "ClockClass" = 0xf8 + | | | | | | "ExternalPowerConnected" = No + | | | | | | "HasWiFiHardwareTimestamping" = No + | | | | | | "StepsRemoved" = 0x0 + | | | | | | "LocalFrequencyStabilityUpper" = 0x2710 + | | | | | | "OffsetScaledLogVariance" = 0x436a + | | | | | | "ReceivedClockPriority1" = 0xfa + | | | | | | "TimeSource" = 0xa0 + | | | | | | "ReceivedClockClass" = 0xf8 + | | | | | | "ReceivedOffsetScaledLogVariance" = 0x436a + | | | | | | "ReceivedClockPriority2" = 0xf0 + | | | | | | "ReceivedClockAccuracy" = 0x21 + | | | | | | "ReceivedGrandmasterID" = 0x12c34f16ef270008 + | | | | | | "LocalFrequencyToleranceLower" = 0xffffffffffffd8f0 + | | | | | | "ClockIdentifier" = 0x12c34f16ef270008 + | | | | | | "LocalFrequencyToleranceUpper" = 0x2710 + | | | | | | "HasWiredEthernetLinkActive" = Yes + | | | | | | "ReceivedStepsRemoved" = 0x0 + | | | | | | "ClockPriority2" = 0xf0 + | | | | | | "PortRole" = 0x2 + | | | | | | "HasEthernetHardwareTimestamping" = No + | | | | | | } + | | | | | | + | | | | | +-o IOTimeSyncDomainDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncgPTPManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | { + | | | } + | | | + | | +-o IOTimeSyncDaemonService + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOMatchCategory" = "IOTimeSyncDaemonService" + | | | "IOClass" = "IOTimeSyncDaemonService" + | | | "IOPersonalityPublisher" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOProviderClass" = "IOTimeSyncRootService" + | | | "CFBundleIdentifierKernel" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOTimeSyncDaemonUserClient" + | | | "IOTimeSyncDaemonClientEntryIDMatching" = Yes + | | | } + | | | + | | +-o IOTimeSyncDaemonUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 531, audioclocksyncd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | "IOUserClientEntitlements" = "com.apple.private.timesync.clocksync" + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o com_apple_AppleFSCompression_AppleFSCompressionTypeDataless + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless" + | | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless" + | | "IOPersonalityPublisher" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOProviderClass" = "IOResources" + | | "com.apple.AppleFSCompression.providesType5" = Yes + | | "CFBundleIdentifierKernel" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_AppleFSCompression_AppleFSCompressionTypeZlib + | | { + | | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib" + | | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "IOProviderClass" = "IOResources" + | | "com.apple.AppleFSCompression.providesType7" = Yes + | | "IOResourceMatch" = "IOBSD" + | | "com.apple.AppleFSCompression.providesType9" = Yes + | | "IOProbeScore" = 0x0 + | | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType4" = Yes + | | "IOMatchedAtBoot" = Yes + | | "IOPersonalityPublisher" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType10" = Yes + | | "com.apple.AppleFSCompression.providesType8" = Yes + | | "com.apple.AppleFSCompression.providesType11" = Yes + | | "CFBundleIdentifierKernel" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType12" = Yes + | | "com.apple.AppleFSCompression.providesType3" = Yes + | | } + | | + | +-o AppleMobileFileIntegrity + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOMatchCategory" = "AppleMobileFileIntegrity" + | | "IOClass" = "AppleMobileFileIntegrity" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleMobileFileIntegrityUserClient" + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleGCResource + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOCFPlugInTypesOverride" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="AppleSyntheticGameController.kext/Contents/PlugIns/AppleSyntheticGameController.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="AppleSyntheticGameController.kext/Contents/PlugIns/AppleSyntheticGameController.plugin"} + | | | "IOClass" = "AppleGCResource" + | | | "IOMatchCategory" = "AppleGCResource" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOUserClientClass" = "AppleGCResourceDeviceUserClient" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleGCResourceDeviceUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 19058, gamecontrollerd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = "com.apple.private.game-controller.GCResource" + | | "IOUserClientDefaultLockingSetProperties" = No + | | } + | | + | +-o AppleSystemPolicy + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.AppleSystemPolicy" + | | | "IOMatchCategory" = "AppleSystemPolicy" + | | | "IOClass" = "AppleSystemPolicy" + | | | "IOPersonalityPublisher" = "com.apple.AppleSystemPolicy" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.AppleSystemPolicy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "AppleSystemPolicyUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleSystemPolicyUserClient + | | | { + | | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleSystemPolicyUserClient + | | { + | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o com_apple_BootCache + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.BootCache" + | | "IOMatchCategory" = "com_apple_BootCache" + | | "IOClass" = "com_apple_BootCache" + | | "IOPersonalityPublisher" = "com.apple.BootCache" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.BootCache" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o BootPolicy + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.security.BootPolicy" + | | | "IOMatchCategory" = "BootPolicy" + | | | "IOClass" = "BootPolicy" + | | | "IOPersonalityPublisher" = "com.apple.security.BootPolicy" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.security.BootPolicy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "BootPolicyUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 405, kernelmanagerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19097, mobileassetd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 19126, mobileactivation" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o com_apple_filesystems_hfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.hfs.kext" + | | "IOMatchCategory" = "com_apple_filesystems_hfs" + | | "IOClass" = "com_apple_filesystems_hfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.hfs.kext" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.hfs.kext" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_hfs_encodings + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOMatchCategory" = "com_apple_filesystems_hfs_encodings" + | | "IOClass" = "com_apple_filesystems_hfs_encodings" + | | "IOPersonalityPublisher" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o IOHIDResource + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily" + | | | "IOMatchCategory" = "IOHIDResource" + | | | "IOClass" = "IOHIDResource" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOHIDFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOHIDResourceDeviceUserClient" + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOHIDResourceDeviceUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOHIDUserDeviceDebugState" = {"MaxClientTimeoutUS"=0xf4240,"ReportQueue"={"EnqueueTimestamp"=0x1a910a1e1a96,"tail"=0x3c28,"QueueSize"=0x4000,"head"=0x3c28},"SetReportCount"=0x167d,"SetReportCompletedCount"=0x167d} + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDUserDevice + | | | { + | | | "HIDVirtualDevice" = Yes + | | | "Transport" = "USB" + | | | "Built-In" = Yes + | | | "Product" = "Keyboard Backlight" + | | | "KeyboardUniqueID" = 0x5ac0000 + | | | "HIDDefaultBehavior" = Yes + | | | "MaxInputReportSize" = 0x1 + | | | "IOReportLegendPublic" = Yes + | | | "Privileged" = Yes + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xf}) + | | | "ReportDescriptor" = <0600ff0a0f00a101850167e1000001550d0670ff090116640026443975209501b1420902660110550d150027ffff000075209501b142850309031500250175089501b1420904660110550d150027ffff000075209501b142c0> + | | | "MaxOutputReportSize" = 0x1 + | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | "VendorID" = 0x5ac + | | | "PrimaryUsage" = 0xf + | | | "ProductID" = 0x0 + | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0xd,"IsRelative"=No,"UsagePage"=0xff70,"Max"=0x3944,"IsArray"=No,"Type"=0x101,"Size"=0x20,"Min"=0x64,"Flags"=0x42,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x10000e1,"HasNullState"=Yes,"ReportSize"=0x20,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x64,"IsWrapping"=No,"ScaledMax"=0x3944,"ElementCookie"=0x8},{"VariableSize"=0x0,"UnitExponent"=0xd,"IsRelative"=No,"$ + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "PrimaryUsagePage" = 0xff00 + | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x3,0x100020001,"Report 3")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | "ReportInterval" = 0x1f40 + | | | "MaxFeatureReportSize" = 0x9 + | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0xc,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x3,"ElementCookie"=0xd,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | } + | | | + | | +-o IOHIDInterface + | | | { + | | | "MaxOutputReportSize" = 0x1 + | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | "VendorID" = 0x5ac + | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | "Product" = "Keyboard Backlight" + | | | "PrimaryUsage" = 0xf + | | | "ProductID" = 0x0 + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xf}) + | | | "Transport" = "USB" + | | | "ReportInterval" = 0x1f40 + | | | "ReportDescriptor" = <0600ff0a0f00a101850167e1000001550d0670ff090116640026443975209501b1420902660110550d150027ffff000075209501b142850309031500250175089501b1420904660110550d150027ffff000075209501b142c0> + | | | "HIDDefaultBehavior" = Yes + | | | "PrimaryUsagePage" = 0xff00 + | | | "MaxFeatureReportSize" = 0x9 + | | | "Built-In" = Yes + | | | "MaxInputReportSize" = 0x1 + | | | } + | | | + | | +-o IOHIDLibUserClient + | | { + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientMessageAppSuspended" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 440, corebrightnessd" + | | "DebugState" = {"ClientSeized"=No,"ClientOptions"=0x0,"Privileged"=Yes,"SetReportErrCnt"=0x0,"SetReportCnt"=0x0,"GetReportErrCnt"=0x0,"MaxEnqueueReportSize"=0x2000,"ClientOpened"=Yes,"ClientSuspended"=No,"GetReportCnt"=0x0,"EventQueueMap"=()} + | | } + | | + | +-o IOHIDSystem + | | | { + | | | "IOClass" = "IOHIDSystem" + | | | "HIDScrollCountMaxTimeDeltaBetween" = 0x258 + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOHIDFamily" + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "HIDServiceGlobalModifiersUsage" = 0x1 + | | | "IOProviderClass" = "IOResources" + | | | "IOReportLegendPublic" = Yes + | | | "IOProbeScore" = 0x0 + | | | "HIDIdleTime" = 0x11724ad44 + | | | "HIDScrollCountIgnoreMomentumScrolls" = Yes + | | | "HIDScrollCountAccelerationFactor" = 0x28000 + | | | "HIDServiceSupport" = Yes + | | | "HIDScrollCountMouseCanReset" = Yes + | | | "IOCFPlugInTypes" = {"0516B563-B15B-11DA-96EB-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin"} + | | | "VendorID" = 0x5ac + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | "HIDScrollCountMinDeltaToSustain" = 0x14 + | | | "IOMatchCategory" = "IOHID" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily" + | | | "HIDScrollCountBootDefault" = {"HIDScrollCountMinDeltaToStart"=0x1e,"HIDScrollCountAccelerationFactor"=0x28000,"HIDScrollCountMouseCanReset"=Yes,"HIDScrollCountIgnoreMomentumScrolls"=Yes,"HIDScrollCountMinDeltaToSustain"=0x14,"HIDScrollCountMax"=0x7d0,"HIDScrollCountMaxTimeDeltaBetween"=0x258,"HIDScrollCountMaxTimeDeltaToSustain"=0xfa} + | | | "PrimaryUsage" = 0x17 + | | | "CursorState" = {} + | | | "HIDPowerOnDelayNS" = 0x1dcd6500 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "PrimaryUsagePage" = 0xff00 + | | | "HIDScrollCountMinDeltaToStart" = 0x1e + | | | "HIDScrollCountMaxTimeDeltaToSustain" = 0xfa + | | | "IOReportLegend" = ({"IOReportGroupName"="Cursor","IOReportChannels"=((0x437572736f72546f,0xf00180003,"Cursor Total Latency")),"IOReportChannelInfo"={"IOReportChannelConfig"=<6400000000000000000000000a000000204e0000000000000100000005000000>,"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Total"},{"IOReportGroupName"="Cursor","IOReportChannels"=((0x437572736f724772,0xf00180003,"Cursor Graphics Latency")),"IOReportChannelInfo"={"IOReportChannelConfig"=<6400000000000000000000000a000000204e0000000000000100000005000000>$ + | | | "HIDParameters" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"JitterNoMove"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerDrag"=No,"HIDPointerAcceleration"=0xb000,"UserPreferences"=Yes,"HIDDefaultParameters"=Yes,"TrackpadHorizScroll"=0x1,"HIDF12EjectDelay"=0xfa,"TrackpadFourFingerVertSwipeGesture"=0x2,"TrackpadTwoFingerFromRightEdgeSwipeGesture"=0x3,"USBMouseStopsTrackpad"=0x0,"TrackpadThreeFingerTapGesture"=0x$ + | | | "HIDScrollCountMax" = 0x7d0 + | | | } + | | | + | | +-o IOHIDUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDEventSystemUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1341, Siri" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | { + | | "IOUserClientCrossEndianCompatible" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o IOHIDPowerSourceController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.IOHIDPowerSource" + | | | "IOMatchCategory" = "IOHIDPowerSourceController" + | | | "IOClass" = "IOHIDPowerSourceController" + | | | "IOPersonalityPublisher" = "com.apple.driver.IOHIDPowerSource" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IOHIDPowerSource" + | | | "IOMatchedAtBoot" = Yes + | | | "InterfaceMatching" = {"IOPropertyMatch"={"Type"="PowerPack"},"IOProviderClassKey"="IOHIDTranslationService"} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOHIDPowerSource + | | { + | | "DebugState" = {} + | | } + | | + | +-o IONetworkStack + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | "IOMatchCategory" = "IONetworkStack" + | | | "IOClass" = "IONetworkStack" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IONetworkStackUserClient + | | { + | | "IOUserClientCreator" = "pid 386, configd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o IOSurfaceRoot + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSurface" + | | | "IOMatchCategory" = "IOSurfaceRoot" + | | | "IOClass" = "IOSurfaceRoot" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSurface" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSurface" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLocking" = No + | | | "gpu-policies" = {"GPUSelectionPolicy"="avoidRemovable"} + | | | "gpu-policies-info" = {"GPUSelectionPolicy"="bundle"} + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1079, WallpaperMacinto" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1093, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1244, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1345, TextInputMenuAge" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1081, CursorUIViewServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 2809, UserNotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 4947, Fork" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 442, com.apple.cmio.r" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 47427, Activity Monitor" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 53769, com.apple.Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 53784, Music" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 54044, FaceTime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 91058, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 91365, Terminal" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 93188, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 93443, System Settings" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 93445, AppleIDSettings" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 94721, Notes" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 94727, PaperKitExtensio" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 5135, PowerPreferences" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 7062, Yandex" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 7070, Yandex Helper (G" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 7092, Yandex Helper (R" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 8115, iconservicesagen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 14001, Electron" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 14004, Code Helper (GPU" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 14007, Code Helper (Ren" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17471, System Informati" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17475, com.apple.appkit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17528, Tips" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17531, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17537, replayd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17880, Freeform" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 18680, Ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 18682, Ollama Helper (G" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 18685, ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 18687, ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19047, TextInputSwitche" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19144, TextThumbnailExt" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19276, LinkedNotesUISer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | { + | | "IOUserClientDefaultLocking" = No + | | "IOUserClientCreator" = "pid 19379, Python" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o AppleFairplayTextCrypter + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.IOTextEncryptionFamily" + | | "IOMatchCategory" = "AppleFairplayTextCrypter" + | | "IOClass" = "AppleFairplayTextCrypter" + | | "IOPersonalityPublisher" = "com.apple.IOTextEncryptionFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.IOTextEncryptionFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_apfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | "IOMatchCategory" = "com_apple_filesystems_apfs" + | | "IOClass" = "com_apple_filesystems_apfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_lifs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.lifs" + | | "IOMatchCategory" = "com_apple_filesystems_lifs" + | | "IOClass" = "com_apple_filesystems_lifs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.lifs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.lifs" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleLIFSUserClient" + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_nfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.nfs" + | | "IOMatchCategory" = "com_apple_filesystems_nfs" + | | "IOClass" = "com_apple_filesystems_nfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.nfs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.nfs" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleBSDKextStarterTMPFS + | | { + | | "IOName" = "AppleBSDKextStarterTMPFS" + | | "CFBundleIdentifier" = "com.apple.driver.AppleBSDKextStarter" + | | "IOMatchCategory" = "com_apple_driver_AppleBSDKextStarterTMPFS" + | | "IOClass" = "AppleBSDKextStarter" + | | "AppleBSDKextStarterBundleIdentifiers" = "com.apple.filesystems.tmpfs" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBSDKextStarterTMPFS" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBSDKextStarter" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleBSDKextStarterVPN + | | { + | | "IOName" = "AppleBSDKextStarterVPN" + | | "CFBundleIdentifier" = "com.apple.driver.AppleBSDKextStarter" + | | "IOMatchCategory" = "com_apple_driver_AppleBSDKextStarterVPN" + | | "IOClass" = "AppleBSDKextStarter" + | | "AppleBSDKextStarterBundleIdentifiers" = ("com.apple.nke.ppp","com.apple.nke.l2tp","com.apple.nke.pptp") + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBSDKextStarterVPN" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBSDKextStarter" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o IOAVBNub + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchCategory" = "IOAVBNub" + | | "IOClass" = "IOAVBNub" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOAVBFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOAVBNubUserClient" + | | "EntityID" = 0xc484fc0595190000 + | | "IOResourceMatch" = "IOTimeSyncClockManager" + | | } + | | + | +-o IOAVBValidate + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchCategory" = "IOAVBValidate" + | | "IOClass" = "IOAVBValidate" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOAVBFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOAVBValidateUserClient" + | | "IOResourceMatch" = "IOAVBLocalClock" + | | } + | | + | +-o AppleSCSISubsystemGlobals + | { + | "IOProbeScore" = 0x0 + | "CFBundleIdentifier" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOMatchCategory" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOClass" = "AppleSCSISubsystemGlobals" + | "IOPersonalityPublisher" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOProviderClass" = "IOResources" + | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOMatchedAtBoot" = Yes + | "IOResourceMatch" = "com.apple.iokit.SCSISubsystemGlobals" + | "MassStorageEvent" = "0x02-0x0-DiskNotEjectedProperly" + | } + | + +-o IOUserResources + | | { + | | "IOKit" = "IOService" + | | "IOResourceMatched" = ("IOKit","IOResourceMatched") + | | "IODEXTMatchCount" = 0x1 + | | } + | | + | +-o IOUserDockChannelSerial + | { + | "IOClass" = "IOUserService" + | "CFBundleIdentifier" = "com.apple.DriverKit-IOUserDockChannelSerial" + | "IOProviderClass" = "IOUserResources" + | "IOUserServerCDHash" = "cab172822eb224a3a4b2d46bfe5bfe5146445e33" + | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | "IOUserDockChannelSerialMajorVersion" = 0x2 + | "IOMatchedPersonality" = {"IOClass"="IOUserService","CFBundleIdentifier"="com.apple.DriverKit-IOUserDockChannelSerial","IOProviderClass"="IOUserResources","IOUserServerCDHash"="cab172822eb224a3a4b2d46bfe5bfe5146445e33","PTY"={"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"},"IOMatchCategory"="IOUserDockChannelSerial","IOUserServerName"="com.apple.IOUserDockChannelSerial","IOUserDockC$ + | "PTY" = {"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"} + | "IOProbeScore" = 0x0 + | "IOUserDockChannelSerialMinorVersion" = 0x0 + | "IOMatchCategory" = "IOUserDockChannelSerial" + | "IOUserServerName" = "com.apple.IOUserDockChannelSerial" + | "IOUserDockChannelSerialClient" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserDockChannelSerialClient"} + | "IOUserClasses" = ("IOUserDockChannelSerial","IOService","OSObject") + | "kOSBundleDextUniqueIdentifier" = <060b61aebaaf16ec4c954a5df666517ac1840d89e4b91de8e29ad69a8447dfe5> + | "IOPersonalityPublisher" = "com.apple.DriverKit-IOUserDockChannelSerial" + | "CFBundleIdentifierKernel" = "com.apple.driver.driverkit.serial" + | "IOUserClass" = "IOUserDockChannelSerial" + | } + | + +-o IOUserServer(com.apple.IOUserDockChannelSerial-0x100000ceb) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 557, com.apple.Driver" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000ceb) + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.IOUserDockChannelSerial" + | "IOUserServerTag" = 0x100000ceb + | } + | + +-o IOUserServer(com.apple.driverkit.AppleUserHIDDrivers-0x100000cee) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 558, com.apple.AppleU" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000cee,0x1000be1cf,0x1000be1d1,0x1000be1d6,0x1000be1e0) + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | "IOUserServerTag" = 0x100000cee + | } + | + +-o IOUserServer(com.apple.bcmwlan-0x100000bb4) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 556, com.apple.Driver" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000bb4,0x100000cf7,0x100000cf9,0x100000cfa,0x100000cfb,0x100000cfc,0x100000cfd,0x100000cfe,0x100000cff,0x100000d00,0x100000d01,0x100000d02,0x100000d03,0x100000d04,0x100000d06,0x100000d08,0x100000d09,0x100000d0a,0x100000d0b,0x100000d0c,0x100000d0d,0x100000d0e,0x100000d0f,0x100000d12,0x100000d13,0x100000d14,0x100000d21,0x100000d25,0x100000d27,0x100000d29,0x100000d2a,0x100000d2b,0x100000d45,0x100000d46,0x100000d4a,0x100000d4b,0x100000d4c,0x100000d4d,0x100000d4e,0x100000d4f,0x100000d50,0x100000d51,0x100000d$ + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.bcmwlan" + | "IOUserServerTag" = 0x100000bb4 + | } + | + +-o IOUserServer(com.apple.IOUserBluetoothSerialDriver-0x100000e0c) + { + "IOUserClientDefaultLockingSetProperties" = Yes + "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + "IOUserClientEntitlements" = No + "IOUserClientCreator" = "pid 784, IOUserBluetoothS" + "IOUserClientDefaultLocking" = Yes + "IOAssociatedServices" = (0x100000e0c,0x100000e10,0x100000e11,0x100000e13) + "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + "IOUserServerTag" = 0x100000e0c + } + + + + Power Management logs: + + Source: /usr/bin/pmset -g log + Size: 66 KB (66 373 bytes) + Last Modified: 09.05.2025, 22:25 + Recent Contents: ventUserIdleDisplaySleep "com.apple.audio.context3078.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e6d [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3078.preventuseridlesleep" 00:16:44 id:0x0x100008e6c [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3061.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e4b [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3061.preventuseridlesleep" 00:16:44 id:0x0x100008e4a [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3072.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e61 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3072.preventuseridlesleep" 00:16:44 id:0x0x100008e60 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3105.preventuseridledisplaysleep" 00:11:23 id:0x0x500008efe [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3105.preventuseridlesleep" 00:11:23 id:0x0x100008efd [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3075.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e67 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3075.preventuseridlesleep" 00:16:44 id:0x0x100008e66 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3062.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e4d [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3062.preventuseridlesleep" 00:16:44 id:0x0x100008e4c [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3081.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e73 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3081.preventuseridlesleep" 00:16:44 id:0x0x100008e72 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3079.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e6f [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3079.preventuseridlesleep" 00:16:44 id:0x0x100008e6e [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3077.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e6b [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3077.preventuseridlesleep" 00:16:44 id:0x0x100008e6a [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3063.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e4f [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3063.preventuseridlesleep" 00:16:44 id:0x0x100008e4e [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3091.preventuseridledisplaysleep" 00:12:40 id:0x0x500008ecf [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3091.preventuseridlesleep" 00:12:40 id:0x0x100008ece [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3073.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e63 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3073.preventuseridlesleep" 00:16:44 id:0x0x100008e62 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3080.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e71 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3080.preventuseridlesleep" 00:16:44 id:0x0x100008e70 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3098.preventuseridledisplaysleep" 00:11:24 id:0x0x500008ef2 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3098.preventuseridlesleep" 00:11:24 id:0x0x100008ef1 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3074.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e65 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3074.preventuseridlesleep" 00:16:44 id:0x0x100008e64 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3071.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e5f [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3071.preventuseridlesleep" 00:16:44 id:0x0x100008e5e [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3070.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e5d [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3070.preventuseridlesleep" 00:16:44 id:0x0x100008e5c [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3068.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e59 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3068.preventuseridlesleep" 00:16:44 id:0x0x100008e58 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3082.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e75 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3082.preventuseridlesleep" 00:16:44 id:0x0x100008e74 [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3069.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e5b [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3069.preventuseridlesleep" 00:16:44 id:0x0x100008e5a [System: PrevIdle DeclUser SRPrevSleep IPushSrvc kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3084.preventuseridledisplaysleep" 00:16:44 id:0x0x500008e79 [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp] +2025-05-09 21:35:13 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3084.preventuseridlesleep" 00:16:44 id:0x0x100008e78 [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp] +2025-05-09 21:35:18 +0300 Assertions PID 388(powerd) TimedOut InternalPreventSleep "com.apple.powermanagement.darkwakelinger" 00:00:05 id:0x0xd00009032 [System: PrevIdle DeclUser SRPrevSleep kCPU kDisp] +2025-05-09 21:35:18 +0300 Sleep Entering Sleep state due to 'Clamshell Sleep':TCPKeepAlive=active Using Batt (Charge:84%) 921 secs +2025-05-09 21:35:19 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=5570 wakeAt=2025-05-09 23:08:10 info="DHCP lease renewal"] [*process=dasd request=SleepService deltaSecs=918 wakeAt=2025-05-09 21:50:38 info="com.apple.dasd:501:com.apple.intelligenceplatform.IntelligencePlatformCore.ViewEvery21Minutes"] [process=powerd request=TCPKATurnOff deltaSecs=316858 wakeAt=2025-05-13 13:36:18] [process=powerd request=CSPNEvaluation deltaSecs=7253 wakeAt=2025-05-09 23:36:13] [process=powerd request=UserWake deltaSecs=19456 wakeAt=2025-05-10 02:59:36 info="com.apple.alarm.user-invisible-com.apple.osanalytics.hardhighengagementtimer,377"] +2025-05-09 21:35:19 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.bluetooth.sleep is slow(1534 ms)] +2025-05-09 21:50:39 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009049 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:50:39 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-09 21:50:39 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/SleepService Using BATT (Charge:84%) 41 secs +2025-05-09 21:50:39 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-09 21:50:39 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 2837 +2025-05-09 21:50:39 +0300 WakeTime WakeTime: 0.103 sec +2025-05-09 21:50:39 +0300 Kernel Client Acks +2025-05-09 21:50:39 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(126 ms)] +2025-05-09 21:50:39 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009049 [System: PrevIdle DeclUser PushSrvc IPushSrvc kCPU kDisp] +2025-05-09 21:50:40 +0300 Assertions PID 416(apsd) TimedOut ApplePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:15:38 id:0x0xb00009026 [System: PrevIdle DeclUser PushSrvc IPushSrvc kCPU kDisp] +2025-05-09 21:50:40 +0300 Assertions PID 416(apsd) TimedOut ApplePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:15:38 id:0x0xb00009029 [System: PrevIdle DeclUser PushSrvc IPushSrvc kCPU kDisp] +2025-05-09 21:50:40 +0300 Assertions PID 416(apsd) TimedOut ApplePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:15:38 id:0x0xb0000902b [System: PrevIdle DeclUser PushSrvc IPushSrvc kCPU kDisp] +2025-05-09 21:50:40 +0300 Assertions Summary- [System: PrevIdle DeclUser PushSrvc IPushSrvc kCPU kDisp] Using Batt(Charge: 84) +2025-05-09 21:50:41 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-09 21:50:41 +0300 Assertions PID 416(apsd) TimedOut ApplePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:15:39 id:0x0xb0000902d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:50:59 +0300 Assertions PID 416(apsd) Released InteractivePushServiceTask "com.apple.apsd-keepalive-push.apple.com-NonCellular" 00:00:20 id:0x0x120000904c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:10 +0300 Assertions PID 17739(AddressBookSourceSync) Released PreventUserIdleSystemSleep "Address Book Source Sync" 00:00:30 id:0x0x100009050 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:19 +0300 Assertions PID 416(apsd) TimedOut InteractivePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:00:19 id:0x0x120000908c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:19 +0300 Assertions PID 416(apsd) TimedOut InteractivePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:00:19 id:0x0x120000908f [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:19 +0300 Assertions PID 416(apsd) TimedOut InteractivePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:00:19 id:0x0x1200009091 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:20 +0300 Assertions PID 416(apsd) TimedOut InteractivePushServiceTask "com.apple.apsd-waitingformessages-push.apple.com" 00:00:20 id:0x0x1200009093 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:51:20 +0300 Assertions Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 84) +2025-05-09 21:51:20 +0300 Sleep Entering Sleep state due to 'Sleep Service Back to Sleep':TCPKeepAlive=active Using Batt (Charge:84%) 248 secs +2025-05-09 21:51:21 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=6465 wakeAt=2025-05-09 23:39:07 info="DHCP lease renewal"] [*process=dasd request=SleepService deltaSecs=979 wakeAt=2025-05-09 22:07:41 info="com.apple.dasd:0:com.apple.timed.ntp.wanted"] [process=powerd request=TCPKATurnOff deltaSecs=315896 wakeAt=2025-05-13 13:36:18] [process=powerd request=CSPNEvaluation deltaSecs=6291 wakeAt=2025-05-09 23:36:13] [process=powerd request=UserWake deltaSecs=18494 wakeAt=2025-05-10 02:59:36 info="com.apple.alarm.user-invisible-com.apple.osanalytics.hardhighengagementtimer,377"] +2025-05-09 21:51:21 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.bluetooth.sleep is slow(1521 ms)] +2025-05-09 21:55:28 +0300 Assertions PID 445(WindowServer) TurnedOn UserIsActive "com.apple.iohideventsystem.queue.tickle serviceID:100000297 service:AppleM68Buttons product:(null) eventType:3" 00:00:00 id:0x0x900008e3b [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Assertions PID 388(powerd) Created UserIsActive "com.apple.powermanagement.lidopen" 00:00:00 id:0x0x9000090a4 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000090a5 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Notification Display is turned on +2025-05-09 21:55:28 +0300 Assertions PID 445(WindowServer) Created PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x7000090a6 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Assertions PID 445(WindowServer) Released PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x7000090a6 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000090a5 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:55:28 +0300 Wake Wake from Deep Idle [CDNVA] : due to smc.70070000 lid SMC.OutboxNotEmpty/HID Activity Using BATT (Charge:84%) +2025-05-09 21:55:28 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:lid - DriverDetails: +DriverReason:SMC.OutboxNotEmpty - DriverDetails: +2025-05-09 21:55:28 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 2838 +2025-05-09 21:55:28 +0300 WakeTime WakeTime: 0.110 sec +2025-05-09 21:55:28 +0300 Kernel Client Acks +2025-05-09 21:55:28 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(126 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(76 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(76 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(120 ms)] +2025-05-09 21:55:29 +0300 Assertions PID 90201(studentd) Created NetworkClientActive "studentd:90201:CRKNetworkPowerAssertion:0xad49f33a0" 00:00:00 id:0x0x11000090ae [System: PrevIdle DeclUser NetAcc IPushSrvc kCPU kDisp] +2025-05-09 21:55:29 +0300 Assertions PID 445(WindowServer) Created PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x7000090af [System: PrevIdle DeclUser NetAcc IPushSrvc kCPU kDisp] +2025-05-09 21:55:29 +0300 Assertions PID 445(WindowServer) Released PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x7000090af [System: PrevIdle DeclUser NetAcc IPushSrvc kCPU kDisp] +2025-05-09 21:55:31 +0300 Assertions PID 448(loginwindow) Created UserIsActive "Loginwindow User Activity" 00:00:00 id:0x0x9000090ec [System: PrevIdle DeclUser NetAcc IPushSrvc kCPU kDisp] +2025-05-09 21:55:31 +0300 Assertions PID 448(loginwindow) Released UserIsActive "Loginwindow User Activity" 00:00:00 id:0x0x9000090ec [System: PrevIdle DeclUser NetAcc IPushSrvc kCPU kDisp] +2025-05-09 21:55:34 +0300 Assertions PID 90201(studentd) Released NetworkClientActive "studentd:90201:CRKNetworkPowerAssertion:0xad49f33a0" 00:00:05 id:0x0x11000090ae [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:49 +0300 Assertions Summary- [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] Using Batt(Charge: 83) +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2705.preventuseridlesleep" 04:20:03 id:0x0x100009fb5 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2705.preventuseridledisplaysleep" 04:20:03 id:0x0x500009fb6 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context140.preventuseridlesleep" 337:38:29 id:0x0x10000809b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context140.preventuseridledisplaysleep" 337:38:29 id:0x0x50000809c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context104.preventuseridlesleep" 337:38:51 id:0x0x10000801d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context104.preventuseridledisplaysleep" 337:38:51 id:0x0x50000801e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context265.preventuseridlesleep" 320:12:17 id:0x0x100008a9d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context265.preventuseridledisplaysleep" 320:12:17 id:0x0x500008a9e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context99.preventuseridlesleep" 337:38:51 id:0x0x100008013 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context99.preventuseridledisplaysleep" 337:38:51 id:0x0x500008014 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context219.preventuseridlesleep" 337:36:56 id:0x0x1000082bf [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context219.preventuseridledisplaysleep" 337:36:56 id:0x0x5000082c0 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context122.preventuseridlesleep" 337:38:44 id:0x0x100008046 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context122.preventuseridledisplaysleep" 337:38:44 id:0x0x500008047 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context147.preventuseridlesleep" 337:38:29 id:0x0x1000080a9 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context147.preventuseridledisplaysleep" 337:38:29 id:0x0x5000080aa [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context611.preventuseridlesleep" 311:18:52 id:0x0x1000094db [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context611.preventuseridledisplaysleep" 311:18:52 id:0x0x5000094dc [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2766.preventuseridlesleep" 03:25:14 id:0x0x10000a68b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2766.preventuseridledisplaysleep" 03:25:14 id:0x0x50000a68c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context142.preventuseridlesleep" 337:38:29 id:0x0x10000809f [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context142.preventuseridledisplaysleep" 337:38:29 id:0x0x5000080a0 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2745.preventuseridlesleep" 03:58:13 id:0x0x10000a2fb [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2745.preventuseridledisplaysleep" 03:58:13 id:0x0x50000a2fc [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1291.preventuseridlesleep" 151:31:19 id:0x0x100009e27 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1291.preventuseridledisplaysleep" 151:31:19 id:0x0x500009e28 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2759.preventuseridlesleep" 03:25:15 id:0x0x10000a67f [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2759.preventuseridledisplaysleep" 03:25:15 id:0x0x50000a680 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2836.preventuseridlesleep" 02:42:12 id:0x0x1000083a9 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2836.preventuseridledisplaysleep" 02:42:12 id:0x0x5000083aa [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context159.preventuseridlesleep" 337:38:28 id:0x0x100008103 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context159.preventuseridledisplaysleep" 337:38:28 id:0x0x500008104 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context927.preventuseridlesleep" 286:43:08 id:0x0x10000a58a [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context927.preventuseridledisplaysleep" 286:43:08 id:0x0x50000a58b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1284.preventuseridlesleep" 151:31:32 id:0x0x100009e00 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1284.preventuseridledisplaysleep" 151:31:32 id:0x0x500009e01 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2214.preventuseridlesleep" 22:16:43 id:0x0x10000a1cf [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2214.preventuseridledisplaysleep" 22:16:43 id:0x0x50000a1d0 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1397.preventuseridlesleep" 150:36:24 id:0x0x100009fa5 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1397.preventuseridledisplaysleep" 150:36:24 id:0x0x500009fa6 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2752.preventuseridlesleep" 03:25:15 id:0x0x10000a673 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2752.preventuseridledisplaysleep" 03:25:15 id:0x0x50000a674 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context201.preventuseridlesleep" 337:38:05 id:0x0x10000822e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context201.preventuseridledisplaysleep" 337:38:05 id:0x0x50000822f [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context165.preventuseridlesleep" 337:38:18 id:0x0x100008190 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context165.preventuseridledisplaysleep" 337:38:18 id:0x0x500008191 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2206.preventuseridlesleep" 22:17:33 id:0x0x10000a1a3 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2206.preventuseridledisplaysleep" 22:17:33 id:0x0x50000a1a4 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3104.preventuseridlesleep" 00:32:03 id:0x0x100008efb [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3104.preventuseridledisplaysleep" 00:32:03 id:0x0x500008efc [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3097.preventuseridlesleep" 00:32:04 id:0x0x100008eef [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3097.preventuseridledisplaysleep" 00:32:04 id:0x0x500008ef0 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3090.preventuseridlesleep" 00:33:20 id:0x0x100008ecc [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3090.preventuseridledisplaysleep" 00:33:20 id:0x0x500008ecd [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context111.preventuseridlesleep" 337:38:46 id:0x0x10000802d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context111.preventuseridledisplaysleep" 337:38:46 id:0x0x50000802e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridlesleep" 01:46:45 id:0x0x10000a588 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridledisplaysleep" 286:43:08 id:0x0x50000a589 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context264.preventuseridlesleep" 320:12:18 id:0x0x100008a9b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context264.preventuseridledisplaysleep" 320:12:18 id:0x0x500008a9c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context138.preventuseridlesleep" 337:38:30 id:0x0x100008097 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context138.preventuseridledisplaysleep" 337:38:30 id:0x0x500008098 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context98.preventuseridlesleep" 337:38:51 id:0x0x100008011 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context98.preventuseridledisplaysleep" 337:38:51 id:0x0x500008012 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3096.preventuseridlesleep" 00:32:04 id:0x0x100008eed [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3096.preventuseridledisplaysleep" 00:32:04 id:0x0x500008eee [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context610.preventuseridlesleep" 311:18:52 id:0x0x1000094d9 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context610.preventuseridledisplaysleep" 311:18:52 id:0x0x5000094da [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2765.preventuseridlesleep" 03:25:15 id:0x0x10000a689 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2765.preventuseridledisplaysleep" 03:25:15 id:0x0x50000a68a [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2758.preventuseridlesleep" 03:25:15 id:0x0x10000a67d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2758.preventuseridledisplaysleep" 03:25:15 id:0x0x50000a67e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2835.preventuseridlesleep" 02:42:12 id:0x0x1000083a7 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2835.preventuseridledisplaysleep" 02:42:12 id:0x0x5000083a8 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridlesleep" 00:32:21 id:0x0x100008eca [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridledisplaysleep" 00:33:20 id:0x0x500008ecb [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context103.preventuseridlesleep" 337:38:51 id:0x0x10000801b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context103.preventuseridledisplaysleep" 337:38:51 id:0x0x50000801c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context121.preventuseridlesleep" 337:38:45 id:0x0x100008044 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context121.preventuseridledisplaysleep" 337:38:45 id:0x0x500008045 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3103.preventuseridlesleep" 00:32:04 id:0x0x100008ef9 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3103.preventuseridledisplaysleep" 00:32:04 id:0x0x500008efa [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1396.preventuseridlesleep" 150:36:25 id:0x0x100009fa3 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1396.preventuseridledisplaysleep" 150:36:25 id:0x0x500009fa4 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1283.preventuseridlesleep" 151:31:32 id:0x0x100009dfe [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1283.preventuseridledisplaysleep" 151:31:32 id:0x0x500009dff [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2744.preventuseridlesleep" 03:58:13 id:0x0x10000a2f9 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2744.preventuseridledisplaysleep" 03:58:13 id:0x0x50000a2fa [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context1290.preventuseridlesleep" 151:31:20 id:0x0x100009e25 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context1290.preventuseridledisplaysleep" 151:31:20 id:0x0x500009e26 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context141.preventuseridlesleep" 337:38:30 id:0x0x10000809d [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context141.preventuseridledisplaysleep" 337:38:30 id:0x0x50000809e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context158.preventuseridlesleep" 337:38:28 id:0x0x100008101 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context158.preventuseridledisplaysleep" 337:38:28 id:0x0x500008102 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context164.preventuseridlesleep" 337:38:18 id:0x0x10000818e [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context164.preventuseridledisplaysleep" 337:38:18 id:0x0x50000818f [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context146.preventuseridlesleep" 337:38:30 id:0x0x1000080a7 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context146.preventuseridledisplaysleep" 337:38:30 id:0x0x5000080a8 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2213.preventuseridlesleep" 22:16:43 id:0x0x10000a1cd [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2213.preventuseridledisplaysleep" 22:16:43 id:0x0x50000a1ce [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2751.preventuseridlesleep" 03:25:15 id:0x0x10000a671 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2751.preventuseridledisplaysleep" 03:25:15 id:0x0x50000a672 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2205.preventuseridlesleep" 22:17:33 id:0x0x10000a1a1 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2205.preventuseridledisplaysleep" 22:17:33 id:0x0x50000a1a2 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context218.preventuseridlesleep" 337:36:57 id:0x0x1000082bd [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context218.preventuseridledisplaysleep" 337:36:57 id:0x0x5000082be [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridlesleep" 03:30:15 id:0x0x10000915a [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridledisplaysleep" 316:51:07 id:0x0x50000915b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context110.preventuseridlesleep" 337:38:47 id:0x0x10000802b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:55:53 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context110.preventuseridledisplaysleep" 337:38:47 id:0x0x50000802c [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-09 21:56:09 +0300 Assertions Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 83) +2025-05-09 21:56:26 +0300 Assertions PID 445(WindowServer) Created PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x700009199 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:56:27 +0300 Assertions PID 445(WindowServer) Released PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x700009199 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:29 +0300 Assertions PID 388(powerd) TimedOut UserIsActive "com.apple.powermanagement.lidopen" 00:02:00 id:0x0x9000090a4 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) TurnedOff PreventUserIdleSystemSleep "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridlesleep" 00:01:45 id:0x0x10000914c [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) TurnedOff PreventUserIdleSystemSleep "com.apple.audio.BuiltInSpeakerDevice.context.preventuseridlesleep" 00:01:45 id:0x0x100009184 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context2705.preventuseridledisplaysleep" 00:01:49 id:0x0x500009187 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context2705.preventuseridlesleep" 00:01:49 id:0x0x100009186 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridlesleep" 00:01:45 id:0x0x10000914c [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:42 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridledisplaysleep" 00:01:49 id:0x0x50000914d [System: PrevIdle DeclUser kDisp] +2025-05-09 21:57:45 +0300 Assertions PID 496(coreaudiod) TurnedOff PreventUserIdleSystemSleep "com.apple.audio.AudioTap-2EE2A3E9-09CE-49CC-BAE9-EA4862F484FF.context.preventuseridlesleep" 00:01:51 id:0x0x100008aa1 [System: PrevIdle DeclUser kDisp] +2025-05-09 21:59:53 +0300 Assertions PID 875(sharingd) Released PreventUserIdleSystemSleep "Handoff" 00:04:10 id:0x0x1000090f6 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:02:49 +0300 Assertions PID 875(sharingd) Released PreventUserIdleSystemSleep "Handoff" 00:01:24 id:0x0x10000929e [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 496(coreaudiod) Summary PreventUserIdleSystemSleep "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridlesleep" 00:11:55 id:0x0x1000091f9 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 496(coreaudiod) Summary PreventUserIdleSystemSleep "com.apple.audio.BuiltInHeadphoneOutputDevice.context.preventuseridlesleep" 00:11:55 id:0x0x10000922f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep "xpcservice:1093])(501)>{vt hash: 0}[uuid:59EBBAB4-D4F4-4AC3-A38A-44356B049107]:1244449-1093-102527:WebKit Media Playback" 00:13:41 id:0x0x10000918c [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep "app449-1093-102526:WebKit Media Playback" 00:13:41 id:0x0x10000918b [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep 00:13:41 id:0x0x10000918a [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 388(powerd) Summary PreventUserIdleSystemSleep "Powerd - Prevent sleep while display is on" 00:14:10 id:0x0x1000090a7 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:09:38 +0300 Assertions PID 445(WindowServer) Summary UserIsActive "com.apple.iohideventsystem.queue.tickle serviceID:1000be1e0 service:AppleUserHIDEventService product:G102 LIGHTSYNC Gaming Mouse eventType:17" 00:00:09 id:0x0x900008e3b [System: PrevIdle DeclUser kDisp] +2025-05-09 22:13:00 +0300 Assertions PID 875(sharingd) Released PreventUserIdleSystemSleep "Handoff" 00:02:50 id:0x0x1000093a1 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3107.preventuseridledisplaysleep" 00:23:24 id:0x0x500009074 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3107.preventuseridlesleep" 00:23:24 id:0x0x100009073 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3108.preventuseridledisplaysleep" 00:23:24 id:0x0x500009076 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3108.preventuseridlesleep" 00:23:24 id:0x0x100009075 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3109.preventuseridledisplaysleep" 00:23:24 id:0x0x500009078 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3109.preventuseridlesleep" 00:23:24 id:0x0x100009077 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3110.preventuseridledisplaysleep" 00:18:23 id:0x0x50000914f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3110.preventuseridlesleep" 00:18:23 id:0x0x10000914e [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3111.preventuseridledisplaysleep" 00:18:24 id:0x0x500009139 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3111.preventuseridlesleep" 00:18:24 id:0x0x100009138 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3123.preventuseridledisplaysleep" 00:18:48 id:0x0x5000090c1 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3123.preventuseridlesleep" 00:18:48 id:0x0x1000090c0 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3160.preventuseridledisplaysleep" 00:16:34 id:0x0x500009210 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:14:17 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3160.preventuseridlesleep" 00:16:34 id:0x0x10000920f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3205.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092e6 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3205.preventuseridlesleep" 00:17:16 id:0x0x1000092e5 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3206.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092e8 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3206.preventuseridlesleep" 00:17:16 id:0x0x1000092e7 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3207.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092ea [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3207.preventuseridlesleep" 00:17:16 id:0x0x1000092e9 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3208.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092ec [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3208.preventuseridlesleep" 00:17:16 id:0x0x1000092eb [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3209.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092ee [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3209.preventuseridlesleep" 00:17:16 id:0x0x1000092ed [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context3210.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092f0 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context3210.preventuseridlesleep" 00:17:16 id:0x0x1000092ef [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.BuiltInHeadphoneOutputDevice.context.preventuseridledisplaysleep" 00:17:16 id:0x0x5000092f2 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:19:07 +0300 Assertions PID 496(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.BuiltInHeadphoneOutputDevice.context.preventuseridlesleep" 00:17:16 id:0x0x1000092f1 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:20:37 +0300 Assertions PID 10019(storagekitd) ClientDied PreventUserIdleSystemSleep "com.apple.diskmanagementd" 03:06:53 id:0x0x1000083b4 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 875(sharingd) Summary PreventUserIdleSystemSleep "Handoff" 00:02:08 id:0x0x10000954f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 1093(Safari) Summary PreventUserIdleSystemSleep "Safari Downloads In Progress" 00:03:02 id:0x0x100009522 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 496(coreaudiod) Summary PreventUserIdleSystemSleep "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridlesleep" 00:26:55 id:0x0x1000091f9 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 496(coreaudiod) Summary PreventUserIdleSystemSleep "com.apple.audio.BuiltInHeadphoneOutputDevice.context.preventuseridlesleep" 00:26:55 id:0x0x10000922f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep "xpcservice:1093])(501)>{vt hash: 0}[uuid:59EBBAB4-D4F4-4AC3-A38A-44356B049107]:1244449-1093-102527:WebKit Media Playback" 00:28:41 id:0x0x10000918c [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep "app449-1093-102526:WebKit Media Playback" 00:28:41 id:0x0x10000918b [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 449(runningboardd) Summary PreventUserIdleSystemSleep 00:28:41 id:0x0x10000918a [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 388(powerd) Summary PreventUserIdleSystemSleep "Powerd - Prevent sleep while display is on" 00:29:10 id:0x0x1000090a7 [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:38 +0300 Assertions PID 445(WindowServer) Summary UserIsActive "com.apple.iohideventsystem.queue.tickle serviceID:1000be1e0 service:AppleUserHIDEventService product:G102 LIGHTSYNC Gaming Mouse eventType:17" 00:00:00 id:0x0x900008e3b [System: PrevIdle DeclUser kDisp] +2025-05-09 22:24:45 +0300 Assertions PID 875(sharingd) Released PreventUserIdleSystemSleep "Handoff" 00:02:14 id:0x0x10000954f [System: PrevIdle DeclUser kDisp] +2025-05-09 22:25:21 +0300 Assertions Summary- [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] Using Batt(Charge: 69) +2025-05-09 22:25:41 +0300 Assertions Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 69) + +Total Sleep/Wakes since boot:1432 + +2025-05-09 22:25:52 +0300 : Showing all currently held IOKit power assertions +Assertion status system-wide: + BackgroundTask 0 + ApplePushServiceTask 0 + UserIsActive 1 + PreventUserIdleDisplaySleep 0 + PreventSystemSleep 0 + ExternalMedia 0 + PreventUserIdleSystemSleep 1 + NetworkClientActive 0 +Listed by owning process: + pid 1093(Safari): [0x000205d700019522] 00:04:16 PreventUserIdleSystemSleep named: "Safari Downloads In Progress" + pid 388(powerd): [0x0001ffb8000190a7] 00:30:23 PreventUserIdleSystemSleep named: "Powerd - Prevent sleep while display is on" + pid 496(coreaudiod): [0x0002003e000191f9] 00:28:09 PreventUserIdleSystemSleep named: "com.apple.audio.VPAUAggregateAudioDevice-0x715864c40.context.preventuseridlesleep" + Created for PID: 1244. + Resources: audio-in audio-out BuiltInMicrophoneDevice + pid 496(coreaudiod): [0x0002003e0001922f] 00:28:09 PreventUserIdleSystemSleep named: "com.apple.audio.BuiltInHeadphoneOutputDevice.context.preventuseridlesleep" + Created for PID: 1244. + Resources: audio-in audio-out BuiltInHeadphoneOutputDevice + pid 449(runningboardd): [0x0001ffd40001918c] 00:29:55 PreventUserIdleSystemSleep named: "xpcservice:1093])(501)>{vt hash: 0}[uuid:59EBBAB4-D4F4-4AC3-A38A-44356B049107]:1244449-1093-102527:WebKit Media Playback" + Created for PID: 1244. + pid 449(runningboardd): [0x0001ffd40001918b] 00:29:55 PreventUserIdleSystemSleep named: "app449-1093-102526:WebKit Media Playback" + Created for PID: 1093. + pid 449(runningboardd): [0x0001ffd40001918a] 00:29:55 PreventUserIdleSystemSleep named: "xpcservice:1093])(501)>{vt hash: 0}[uuid:5B6E086E-0BF8-48D4-ACF5-67BA0ED0A3F9]:17575449-1093-102525:WebKit Media Playback" + Created for PID: 17575. + pid 445(WindowServer): [0x0001fb9800098e3b] 00:00:06 UserIsActive named: "com.apple.iohideventsystem.queue.tickle serviceID:1000be1e0 service:AppleUserHIDEventService product:G102 LIGHTSYNC Gaming Mouse eventType:17" + Timeout will fire in 114 secs Action=TimeoutActionRelease +Kernel Assertions: 0x4=USB + id=1349 level=255 0x4=USB creat=09.05.2025, 21:58 description=com.apple.usb.externaldevice.00100000 owner=USB2.1 Hub + id=1351 level=255 0x4=USB creat=09.05.2025, 21:58 description=com.apple.usb.externaldevice.00200000 owner=USB3.1 Hub + id=1353 level=255 0x4=USB creat=09.05.2025, 22:01 description=com.apple.usb.externaldevice.00140000 owner=G102 LIGHTSYNC Gaming Mouse + + +Memory: + + Memory: 16 GB + Type: LPDDR5 + Manufacturer: Hynix + +NVMExpress: + + Apple SSD Controller: + + APPLE SSD AP0256Z: + + Capacity: 251 GB (251 000 193 024 bytes) + TRIM Support: Yes + Model: APPLE SSD AP0256Z + Revision: 532.100. + Serial Number: 0ba028e440b0d625 + Detachable Drive: No + BSD Name: disk0 + Partition Map Type: GPT (GUID Partition Table) + Removable Media: No + S.M.A.R.T. status: Verified + Volumes: + iSCPreboot: + Capacity: 524,3 MB (524 288 000 bytes) + BSD Name: disk0s1 + Content: Apple_APFS_ISC + Macintosh HD: + Capacity: 245,11 GB (245 107 195 904 bytes) + BSD Name: disk0s2 + Content: Apple_APFS + Recovery: + Capacity: 5,37 GB (5 368 664 064 bytes) + BSD Name: disk0s3 + Content: Apple_APFS_Recovery + +Network: + + Ethernet Adapter (en3): + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: en3 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Ethernet: + MAC Address: 12:c3:4f:96:68:ab + Media Options: + Media Subtype: none + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 0 + + Ethernet Adapter (en4): + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: en4 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Ethernet: + MAC Address: 12:c3:4f:96:68:ac + Media Options: + Media Subtype: none + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 1 + + Thunderbolt Bridge: + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: bridge0 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 2 + + Wi-Fi: + + Type: AirPort + Hardware: AirPort + BSD Device Name: en0 + IPv4 Addresses: 192.168.1.103 + IPv4: + Additional Routes: + Destination Address: 192.168.1.103 + Subnet Mask: 255.255.255.255 + Destination Address: 169.254.0.0 + Subnet Mask: 255.255.0.0 + Addresses: 192.168.1.103 + ARP Resolved Hardware Address: c0:25:2f:48:ad:fc + ARP Resolved IP Address: 192.168.1.1 + Configuration Method: DHCP + Confirmed Interface Name: en0 + Interface Name: en0 + Network Signature: IPv4.Router=192.168.1.1;IPv4.RouterHardwareAddress=c0:25:2f:48:ad:fc + Router: 192.168.1.1 + Subnet Masks: 255.255.255.0 + IPv6: + Configuration Method: Automatic + DNS: + Server Addresses: 192.168.1.1 + DHCP Server Responses: + Domain Name Servers: 192.168.1.1 + Lease Duration (seconds): 0 + DHCP Message Type: 0x05 + Routers: 192.168.1.1 + Server Identifier: 192.168.1.1 + Subnet Mask: 255.255.255.0 + Ethernet: + MAC Address: c4:84:fc:05:95:19 + Media Options: + Media Subtype: Auto Select + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 3 + + V2BOX: + + Type: VPN (hossin.asaadi.V2Box) + BSD Device Name: utun6 + IPv4 Addresses: 240.0.0.2 + IPv4: + Addresses: 240.0.0.2 + Configuration Method: VPN + Interface Name: utun6 + Router: 240.0.0.2 + ServerAddress: 240.0.0.10 + IPv6: + Addresses: ::1 + Configuration Method: Automatic + Interface Name: utun6 + IsNULL: 1 + Router: ::1 + ServerAddress: 240.0.0.10 + DNS: + ConfirmedServiceID: 3223C4FE-506F-43A9-BB67-4CA88E2F5137 + Interface Name: utun6 + Server Addresses: 240.0.0.1 + Proxies: + FTP Passive Mode: Yes + Service Order: 4 + +Power: + + Battery Information: + + Model Information: + Serial Number: F5D50370E0U10DLDM + Device Name: bq40z651 + Pack Lot Code: 0 + PCB Lot Code: 0 + Firmware Version: 0b00 + Hardware Revision: 100 + Cell Revision: f914 + Charge Information: + The battery’s charge is below the warning level: No + Fully Charged: No + Charging: No + State of Charge (%): 69 + Health Information: + Cycle Count: 24 + Condition: Normal + Maximum Capacity: 100 % + + System Power Settings: + + AC Power: + System Sleep Timer (Minutes): 1 + Disk Sleep Timer (Minutes): 10 + Display Sleep Timer (Minutes): 10 + Sleep on Power Button: Yes + Wake on LAN: Yes + Hibernate Mode: 3 + Low Power Mode: No + Prioritize Network Reachability Over Sleep: No + Battery Power: + System Sleep Timer (Minutes): 1 + Disk Sleep Timer (Minutes): 10 + Display Sleep Timer (Minutes): 2 + Sleep on Power Button: Yes + Wake on LAN: No + Current Power Source: Yes + Hibernate Mode: 3 + Low Power Mode: No + Prioritize Network Reachability Over Sleep: No + Reduce Brightness: Yes + + Hardware Configuration: + + UPS Installed: No + + AC Charger Information: + + Connected: No + Charging: No + + Power Events: + + Next Scheduled Events: + + appPID: 377 + Type: Wake + Scheduled By: com.apple.alarm.user-invisible-com.apple.osanalytics.hardhighengagementtimer + Time: 10.05.2025, 02:59 + UserVisible: 0 + + appPID: 802 + Type: Wake + Scheduled By: com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer + Time: 10.05.2025, 03:26 + UserVisible: 0 + +Printer Software: + + PPDs: + + PPDs: + + Printers: + + Printers: + + Image Capture Devices: + + Image Capture Devices: + + Image Capture Support: + + Image Capture Support: + Path: /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/AirScanLegacyDiscovery.app/Contents/Info.plist + Version: 607 + +Printers: + + Status: The printers list is empty. To add printers, choose Apple menu > System Settings…, click Printers & Scanners, and then click Add Printer, Scanner, or Fax… + CUPS Version: CUPS/2.3.4 (macOS 15.4.1; arm64) IPP/2.0 + +Raw Support: + + Hasselblad H3D-31: + + Hasselblad Lunar: + + Leaf AFi 5: + + Nikon 1 V3: + + Fujifilm X-H2: + + Nikon D800E: + + Canon EOS 90D: + + Sony DSC-HX95: + + Nikon D70: + + Olympus E-400: + + iPhone14,3 front: + + Panasonic LUMIX DC-TZ202: + + Sony Alpha DSLR-A200: + + Sony Alpha ILCE-7M IV: + + Leaf AFi 75S: + + Sony ZV-1M2: + + Panasonic LUMIX DMC-GH3: + + Fujifilm X100S: + + Panasonic LUMIX DC-G99D: + + Canon PowerShot G6: + + iPad13,10 backwide: + + iPhone12,1 backwide: + + Sony DSC-HX99: + + Canon Kiss X10: + + Pentax 645D: + + iPhone11,4 backwide: + + Panasonic LUMIX DC-TZ97: + + Olympus PEN E-PL2: + + iPad 8,7 backcamera: + + Panasonic LUMIX DMC-LX2: + + Canon EOS M2: + + Nikon Z5: + + Nikon D1H: + + Nikon D90: + + Nikon D810A: + + Pentax *ist DL: + + Sony Cyber-shot DSC-RX100 III: + + Sony Alpha DSLR-A290: + + iPhone15,5 back: + + Olympus OM-D E-M5 Mark III: + + Canon EOS 77D: + + Panasonic LUMIX DC-GH6: + + Olympus OM-D E-M1 Mark II: + + Sony Alpha ILCE-5000: + + Canon EOS 5DS R: + + Canon EOS R6: + + Canon EOS M100: + + iPad13,6 backwide: + + Sony Alpha SLT-A77: + + Leica V-Lux 1: + + Olympus E-410: + + Nikon E8400: + + Sony Alpha SLT-A68: + + Canon EOS M200: + + Fujifilm GFX100S: + + Panasonic LUMIX DMC-LX7: + + Canon PowerShot G11: + + Panasonic LUMIX DMC-GF1: + + Leica X Vario (Typ 107): + + Nikon D3100: + + Canon EOS Rebel T6i: + + Nikon D7100: + + Pentax K20D: + + iPad 7,3 backcamera: + + Olympus PEN Lite E-PL10: + + Panasonic LUMIX DMC-TZ70: + + Sony Alpha DSLR-A580: + + Leica V-Lux 5: + + Fujifilm X-E1: + + Panasonic LUMIX DC-G90: + + Nikon COOLPIX P7100: + + Panasonic LUMIX DMC-LX10: + + iPhone15,3 backwide: + + Canon EOS Kiss X7i: + + Leica X-U (Typ 113): + + Canon EOS Kiss 8000D: + + iPad14,2 backwide: + + iPad13,4 backwide: + + Minolta DiMAGE A1: + + Panasonic LUMIX DMC-TZ82: + + Nikon COOLPIX P7800: + + Leica X2: + + Nikon D1: + + Panasonic LUMIX DMC-GF6: + + Olympus PEN E-PL3: + + Sony Alpha ILCE-6600: + + Sony Alpha ILCE-9M2: + + Canon EOS D60: + + Canon EOS Digital Rebel XT: + + Nikon Z 6 2: + + iPad 8,6 backcamera: + + Sony Alpha ILCE-7: + + iPhone10,5 wide: + + Nikon COOLPIX A1000: + + Panasonic LUMIX DC-GX850: + + Sony Cyber-shot DSC-RX100: + + Leaf Valeo 11: + + Canon EOS Digital Rebel: + + Panasonic LUMIX DC-GX9: + + Panasonic LUMIX DC-S1: + + iPhone15,2 backtelephoto: + + Sony DSC-RX10M4: + + Sony Alpha ILCE-7S: + + Olympus OM-D E-M10: + + Sony Alpha NEX-5R: + + Konica Minolta ALPHA-7 DIGITAL: + + Olympus STYLUS 1: + + Sony Alpha NEX-3: + + Canon EOS 6D Mark II: + + Canon PowerShot G5 X: + + Canon PowerShot S90: + + Leica S (Typ 007): + + Konica Minolta MAXXUM 7D: + + Canon EOS 5D Mark IV: + + Panasonic LUMIX DMC-LC1: + + Canon EOS 700D: + + Panasonic LUMIX DMC-LX15: + + Panasonic LUMIX DC-GX800: + + Nikon COOLPIX A: + + Canon EOS 40D: + + Nikon 1 S1: + + Panasonic LUMIX DC-G100: + + Nikon D5300: + + Panasonic LUMIX DMC-GM1: + + iPhone14,3 backwide: + + Olympus E-30: + + Panasonic LUMIX DMC-G6: + + iPhone14,7 back: + + Sony Alpha DSLR-A500: + + Minolta DiMAGE A2: + + Canon EOS M5: + + Canon EOS Kiss X10i: + + Nikon 1 J1: + + Canon EOS Digital Rebel XTi: + + iPhone16,2 front: + + Fujifilm X-T4: + + Olympus E-500: + + Canon EOS 750D: + + Panasonic LUMIX DMC-G10: + + Sony Alpha ILCE-6100: + + Leaf Aptus 75s: + + Canon EOS 3000D: + + iPad8,5 backwide: + + Nikon Z6: + + Canon EOS 760D: + + Canon EOS Rebel T5: + + Pentax 645Z: + + Panasonic LUMIX DMC-TZ100: + + Canon EOS-1D X Mark III: + + iPhone15,5 front: + + Leaf AFi 7: + + iPhone 10,1 back camera: + + Fujifilm XQ2: + + Canon EOS Rebel T7i: + + Pentax K-30: + + iPhone14,2 backultrawide: + + Sony Alpha SLT-A35: + + Sony Alpha NEX-5: + + Canon EOS Kiss Digital X3: + + Canon EOS R10: + + Panasonic LUMIX DMC-CM1: + + iPhone 10,3 backtelephotocamera: + + Pentax K-1: + + iPhone15,4 back ultrawide: + + iPhone14,8 front: + + Leica D-Lux 4: + + Leaf AFi-II 6: + + Canon PowerShot G15: + + Olympus XZ-1: + + iPhone15,3 backtelephoto: + + Nikon COOLPIX P7000: + + Sony Alpha ILCE-7RM4: + + iPad 7,1 backcamera: + + Sony NEX-VG20: + + Canon EOS 400D: + + Panasonic LUMIX DMC-TZ110: + + Pentax MX-1: + + Panasonic LUMIX DC-ZS80: + + Panasonic LUMIX DC-ZS80D: + + Canon EOS Kiss X8i: + + Olympus E-510: + + Nikon E8800: + + PENTAX RICOH GR II: + + iPhone13,3 backtelephoto: + + iPhone13,3 backwide: + + Nikon COOLPIX P7700: + + Nikon D3500: + + iPhone16,1 back: + + Hasselblad H3D-31 II: + + Nikon D7500: + + Pentax K-3 II: + + Sony Alpha NEX-6: + + Konica Minolta DYNAX 7D: + + Canon EOS Rebel SL2: + + Fujifilm X-H1: + + Panasonic LUMIX DMC-FZ35: + + Olympus PEN E-PL5: + + Canon EOS-1D: + + Olympus E-5: + + Canon EOS M50 Mark II: + + Canon PowerShot SX50 HS: + + Panasonic LUMIX DMC-G3: + + iPad 8,4 backcamera: + + Canon EOS Rebel T100: + + Canon EOS Digital Rebel XS: + + Panasonic LUMIX DMC-GX80: + + Canon EOS 450D: + + Leica T (Typ 701): + + Sony Alpha ILCE-7R III A: + + Canon EOS-1D C: + + Olympus C7000Z: + + iPhone15,2 front: + + Olympus OM-D E-M5 Mark II: + + Leica SL2: + + Canon EOS Kiss Digital N: + + Panasonic LUMIX DMC-ZS50: + + Panasonic LUMIX DMC-G80: + + Olympus OM-D E-M1 Mark III: + + Sony Alpha NEX-5T: + + Nikon D3000: + + Nikon D7000: + + Fujifilm X20: + + Pentax K10D: + + Panasonic LUMIX DMC-GF3: + + Canon EOS 1000D: + + Panasonic LUMIX DMC-LX9: + + Sony Alpha NEX-7: + + Olympus E-450: + + iPhone14,5 front: + + Pentax Q: + + Panasonic LUMIX DMC-TZ71: + + Hasselblad X1D-50c: + + Canon PowerShot S100: + + Nikon Z30: + + Canon PowerShot G9 X Mark II: + + Sony Alpha ILCE-7CR: + + Nikon D750: + + Canon EOS 100D: + + iPhone14,3 backultrawide: + + Panasonic LUMIX DMC-G85: + + iPhone 10,2 back camera: + + Canon EOS 1200D: + + iPhone12,3 backwide: + + Sony Alpha DSLR-A380: + + Sony Alpha ILCE-7RM4A: + + iPhone11,6 backwide: + + Panasonic LUMIX DMC-GF8: + + Leica D-LUX (Typ 109): + + Panasonic LUMIX DMC-GX85: + + Leica M: + + Canon EOS-1Ds Mark III: + + Leica M8: + + Nikon D2X: + + Sony ILME-FX30: + + Canon EOS 50D: + + Leica V-Lux 4: + + Panasonic LUMIX DMC-TX1: + + Leica X (Typ 113): + + iPhone 6s Plus backcamera: + + iPad 8,3 backcamera: + + Nikon Z50: + + Sony Cyber-shot DSC-RX10: + + Sony Alpha ILCE-6400: + + Canon EOS Rebel T6: + + Canon EOS Rebel T8i: + + Olympus OM-1: + + Nikon Z7: + + Olympus PEN-F: + + Samsung NX11: + + iPhone13,4 backtelephoto: + + Panasonic LUMIX DC-TX2D: + + LEICA M MONOCHROM (Typ 246): + + Nikon Zf: + + Nikon B700: + + Olympus E-600: + + Fujifilm X-E4: + + Nikon Z fc: + + Nikon D3S: + + Panasonic LUMIX DMC-LX100: + + Sony Cyber-shot DSC-RX10 III: + + Sony Alpha DSLR-A450: + + Sony Alpha DSLR-A230: + + Canon PowerShot G12: + + Sony Alpha ILCE-7S II: + + Nikon 1 J3: + + Panasonic LUMIX DC-ZS70: + + Canon EOS M10: + + Canon EOS-1Ds Mark II: + + iPhone14,2 front: + + Nikon D850: + + DxO ONE: + + Nikon D5200: + + Sony DSC-RX0M2: + + Canon EOS-1D Mark III: + + Panasonic LUMIX DMC-FZ50: + + Sony Cyber-shot DSC-RX10 II: + + Canon PowerShot G3 X: + + Fujifilm X-A3: + + Panasonic LUMIX DMC-GX7: + + Canon PowerShot S100V: + + Canon EOS Kiss Digital: + + Panasonic LUMIX DC-TZ96D: + + Canon EOS-1Ds: + + Fujifilm FinePix S3Pro: + + Sony Alpha ZV-E10: + + Fujifilm X30: + + Panasonic LUMIX DC-G9: + + Canon EOS 5D: + + Sony Cyber-shot DSC-RX1R II: + + Panasonic LUMIX DC-G91: + + iPhone10,6 backwide: + + Panasonic LUMIX DC-TZ91: + + Sony Alpha ILCE-9 III: + + Panasonic LUMIX DC-FZ81: + + Fujifilm X-A7: + + Canon EOS Kiss Digital X: + + LEICA M11 MONOCHROM: + + Sony Alpha DSLR-A300: + + Nikon D3: + + iPhone14,4 backultrawide: + + Panasonic LUMIX DMC-G70: + + iPad 8,2 backcamera: + + Hasselblad H3DII-50: + + Pentax K-3: + + Canon PowerShot S110: + + Leaf AFi 54S: + + Canon EOS-1D Mark II: + + Canon PowerShot SX60 HS: + + Nikon 1 V2: + + Canon EOS Rebel T1i: + + Canon EOS M3: + + Pentax K-S1: + + Panasonic LUMIX DMC-GH2: + + Olympus OM-D E-M10 Mark II: + + Fujifilm X-T3: + + Sony Cyber-shot DSC-RX1: + + Panasonic LUMIX DC-TZ96: + + Leica M11-P: + + Sony Alpha DSLR-A390: + + Panasonic LUMIX DMC-LX1: + + iPhone 9,4 backtelephotocamera: + + Leica S2: + + Canon EOS R50: + + Nikon COOLPIX P950: + + Leaf Aptus 65: + + Canon EOS R7: + + Pentax K200D: + + Sony Alpha ILCE-5100: + + Olympus OM-D E-M10 Mark IV: + + Olympus PEN Lite E-PL9: + + Nikon E8700: + + iPad13,9 backwide: + + iPhone15,2 backwide: + + iPhone14,5 backwide: + + Nikon D40: + + Nikon D3400: + + Pentax K-x: + + Olympus E-620: + + Canon PowerShot G9: + + Hasselblad CF-39: + + Sony Cyber-shot DSC-RX100 VII: + + Leica D-Lux 3: + + Olympus PEN E-PL8: + + Panasonic LUMIX DMC-G7: + + Phase One IQ3 100: + + Nikon D40X: + + Sony Alpha ILCE-7R III: + + Leica TL2: + + Leica M9: + + Nikon COOLPIX P6000: + + Fujifilm XF10: + + iPhone9,2 tele: + + iPad 8,1 backcamera: + + Canon EOS Rebel T7: + + Canon EOS Digital Rebel XSi: + + Pentax *ist DL2: + + Nikon D100: + + Panasonic LUMIX DC-GF90: + + Nikon Z8: + + Nikon D60: + + Leica D-Lux 7: + + Canon EOS 6D: + + Panasonic LUMIX DMC-TZ60: + + Sony Alpha ILCE-6700: + + Leaf Aptus 75: + + Canon EOS 200D Mark II: + + Sony Alpha SLT-A55: + + iPhone SE backcamera: + + Leica M10: + + Hasselblad CFV-16: + + Sony Alpha ILCE-7S III: + + Olympus E-1: + + Canon EOS 60D: + + Panasonic LUMIX DMC-GF5: + + Sony Alpha SLT-A37: + + Panasonic LUMIX DMC-FZ300: + + Sony Alpha SLT-A77 II: + + iPhone14,5 backultrawide: + + Konica Minolta ALPHA SWEET DIGITAL: + + iPhone14,7 back ultra-wide: + + Konica Minolta DYNAX 5D: + + iPhone14,8 back: + + Canon EOS 600D: + + Canon PowerShot G1 X Mark II: + + Canon PowerShot G16: + + LEICA Q2 MONO: + + Fujifilm X-E2S: + + Sony DSC-RX0: + + Panasonic LUMIX DC-GF10: + + iPhone14,2 backwide: + + Nikon D80: + + Panasonic LUMIX DC-FZ10002: + + Canon PowerShot SX1 IS: + + Fujifilm X-M1: + + Canon PowerShot S120: + + Olympus PEN Lite E-PL6: + + iPhone16,1 front: + + Panasonic LUMIX DC-S5M2: + + Fujifilm X100T: + + Canon EOS Rebel SL3: + + Fujifilm X-H2S: + + Nikon D5600: + + Canon EOS 5D Mark III: + + iPhone 10,3 backcamera: + + Canon EOS 650D: + + Panasonic LUMIX DMC-GX7MK2: + + Panasonic LUMIX DC-G95D: + + iPad13,7 backwide: + + iPhone16,1 back telephoto: + + Canon EOS Rebel T2i: + + Nikon D4: + + Nikon D200: + + Nikon 1 J5: + + Panasonic LUMIX DMC-FZ200: + + Sony ZV-1: + + iPhone15, back ultra wide: + + iPhone15,4 front: + + Sony Alpha NEX-3N: + + Panasonic LUMIX DMC-FZ70: + + Olympus PEN E-PL1s: + + Sony Cyber-shot DSC-RX1R: + + Panasonic LUMIX DMC-FZ1000: + + Nikon D2H: + + Canon EOS 7D Mark II: + + iPad13,11 backwide: + + Sony Alpha ILCE-3000: + + Canon PowerShot SX70 HS: + + Olympus STYLUS SH-2: + + Hasselblad X2D 100C: + + Nikon D5100: + + Canon EOS Kiss Digital F: + + Nikon COOLPIX P330: + + Canon EOS Kiss X50: + + Samsung GX-10: + + iPhone14,7 front: + + iPad13,5 backwide: + + Fujifilm X-T200: + + Canon EOS M50: + + Canon PowerShot S95: + + Canon PowerShot G7 X Mark II: + + Canon EOS 300D: + + Hasselblad H3D-39: + + Sony DSC-V3: + + iPhone16,2 back: + + Panasonic LUMIX DC-TZ200: + + Canon PowerShot G7 X Mark III: + + Canon EOS 7D: + + Panasonic LUMIX DMC-GM5: + + Adobe DNG: + + Canon PowerShot G3: + + Fujifilm X-100F: + + Fujifilm X-E3: + + Olympus OM-D E-M10 MarkIII: + + iPhone13,2 backwide: + + Pentax K-5: + + iPhone12,5 backwide: + + Panasonic LUMIX DMC-FZ100: + + iPhone14,2 backtelephoto: + + Leaf AFi 6: + + Olympus OM-D E-M1: + + Panasonic LUMIX DC-TZ93: + + Olympus PEN E-PM1: + + Panasonic LUMIX DC-G95: + + Panasonic LUMIX DMC-FZ330: + + Canon PowerShot G1 X: + + Pentax K-S2: + + Panasonic LUMIX DC-FZ83: + + Panasonic LUMIX DC-S5M2X: + + Sony Alpha ZV-E1: + + Pentax *ist DS: + + iPad14,1 backwide: + + Nikon D300: + + Sony Alpha ILCE-7R IV: + + Canon EOS M6 Mark II: + + Canon EOS 350D: + + Fujifilm X-A2: + + Panasonic LUMIX DMC-TZ101: + + Konica Minolta ALPHA-5 DIGITAL: + + iPhone 9,4 backcamera: + + Samsung GX-20: + + Panasonic LUMIX DMC-GH4: + + Sony Alpha SLT-A99: + + Sony Alpha SLT-A65: + + Sony Alpha DSLR-A100: + + Nikon Z9: + + Sony Alpha ILCE-7R II: + + Canon EOS 4000D: + + Panasonic LUMIX DMC-LX3: + + Leica TL: + + Canon EOS 10D: + + Panasonic LUMIX DMC-G1: + + iPhone14,4 front: + + Leaf Valeo 17: + + Canon EOS 5D Mark II: + + Fujifilm GFX 50R: + + Pentax K-5 II: + + Nikon D3300: + + Samsung NX100: + + Sony Alpha ILCE-7 II: + + Panasonic LUMIX DMC-FZ2500: + + Panasonic LUMIX DC-TZ220D: + + Canon EOS 70D: + + Fujifilm X-T2: + + Leaf Aptus 17: + + PENTAX RICOH GR: + + Sony Alpha ILCE-1: + + Panasonic LUMIX DMC-TZ80: + + iPhone 10,2 back telephoto camera: + + Leica M Monochrom: + + Sony Alpha ILCE-7M3: + + Sony Alpha ILCE-7R V: + + Panasonic LUMIX DMC-GF2: + + Olympus PEN E-PM2: + + Canon EOS Rebel T3i: + + Canon PowerShot G9 X: + + Canon EOS R5: + + Panasonic LUMIX DMC-ZS40: + + Leica Q (Typ 116): + + Nikon D610: + + Fujifilm GFX 50S: + + Kodak DCS Pro SLR/n: + + Fujifilm X-A10: + + Nikon D5: + + Panasonic LUMIX DMC-L1: + + Fujifilm X-Pro1: + + Leica M8.2: + + Nikon COOLPIX P1000: + + Konica Minolta DiMAGE A200: + + Panasonic LUMIX DMC-TZ61: + + iPhone14,3 backtelephoto: + + Nikon D2Hs: + + Pentax K100D: + + iPhone15,4 back: + + Panasonic LUMIX DC-GH5S: + + Leica DIGILUX 2: + + Pentax K-70: + + Sony DSC-R1: + + Sony Alpha DSLR-A900: + + Fujifilm FinePix S2Pro: + + iPhone 9,1 backcamera: + + Panasonic LUMIX DMC-GF7: + + Leica D-Lux 2: + + iPhone12,3 backtelephoto: + + Nikon COOLPIX P340: + + Nikon 1 AW1: + + Pentax K100D Super: + + Samsung GX-1L: + + Fujifilm X-Pro2: + + Panasonic LUMIX DC-S1H: + + Sony Alpha ILCE-6500: + + Hasselblad H4D-40: + + Nikon D70s: + + Leica DIGILUX 3: + + Fujifilm FinePix S5Pro: + + iPhone10,5 telephoto: + + Leica D-Lux 6: + + Panasonic LUMIX DC-S5: + + Sony Alpha 7S II: + + Canon EOS 2000D: + + Panasonic LUMIX DMC-TZ85: + + iPhone16,1 back ultra wide: + + Fujifilm X-Pro3: + + iPhone9,2 wide: + + iPhone15,2 backultrawide: + + Nikon D500: + + Sony Alpha DSLR-A550: + + Fujifilm X-T30: + + Panasonic LUMIX DMC-GX1: + + Sony Alpha DSLR-A330: + + iPhone14,8 back ultra-wide: + + Nikon D5500: + + iPhone11,2 backwide: + + Canon PowerShot S60: + + Panasonic LUMIX DC-GH5: + + Nikon 1 S2: + + Panasonic LUMIX DC-S1R: + + Canon EOS 5DS: + + iPhone11,4 back telephoto: + + Panasonic LUMIX DMC-LF1: + + Panasonic LUMIX DC-FZ1000M2: + + Leica Q2: + + Canon Kiss X9i: + + Nikon 1 J2: + + Panasonic LUMIX DC-TZ200D: + + iPhone10,4 wide: + + Hasselblad H6D-100C: + + Fujifilm X-S20: + + Panasonic LUMIX DMC-G8: + + Panasonic LUMIX DC-TZ220: + + Olympus E-P7: + + Panasonic LUMIX DMC-FZ150: + + Olympus C70Z: + + Canon EOS Kiss X4: + + Fujifilm X-T20: + + Canon EOS R5C: + + Panasonic LUMIX DMC-ZS200: + + Sony Alpha SLT-A57: + + Canon PowerShot G10: + + Nikon D5000: + + Canon EOS-M100: + + Leica V-LUX (Typ 114): + + Panasonic LUMIX DC-TZ90: + + iPhone11,2 back telephoto: + + Panasonic LUMIX DC-GX7MK3: + + Panasonic LUMIX DC-FZ80: + + Pentax K-7: + + Sony Cyber-shot DSC-RX100 VA: + + Canon EOS 800D: + + Panasonic LUMIX DC-TZ95D: + + Canon EOS Kiss Digital X2: + + Fujifilm GFX100 II: + + Leica M11: + + Fujifilm X70: + + iPhone11,6 back telephoto: + + Canon EOS R: + + iPad Pro (9.7-inch) backcamera: + + Canon EOS 1100D: + + Sony Cyber-shot DSC-RX100 V: + + Sony Alpha ILCE-6000: + + Nikon D600: + + Sony Alpha ILCE-7RM5: + + Nikon D1X: + + Olympus STYLUS XZ-2: + + Olympus C8080WZ: + + iPhone14,4 backwide: + + Canon EOS Rebel T4i: + + Panasonic LUMIX DMC-GH1: + + Fujifilm X-S10: + + Hasselblad CF-22: + + Canon EOS R8: + + Nikon D810: + + Canon EOS 20D: + + Panasonic LUMIX DC-TZ95: + + Leica V-Lux 2: + + Fujifilm X-T10: + + Panasonic LUMIX DC-G99: + + Nikon 1 V1: + + iPhone 6s backcamera: + + Panasonic LUMIX DC-FZ85: + + Sony Alpha ILCE-7C: + + Canon EOS 850D: + + Canon EOS-M6: + + Canon PowerShot Pro1: + + Fujifilm XQ1: + + Leica C-Lux: + + Canon EOS 1300D: + + Olympus EVOLT E-520: + + Panasonic LUMIX DMC-ZS100: + + Samsung NX200: + + Panasonic LUMIX DMC-FZH1: + + iPhone15,3 backultrawide: + + Olympus SP-570UZ: + + Olympus PEN Lite E-PL7: + + Panasonic LUMIX DC-TZ202D: + + Panasonic LUMIX DC-ZS220D: + + Canon EOS 80D: + + Olympus PEN E-P1: + + Panasonic LUMIX DMC-FZ2000: + + Olympus E-300: + + Fujifilm X-E2: + + Nikon D3X: + + Canon EOS-1D X Mark II: + + Canon EOS-1D Mark II N: + + Leica SL (Typ 601): + + Sony Alpha ILCE-7C II: + + Pentax K-5 IIs: + + Sony Alpha NEX-5N: + + Nikon D6: + + Sony Alpha NEX-F3: + + Canon EOS M: + + Panasonic LUMIX DMC-ZS220: + + Canon EOS Kiss X5: + + Canon EOS R6 Mark II: + + iPhone10,6 back telephoto: + + Canon EOS Kiss X70: + + Sony Alpha SLT-A99 II: + + Panasonic LUMIX DMC-LX5: + + Sony Alpha DSLR-A560: + + Leaf Aptus-II 6: + + Sony ILME-FX3: + + Canon EOS 1500D: + + Sony Cyber-shot DSC-RX100 II: + + Panasonic LUMIX DMC-G5: + + Hasselblad H5D-50c: + + Fujifilm FinePix X100: + + Fujifilm X-A1: + + Nikon D3200: + + Panasonic LUMIX DMC-ZS110: + + Panasonic LUMIX DMC-ZS60: + + Nikon D7200: + + Nikon D700: + + Canon EOS 500D: + + Nikon D4S: + + Canon PowerShot G5 X Mark II: + + Leaf Aptus 65S: + + Leaf Aptus-II 7: + + Olympus E-3: + + Olympus PEN E-P2: + + Canon PowerShot S70: + + iPhone13,4 backwide: + + Canon EOS RP: + + Panasonic LUMIX DC-LX100M2: + + Canon PowerShot G5: + + Fujifilm X-A5: + + Pentax K2000: + + Leica C (Typ 112): + + Panasonic LUMIX DMC-TZ81: + + Panasonic LUMIX DMC-G81: + + Panasonic LUMIX DMC-FZ38: + + Pentax K-r: + + Panasonic LUMIX DC-GX880: + + Fujifilm X-100V: + + Sony Alpha DSLR-A850: + + Olympus OM-D E-M5: + + Pentax *ist DS2: + + Fujifilm X-T30 II: + + Canon EOS 550D: + + Nikon Z 7 2: + + Fujifilm X-T100: + + Nikon D300S: + + Nikon D2Xs: + + Canon EOS 9000D: + + Canon EOS Rebel T3: + + Canon EOS-1D Mark IV: + + Leaf Aptus 54S: + + iPhone12,5 backtelephoto: + + Sony Cyber-shot DSC-RX100 VI: + + Olympus PEN E-P3: + + Canon PowerShot G7 X: + + Fujifilm X-T1: + + iPhone15,3 front: + + Leica Q3: + + Pentax K-m: + + Sony Alpha NEX-C3: + + Olympus OM-D E-M1X: + + Canon Kiss X8: + + Sony Alpha SLT-A33: + + Sony Alpha 9: + + Canon EOS R3: + + Sony Alpha SLT-A58: + + Epson R-D1x: + + Nikon D800: + + Leaf Valeo 22: + + Fujifilm X-T5: + + Sony Cyber-shot DSC-RX100 IV: + + Canon R100: + + iPhone14,6 front: + + Sony Alpha DSLR-A700: + + Panasonic LUMIX DMC-TX2: + + Panasonic LUMIX DC-ZS200D: + + Canon EOS D30: + + Canon EOS Rebel T5i: + + Panasonic LUMIX DC-GF9: + + Canon EOS 200D: + + Olympus C7070WZ: + + Leaf Aptus 22: + + Leica X1: + + Canon EOS Kiss X6i: + + Panasonic LUMIX DMC-G2: + + Sony Alpha ILCE-6300: + + iPhone13,1 backwide: + + Nikon 1 J4: + + Pentax K110D: + + Canon EOS Rebel T6s: + + iPad 8,8 backcamera: + + Canon EOS Rebel SL1: + + Konica Minolta MAXXUM 5D: + + Olympus PEN E-PL1: + + Canon PowerShot G1 X Mark III: + + iPad13,8 backwide: + + Samsung NX10: + + Nikon D780: + + Sony Alpha ILCE-7M4: + + Canon EOS-1D X: + + Nikon D50: + + Leica CL: + + Olympus EVOLT E-420: + + Sony Alpha DSLR-A350: + + iPhone 11,8 backcamera: + + iPhone16,2 back ultra wide: + + Epson R-D1: + + Olympus STYLUS TG-4 Tough: + + iPhone14,6 back camera: + + Leica D-Lux 5: + + Canon EOS 250D: + + Leaf AFi-II 7: + + Epson R-D1s: + + Panasonic LUMIX DMC-FZ72: + + Olympus PEN E-P5: + + iPhone 9,3 backcamera: + + Canon EOS 30D: + + Panasonic LUMIX DMC-GX8: + + Sony Alpha ILCE-7R: + + Panasonic LUMIX DMC-GM1S: + + Canon EOS Kiss X80: + + PENTAX RICOH GR III: + + Canon EOS Kiss X7: + + Panasonic LUMIX DC-TZ92: + + Panasonic LUMIX DC-FZ82: + + Samsung GX-1S: + + Pentax *ist D: + + Olympus E-330: + + Panasonic LUMIX DC-GH5M2: + + Nikon Df: + +SPI: + + Apple Internal Keyboard / Trackpad: + + Product ID: 0x0357 + Vendor ID: 0 + ST Version: 4.60 + MT Version: 7.60 + Serial Number: FM7HDK0ATYF0000F96+AYTN + Manufacturer: Apple + Location ID: 0x000000aa + Hardware ID: 0x0001 + +SmartCards: + + Readers: + + Reader Drivers: + + #01: fr.apdu.ccid.smartcardccid:1.5.1 (/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle) + + SmartCard Drivers: + + #01: com.apple.CryptoTokenKit.pivtoken:1.0 (/System/Library/Frameworks/CryptoTokenKit.framework/PlugIns/pivtoken.appex) + + Available SmartCards (keychain): + + com.apple.setoken: + + com.apple.setoken:aks: + + Available SmartCards (token): + + com.apple.setoken: + + com.apple.setoken:aks: + +Software: + + System Software Overview: + + System Version: macOS 15.4.1 (24E263) + Kernel Version: Darwin 24.4.0 + Boot Volume: Macintosh HD + Boot Mode: Normal + Computer Name: MacBook Air — Main + User Name: main (test) + Secure Virtual Memory: Enabled + System Integrity Protection: Enabled + Time since boot: 14 дней, 2 часа, 10 минут + +Storage: + + Data: + + Free: 148,04 GB (148 042 899 456 bytes) + Capacity: 245,11 GB (245 107 195 904 bytes) + Mount Point: /System/Volumes/Data + File System: APFS + Writable: Yes + Ignore Ownership: No + BSD Name: disk3s5 + Volume UUID: C6ADB841-2907-421F-B33E-F7633C06428D + Physical Drive: + Device Name: APPLE SSD AP0256Z + Media Name: AppleAPFSMedia + Medium Type: SSD + Protocol: Apple Fabric + Internal: Yes + Partition Map Type: Unknown + S.M.A.R.T. Status: Verified + + iOS 18.4 Simulator Bundle: + + Free: 263,2 MB (263 184 384 bytes) + Capacity: 9,12 GB (9 116 319 744 bytes) + Mount Point: /Library/Developer/CoreSimulator/Cryptex/Images/bundle/SimRuntimeBundle-21CF05C3-9B4C-4CBA-BABC-8D9C33F0052A + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk5s1 + Volume UUID: 1E636626-73D7-484B-835A-A24FBF7D2C5C + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + iOS 18.4 Simulator: + + Free: 518,6 MB (518 606 848 bytes) + Capacity: 20,7 GB (20 698 890 240 bytes) + Mount Point: /Library/Developer/CoreSimulator/Volumes/iOS_22E238 + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk7s1 + Volume UUID: DD50EC5C-3A04-49B5-88ED-F50BB6C03943 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Endoparasitic 2: + + Free: 56,4 MB (56 418 304 bytes) + Capacity: 320,8 MB (320 823 296 bytes) + Mount Point: /Volumes/Endoparasitic 2 + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk9s1 + Volume UUID: F9F7CE72-0818-4C54-A869-DA53F4F8A363 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Mini Motorways: + + Free: 54,8 MB (54 751 232 bytes) + Capacity: 311,4 MB (311 386 112 bytes) + Mount Point: /Volumes/Mini Motorways + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk11s1 + Volume UUID: 85CA7846-AA18-4FAB-B50D-92856B5A9007 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Macintosh HD: + + Free: 148,04 GB (148 042 899 456 bytes) + Capacity: 245,11 GB (245 107 195 904 bytes) + Mount Point: / + File System: APFS + Writable: No + Ignore Ownership: No + BSD Name: disk3s1s1 + Volume UUID: 53435747-C371-4509-B67B-6673C9E4145D + Physical Drive: + Device Name: APPLE SSD AP0256Z + Media Name: AppleAPFSMedia + Medium Type: SSD + Protocol: Apple Fabric + Internal: Yes + Partition Map Type: Unknown + S.M.A.R.T. Status: Verified + +Sync Services: + + Sync Services Summary: + + Mac OS Version: 10,6 + + system.log: + + Errors and Warnings: + + Logs: + + system.log: + + Description: System Log + Date Modified: 09.05.2025, 22:24 + Size: 11 KB + Contents: May 9 00:02:33 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 00:12:37 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 00:22:39 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.cdscheduler" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.install" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". + Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". + Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.eventmonitor" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mail" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.performance" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.iokit.power" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". + Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mkb" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:30:05 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.MessageTracer" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 9 00:32:39 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 00:43:24 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 00:53:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 01:17:41 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 01:37:12 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 01:53:59 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 02:10:55 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 02:25:58 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 02:41:46 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 02:59:46 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 03:17:41 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 03:37:49 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 03:56:12 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 04:13:42 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 04:31:15 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 04:49:01 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 05:05:39 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 05:21:40 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 05:39:05 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 05:56:51 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 06:15:06 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 06:31:47 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 06:49:44 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 07:07:58 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 07:33:45 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 07:50:21 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 08:08:15 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 08:26:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 08:44:28 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 09:02:07 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 09:17:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 09:35:44 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 09:52:44 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 10:09:02 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 10:19:06 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 10:35:31 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 10:57:37 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 11:15:40 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 11:37:47 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 11:54:08 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 12:12:30 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 12:37:35 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 12:56:11 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 13:10:11 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 13:21:41 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 13:23:56 MacBook-Air--Main login[95621]: USER_PROCESS: 95621 ttys003 +May 9 13:32:02 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 13:44:35 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 13:57:22 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 14:01:34 MacBook-Air--Main CoreDeviceService[97517]: This is here just to make sure we empty our found devices queue +May 9 14:01:34 MacBook-Air--Main CoreDeviceService[97517]: (null) +May 9 14:01:34 MacBook-Air--Main CoreDeviceService[97517]: Failed to subscribe for booted OS device notifications. +May 9 14:01:34 MacBook-Air--Main CoreDeviceService[97517]: (null) +May 9 14:01:58 MacBook-Air--Main login[97541]: USER_PROCESS: 97541 ttys007 +May 9 14:02:22 MacBook-Air--Main login[97541]: DEAD_PROCESS: 97541 ttys007 +May 9 14:08:08 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 14:21:34 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 14:34:56 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 14:47:44 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 14:57:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 15:08:50 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 15:32:32 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 15:50:17 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 15:57:10 MacBook-Air--Main login[93756]: DEAD_PROCESS: 93756 ttys000 +May 9 16:01:24 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 16:11:41 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 16:17:55 MacBook-Air--Main CoreDeviceService[2088]: This is here just to make sure we empty our found devices queue +May 9 16:17:55 MacBook-Air--Main CoreDeviceService[2088]: (null) +May 9 16:17:55 MacBook-Air--Main CoreDeviceService[2088]: Failed to subscribe for booted OS device notifications. +May 9 16:17:55 MacBook-Air--Main CoreDeviceService[2088]: (null) +May 9 16:21:43 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 16:34:31 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 16:45:01 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 16:56:06 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 17:06:35 MacBook-Air--Main login[3938]: USER_PROCESS: 3938 ttys000 +May 9 17:06:35 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 17:18:14 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 17:26:48 MacBook-Air--Main CoreDeviceService[4793]: This is here just to make sure we empty our found devices queue +May 9 17:26:48 MacBook-Air--Main CoreDeviceService[4793]: (null) +May 9 17:26:48 MacBook-Air--Main CoreDeviceService[4793]: Failed to subscribe for booted OS device notifications. +May 9 17:26:48 MacBook-Air--Main CoreDeviceService[4793]: (null) +May 9 17:31:18 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 17:42:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 17:52:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:02:48 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:12:49 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:24:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:34:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:44:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 18:48:19 MacBook-Air--Main CoreDeviceService[8506]: This is here just to make sure we empty our found devices queue +May 9 18:48:19 MacBook-Air--Main CoreDeviceService[8506]: (null) +May 9 18:48:19 MacBook-Air--Main CoreDeviceService[8506]: Failed to subscribe for booted OS device notifications. +May 9 18:48:19 MacBook-Air--Main CoreDeviceService[8506]: (null) +May 9 18:54:10 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:04:27 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:14:38 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:24:46 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:39:06 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:49:24 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 19:59:48 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 20:11:41 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 20:26:57 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 20:37:26 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 20:47:28 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 20:57:48 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 21:08:09 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 21:18:27 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 21:33:20 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 21:50:39 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 22:02:49 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 22:06:02 MacBook-Air--Main login[3938]: DEAD_PROCESS: 3938 ttys000 +May 9 22:11:30 MacBook-Air--Main login[18488]: USER_PROCESS: 18488 ttys000 +May 9 22:13:00 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 9 22:24:38 MacBook-Air--Main syslogd[410]: ASL Sender Statistics + + +Thunderbolt/USB4: + + Thunderbolt/USB4 Bus 1: + + Vendor Name: Apple Inc. + Device Name: MacBook Air + UID: 0x05AC49D5982D9971 + Route String: 0 + Domain UUID: 27A83CA6-5E0B-459E-AE5C-6D9948028FA0 + Port: + Status: No device connected + Link Status: 0x100 + Speed: Up to 40 Gb/s + Receptacle: 2 + + Thunderbolt/USB4 Bus 0: + + Vendor Name: Apple Inc. + Device Name: MacBook Air + UID: 0x05AC49D5982D9970 + Route String: 0 + Domain UUID: D214685E-BAA0-4E8F-B983-439FF57ACBF7 + Port: + Status: No device connected + Link Status: 0x100 + Speed: Up to 40 Gb/s + Receptacle: 1 + +USB: + + USB 3.1 Bus: + + Host Controller Driver: AppleT8122USBXHCI + + USB 3.1 Bus: + + Host Controller Driver: AppleT8122USBXHCI + + USB3.1 Hub: + + Product ID: 0x0626 + Vendor ID: 0x05e3 (Genesys Logic, Inc.) + Version: 6.56 + Speed: Up to 5 Gb/s + Manufacturer: GenesysLogic + Location ID: 0x00200000 / 2 + Current Available (mA): 900 + Current Required (mA): 0 + Extra Operating Current (mA): 0 + + USB2.1 Hub: + + Product ID: 0x0610 + Vendor ID: 0x05e3 (Genesys Logic, Inc.) + Version: 6.56 + Speed: Up to 480 Mb/s + Manufacturer: GenesysLogic + Location ID: 0x00100000 / 1 + Current Available (mA): 500 + Current Required (mA): 100 + Extra Operating Current (mA): 0 + + G102 LIGHTSYNC Gaming Mouse: + + Product ID: 0xc092 + Vendor ID: 0x046d (Logitech Inc.) + Version: 52.00 + Serial Number: 207A32895031 + Speed: Up to 12 Mb/s + Manufacturer: Logitech + Location ID: 0x00140000 / 3 + Current Available (mA): 500 + Current Required (mA): 300 + Extra Operating Current (mA): 0 + +Volumes: + + home: + + Type: autofs + Mount Point: /System/Volumes/Data/home + Mounted From: map auto_home + Automounted: Yes + +Wi-Fi: + + Software Versions: + CoreWLAN: 16.0 (1657) + CoreWLANKit: 16.0 (1657) + Menu Extra: 17.0 (1728) + System Information: 15.0 (1502) + IO80211 Family: 12.0 (1200.13.1) + Diagnostics: 11.0 (1163) + AirPort Utility: 6.3.9 (639.26) + Interfaces: + en0: + Card Type: Wi-Fi (0x14E4, 0x4388) + Firmware Version: wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c +IO80211_driverkit-1475.34 "IO80211_driverkit-1475.34" Mar 9 2025 20:59:13 + MAC Address: a2:a1:ef:4e:f3:b4 + Locale: Unknown + Country Code: RU + Supported PHY Modes: 802.11 a/b/g/n/ac/ax + Supported Channels: 1 (2GHz), 2 (2GHz), 3 (2GHz), 4 (2GHz), 5 (2GHz), 6 (2GHz), 7 (2GHz), 8 (2GHz), 9 (2GHz), 10 (2GHz), 11 (2GHz), 12 (2GHz), 13 (2GHz), 36 (5GHz), 40 (5GHz), 44 (5GHz), 48 (5GHz), 52 (5GHz), 56 (5GHz), 60 (5GHz), 64 (5GHz), 132 (5GHz), 136 (5GHz), 140 (5GHz), 144 (5GHz), 149 (5GHz), 153 (5GHz), 157 (5GHz), 161 (5GHz), 165 (5GHz) + Wake On Wireless: Supported + AirDrop: Supported + Auto Unlock: Supported + Status: Connected + Current Network Information: + Dom_62: + PHY Mode: 802.11ac + Channel: 36 (5GHz, 80MHz) + Country Code: RU + Network Type: Infrastructure + Security: WPA2 Personal + Signal / Noise: -77 dBm / -91 dBm + Transmit Rate: 30 + MCS Index: 1 + Other Local Wi-Fi Networks: + Dom_62: + PHY Mode: 802.11a/n/ac + Channel: 36 (5GHz, 80MHz) + Network Type: Infrastructure + Security: WPA/WPA2 Personal + Signal / Noise: -73 dBm / -91 dBm + awdl0: + MAC Address: 92:61:8c:c2:db:e2 + Supported Channels: 1 (2GHz), 2 (2GHz), 3 (2GHz), 4 (2GHz), 5 (2GHz), 6 (2GHz), 7 (2GHz), 8 (2GHz), 9 (2GHz), 10 (2GHz), 11 (2GHz), 12 (2GHz), 13 (2GHz), 36 (5GHz), 40 (5GHz), 44 (5GHz), 48 (5GHz), 52 (5GHz), 56 (5GHz), 60 (5GHz), 64 (5GHz), 132 (5GHz), 136 (5GHz), 140 (5GHz), 144 (5GHz), 149 (5GHz), 153 (5GHz), 157 (5GHz), 161 (5GHz), 165 (5GHz) + Current Network Information: + Network Type: Infrastructure + diff --git a/system_info/system_profiler_file[15-05-25][12-38-24].txt b/system_info/system_profiler_file[15-05-25][12-38-24].txt new file mode 100644 index 0000000..0fcd1f8 --- /dev/null +++ b/system_info/system_profiler_file[15-05-25][12-38-24].txt @@ -0,0 +1,110201 @@ +Accessibility: + + Accessibility Information: + + Cursor Magnification: Off + Display: Black on White + Flash Screen: Off + Mouse Keys: Off + Slow Keys: Off + Sticky Keys: Off + VoiceOver: Off + Zoom Mode: Full Screen + Contrast: 0 + Keyboard Zoom: Off + Scroll Zoom: Off + +Apple Pay: + + Apple Pay Information: + Platform ID: N5E0000001100000 + SEID: 04501DF33E2490024346099397328803030F1A4C55FB17FD + System OS SEID: 04501DF33E2490024346099397328803FF0F1A4C55FB17FD + Device: 0x37 + Production Signed: Да + Restricted Mode: Нет + Hardware: 0x00000018 + Firmware: 0x82350500 + JCOP OS: 20.05 + + Controller Information: + Hardware: 60.1 () + Firmware: 1.2b rev 156564 + Middleware: 5.1.3.32 + +Applications: + + Keynote: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Keynote.app + + Pages: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Pages.app + + WhatsApp: + + Version: 25.10.72 + Obtained from: App Store + Last Modified: 09.04.2025, 00:45 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/WhatsApp.app + + V2BOX: + + Version: 9.5.1 + Obtained from: App Store + Last Modified: 09.04.2025, 00:45 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/V2Box.app + + Xcode: + + Version: 16.3 + Obtained from: App Store + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Xcode.app + + Simulator: + + Version: 16.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app + + Create ML: + + Version: 6.2 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Create ML.app + + Instruments: + + Version: 16.3 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Instruments.app + + FileMerge: + + Version: 2.11 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/FileMerge.app + + Reality Composer Pro: + + Version: 2.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Reality Composer Pro.app + + Accessibility Inspector: + + Version: 5.0 + Obtained from: Apple + Last Modified: 09.04.2025, 00:53 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Applications/Xcode.app/Contents/Applications/Accessibility Inspector.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 12:02 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-flvlphivubqrhigbwzfqdjkiaifx/Build/Products/Debug-iphonesimulator/MyProject.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 15:46 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-daphqrjozafovkesyqjzyimjzoij/Build/Products/Debug-iphonesimulator/MyProject.app + + Prodrafts: + + Version: 4.2.6 + Obtained from: App Store + Last Modified: 10.05.2025, 15:47 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Prodrafts.app + + Яндекс Почта: + + Version: + Obtained from: Identified Developer + Last Modified: 10.05.2025, 15:53 + Kind: iOS + Signed by: Developer ID Application: Yandex, LLC (477EAT77S3), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/Applications/Chrome Apps.localized/Яндекс Почта.app + + PenTablet: + + Version: 3.4 + Obtained from: Identified Developer + Last Modified: 25.01.2024, 09:52 + Kind: Universal + Signed by: Developer ID Application: Shenzhen Ugee Technology Co.,Ltd. (W5WXKF6844), Developer ID Certification Authority, Apple Root CA + Location: /Applications/XP-PenPenTabletPro/PenTablet.app + Get Info String: Created by Qt/QMake + + UninstallPenTablet: + + Version: 1.0 + Obtained from: Identified Developer + Last Modified: 31.12.2021, 06:59 + Kind: Intel + Signed by: Developer ID Application: Shenzhen Ugee Technology Co.,Ltd. (W5WXKF6844), Developer ID Certification Authority, Apple Root CA + Location: /Applications/XP-PenPenTabletPro/UninstallPenTablet.app + + Ollama: + + Version: 0.6.8 + Obtained from: Identified Developer + Last Modified: 04.05.2025, 22:08 + Kind: Universal + Signed by: Developer ID Application: Infra Technologies, Inc (3MU9H2V9Y9), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Ollama.app + + Ollama: + + Version: 0.6.8 + Obtained from: Identified Developer + Last Modified: 04.05.2025, 22:08 + Kind: Universal + Signed by: Developer ID Application: Infra Technologies, Inc (3MU9H2V9Y9), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/diagnostic-system-1.0/Ollama.app + + Visual Studio Code: + + Version: 1.100.1 + Obtained from: Identified Developer + Last Modified: 09.05.2025, 19:10 + Kind: Universal + Signed by: Developer ID Application: Microsoft Corporation (UBF8T346G9), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Visual Studio Code.app + + Docker: + + Version: 4.40.0 + Obtained from: Identified Developer + Last Modified: 29.03.2025, 17:28 + Kind: Apple Silicon + Signed by: Developer ID Application: Docker Inc (9BNSXJN65R), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Docker.app + + AppleMobileSync: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileSync.app + + AppleMobileDeviceHelper: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/AppleMobileDeviceHelper.app + + MobileDeviceUpdater: + + Version: 1.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/MobileDeviceUpdater.app + + Endoparasitic2: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 04.10.2024, 16:40 + Kind: Universal + Location: /Applications/Endoparasitic2.app + + Numbers: + + Version: 14.2 + Obtained from: App Store + Last Modified: 21.02.2025, 07:38 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Numbers.app + + group.is.workflow: + + Obtained from: Unknown + Last Modified: 09.04.2025, 01:03 + Kind: Other + Location: /Users/main/Library/Application Scripts/group.is.workflow.my.app + + MRT: + + Version: 1.93 + Obtained from: Apple + Last Modified: 09.04.2025, 00:34 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/CoreServices/MRT.app + + XProtect: + + Version: 151 + Obtained from: Apple + Last Modified: 09.04.2025, 00:34 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Apple/System/Library/CoreServices/XProtect.app + + Telegram: + + Version: 11.8 + Obtained from: App Store + Last Modified: 09.04.2025, 00:56 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Telegram.app + + Fork: + + Version: 2.51 + Obtained from: Unknown + Last Modified: 07.03.2025, 19:46 + Kind: Universal + Signed by: TNT + Location: /Applications/Fork.app + + Символы SF: + + Version: 6.0 + Obtained from: Apple + Last Modified: 09.04.2025, 12:09 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Users/main/Applications/SF Symbols.app + + dz_07: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 17:26 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/dz_07-ghfxceciofsxfrazzktwmoqvkqgp/Build/Products/Debug-iphonesimulator/dz_07.app + + MyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 16:12 + Kind: Apple Silicon + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject-djifbirmwmzzzygwpxjfzanyifsv/Build/Products/Debug/MyProject.app + + com.apple.ctcategories: + + Obtained from: Unknown + Last Modified: 09.04.2025, 19:07 + Kind: Other + Location: /Users/main/Library/HTTPStorages/com.apple.ctcategories.service + + Macs Fan Control: + + Version: 1.5.17 + Obtained from: Identified Developer + Last Modified: 17.12.2024, 16:54 + Kind: Universal + Signed by: Developer ID Application: Ilya Parniuk (ACC5R6RH47), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/Applications/Macs Fan Control.app + + Hacking with iOS – learn to code iPhone and iPad apps with free Swift tutorials: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:00 + Kind: Web + Location: /Users/main/Applications/Hacking with iOS – learn to code iPhone and iPad apps with free Swift tutorials.app + + ЛКС МГТУ: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:01 + Kind: Web + Location: /Users/main/Applications/ЛКС МГТУ.app + + translator: + + Version: 1.0 + Obtained from: Safari + Last Modified: 15.04.2025, 18:11 + Kind: Web + Location: /Users/main/Applications/translator.app + + MyTestProgramm: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 22:12 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyTestProgramm-bfrrqemgoypcprfazhfjfxlaesij/Build/Products/Debug-iphonesimulator/MyTestProgramm.app + + YouTube: + + Version: 1.0 + Obtained from: Safari + Last Modified: 10.04.2025, 00:10 + Kind: Web + Location: /Users/main/Applications/YouTube.app + + myHomeWork7: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 09.04.2025, 17:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/myHomeWork7-dnhqbpswridfladazsxqoytkpmvg/Build/Products/Debug-iphonesimulator/myHomeWork7.app + + Landmarks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 10.04.2025, 15:05 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Landmarks-avsvqmyyntvugthfslsuexcsyrmh/Build/Products/Debug-iphonesimulator/Landmarks.app + + Yandex: + + Version: 25.4.0.2030 + Obtained from: Identified Developer + Last Modified: 11.05.2025, 14:27 + Kind: iOS + Signed by: Developer ID Application: Yandex, LLC (477EAT77S3), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Yandex.app + Get Info String: Yandex ../../chrome/YANDEX_VERSION, Copyright 2025 Yandex. All rights reserved. + + Project1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 15.04.2025, 22:49 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project1-bmffaqvdxnjcpxanhxaydnkstmbi/Build/Products/Debug-iphonesimulator/Project1.app + + IDLE: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Other + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Python 3.13/IDLE.app + Get Info String: 3.13.3, © 2001-2024 Python Software Foundation + + Python Launcher: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Python 3.13/Python Launcher.app + Get Info String: 3.13.3, © 2001-2024 Python Software Foundation + + Python: + + Version: 3.13.3 + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Location: /Library/Frameworks/Python.framework/Versions/3.13/Resources/Python.app + Get Info String: 3.13.3, (c) 2001-2024 Python Software Foundation. + + Python: + + Version: 3.9.6 + Obtained from: Apple + Last Modified: 12.04.2025, 13:56 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/Resources/Python.app + Get Info String: 3.9.6, (c) 2001-2020 Python Software Foundation. + + ImageLoaderApp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 14.04.2025, 10:40 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/ImageLoaderApp-dnutiqbxsmslysdtgcftfbvbxpya/Build/Products/Debug-iphonesimulator/ImageLoaderApp.app + + MyStudyProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 14.04.2025, 11:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyStudyProject-hgvmuguuiesdpcecrlmxsogwdbcc/Build/Products/Debug-iphonesimulator/MyStudyProject.app + + MyTestProject: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 15.04.2025, 22:47 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyTestProject-bgarzauysixeencvilwmwxwdptdd/Build/Products/Debug-iphonesimulator/MyTestProject.app + + MyProject2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 16.04.2025, 11:33 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyProject2-dfpvuvpfmmrdwufjzggxamwjnuow/Build/Products/Debug-iphonesimulator/MyProject2.app + + Project1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 16.04.2025, 13:23 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project1-aozyzfjwnxjxxwdxfywnjekixsok/Build/Products/Debug-iphonesimulator/Project1.app + + MyHomework8: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 17.04.2025, 12:10 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/MyHomework8-gwnbwijvmeqqzohewoihqsvaoozx/Build/Products/Debug-iphonesimulator/MyHomework8.app + + test1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 21.04.2025, 23:41 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/test1-fcftgvpgklpeupcymvtvuafspxyd/Build/Products/Debug-iphonesimulator/test1.app + + Project2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 17.04.2025, 12:08 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project2-bloouirgqevowpdjhdvzbkyisabq/Build/Products/Debug-iphonesimulator/Project2.app + + Project39: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 19.04.2025, 17:32 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project39-awtngumvjbjheedldbryjiqmnqxy/Build/Products/Debug-iphonesimulator/Project39.app + + Project33: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 23.04.2025, 13:11 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project33-fyqfbgadjcnajmbwichqoyvkldyk/Build/Products/Debug-iphonesimulator/Project33.app + + Project28: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 19.04.2025, 17:34 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/Project28-fxbhwfqlctdktbfcufrcuizhfmqc/Build/Products/Debug-iphonesimulator/Project28.app + + hw7 2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 22.04.2025, 19:57 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/hw7_2.0-gjznnvhlnnyofgdhrxdhzietmiik/Build/Products/Debug-iphonesimulator/hw7 2.0.app + + test2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 22.04.2025, 22:46 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/test2-drncxmicyqadlxelznsritlvzzpd/Build/Products/Debug-iphonesimulator/test2.app + + AirScanLegacyDiscovery: + + Version: 607 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/AirScanLegacyDiscovery.app + + Recursive File Processing Droplet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app + + Droplet with Settable Properties: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app + + Recursive Image File Processing Droplet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Other + Location: /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app + + Cocoa-AppleScript Applet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Location: /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app + + mathQuest: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 27.04.2025, 21:51 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/mathQuest-etrcnxxmyztygkcshabaxtghjyfj/Build/Products/Debug-iphonesimulator/mathQuest.app + + mathGame: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 30.04.2025, 12:59 + Kind: Other + Location: /Users/main/Library/Developer/Xcode/DerivedData/mathGame-bhsjosfvdrfcqveltfmfwnwpxzsw/Build/Products/Debug-iphonesimulator/mathGame.app + + PenTabletInfo: + + Version: 1.3 + Obtained from: Identified Developer + Last Modified: 10.05.2025, 15:54 + Kind: Universal + Signed by: Developer ID Application: Shenzhen Ugee Technology Co.,Ltd. (W5WXKF6844), Developer ID Certification Authority, Apple Root CA + Location: /Library/Application Support/PenDriver/PenTabletInfo.app + + PenTablet_Driver: + + Version: 2.0 + Obtained from: Identified Developer + Last Modified: 10.05.2025, 15:54 + Kind: Universal + Signed by: Developer ID Application: Shenzhen Ugee Technology Co.,Ltd. (W5WXKF6844), Developer ID Certification Authority, Apple Root CA + Location: /Library/Application Support/PenDriver/PenTablet_Driver.app + + Crash Reporter: + + Version: 1.0 + Obtained from: Identified Developer + Last Modified: 12.05.2025, 23:16 + Kind: Universal + Signed by: Developer ID Application: Valve Corporation (MXGJJ98X76), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Breakpad.framework/Versions/A/Resources/crash_report_sender.app + + Steam Helper: + + Version: 31.0.1650.57 + Obtained from: Identified Developer + Last Modified: 12.05.2025, 23:16 + Kind: Intel + Signed by: Developer ID Application: Valve Corporation (MXGJJ98X76), Developer ID Certification Authority, Apple Root CA + Location: /Users/main/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Steam Helper.app + + Steam: + + Version: 4.0 + Obtained from: Identified Developer + Last Modified: 23.03.2022, 03:41 + Kind: Intel + Signed by: Developer ID Application: Valve Corporation (MXGJJ98X76), Developer ID Certification Authority, Apple Root CA + Location: /Applications/Steam.app + + Tanks Blitz: + + Version: 11.10.0 + Obtained from: App Store + Last Modified: 12.05.2025, 23:17 + Kind: Intel + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Tanks Blitz.app + + Userscripts: + + Version: 4.7.1 + Obtained from: App Store + Last Modified: 13.05.2025, 21:09 + Kind: Universal + Signed by: Apple Mac OS Application Signing, Apple Worldwide Developer Relations Certification Authority, Apple Root CA + Location: /Applications/Userscripts.app + + Настройка Audio‑MIDI: + + Version: 3.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Audio MIDI Setup.app + Get Info String: 3.6, Copyright 2002–2024 Apple Inc. + + Обмен файлами по Bluetooth: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Bluetooth File Exchange.app + Get Info String: 7.0.0, Copyright © 2002-2018 Apple Inc. All rights reserved. + + Ассистент Boot Camp: + + Version: 6.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Boot Camp Assistant.app + + Утилита ColorSync: + + Version: 12.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/ColorSync Utility.app + + Консоль: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Console.app + + Цифровой колориметр: + + Version: 5.26 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Digital Color Meter.app + + Дисковая утилита: + + Version: 22.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Disk Utility.app + + Графический калькулятор: + + Version: 2.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Grapher.app + + Ассистент миграции: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Migration Assistant.app + + Центр печати: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Print Center.app + + Общий экран: + + Version: 5.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Screen Sharing.app + + Снимок экрана: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Screenshot.app + + Редактор скриптов: + + Version: 2.11 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Script Editor.app + + Информация о системе: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/System Information.app + + Терминал: + + Version: 2.14 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Terminal.app + + Утилита VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/VoiceOver Utility.app + + Диктофон: + + Version: 3.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/VoiceMemos.app + + Погода: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Weather.app + + Видеоповтор iPhone: + + Version: 1.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/iPhone Mirroring.app + + Об этом Mac: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/About This Mac.app + + Утилита архивирования: + + Version: 10.15 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Archive Utility.app + + DVD-плеер: + + Version: 6.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/DVD Player.app + + Обзор стола: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Desk View.app + + Служба каталогов: + + Version: 6.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Directory Utility.app + + Утилита слотов расширения: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Expansion Slot Utility.app + + Ассистент обратной связи: + + Version: 5.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Feedback Assistant.app + + Настройка действий папки: + + Version: 1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Folder Actions Setup.app + + Связка ключей: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Keychain Access.app + + Просмотр билетов: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Ticket Viewer.app + + Беспроводная диагностика: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/Wireless Diagnostics.app + + Установщик iOS-приложений: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Applications/iOS App Installer.app + + Finder: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app + + AirDrop: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/AirDrop.app + + Компьютер: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Computer.app + + Сеть: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Network.app + + Недавние: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/Recents.app + + iCloud Drive: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Finder.app/Contents/Applications/iCloud Drive.app + + Заметки: + + Version: 4.12.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Notes.app + + Пароли: + + Version: 1.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Passwords.app + + Photo Booth: + + Version: 13.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Photo Booth.app + + Фото: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Photos.app + + Подкасты: + + Version: 1.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Podcasts.app + + Просмотр: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Preview.app + + QuickTime Player: + + Version: 10.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/QuickTime Player.app + Get Info String: 10.5, Copyright © 2009-2024 Apple Inc. All Rights Reserved. + + Напоминания: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Reminders.app + + Команды: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Shortcuts.app + + Siri: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Siri.app + + Записки: + + Version: 10.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Stickies.app + + Акции: + + Version: 7.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Stocks.app + + Системные настройки: + + Version: 15.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/System Settings.app + + TV: + + Version: 1.5.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/TV.app + Get Info String: TV 1.5.4.70, © 2019–2025 Apple Inc. All rights reserved. + + TextEdit: + + Version: 1.20 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/TextEdit.app + + Time Machine: + + Version: 1.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Time Machine.app + + Советы: + + Version: 15.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Tips.app + + Мониторинг системы: + + Version: 10.14 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/Activity Monitor.app + + Утилита AirPort: + + Version: 6.3.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Utilities/AirPort Utility.app + Get Info String: 6.3.9, Copyright 2001 -2024 Apple Inc. + + Программа для обновления Rosetta 2: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Rosetta 2 Updater.app + + Экранное время: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Screen Time.app + + ScreenSaverEngine: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ScreenSaverEngine.app + + Меню скриптов: + + Version: 1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Script Menu.app + + ScriptMonitor: + + Version: 1.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ScriptMonitor.app + + Ассистент настройки системы: + + Version: 10.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Setup Assistant.app + + App Store: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/App Store.app + + Automator: + + Version: 2.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Automator.app + + Книги: + + Version: 7.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Books.app + + Калькулятор: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Calculator.app + + Календарь: + + Version: 15.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Calendar.app + + Шахматы: + + Version: 3.18 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Chess.app + Get Info String: 3.18, Copyright 2003–2024 Apple Inc. + + Часы: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Clock.app + + Контакты: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Contacts.app + + Словарь: + + Version: 2.3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Dictionary.app + + FaceTime: + + Version: 36 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/FaceTime.app + + Локатор: + + Version: 4.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/FindMy.app + + Шрифты: + + Version: 11.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Font Book.app + + Freeform: + + Version: 3.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Freeform.app + + Дом: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Home.app + + Захват изображений: + + Version: 8.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Image Capture.app + + Image Playground: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Image Playground.app + + Launchpad: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Launchpad.app + + Почта: + + Version: 16.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Mail.app + + Карты: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Maps.app + + Сообщения: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Messages.app + + Mission Control: + + Version: 1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Mission Control.app + + Музыка: + + Version: 1.5.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Applications/Music.app + Get Info String: Music 1.5.4.70, © 2019–2025 Apple Inc. All rights reserved. + + TMHelperAgent: + + Version: 13 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TimeMachine/TMHelperAgent.app + + Советы: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TipsSpotlightHandler.app + + UIKitSystem: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UIKitSystem.app + + UniversalAccessControl: + + Version: 7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UniversalAccessControl.app + + Универсальное управление: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UniversalControl.app + + UnmountAssistantAgent: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UnmountAssistantAgent.app + + UserNotificationCenter: + + Version: 82 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/UserNotificationCenter.app + + VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/VoiceOver.app + + Обои: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WallpaperAgent.app + + Справка циферблатов: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WatchFaceAlert.app + + WiFiAgent: + + Version: 17.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WiFiAgent.app + Get Info String: 17.0, Copyright © 2012-2019 Apple Inc. All rights reserved. + + WidgetKit Simulator: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WidgetKit Simulator.app + + WindowManager: + + Version: 278.4.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WindowManager.app + Get Info String: WindowManager + + WindowManagerShowDesktopEducation: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WindowManagerShowDesktopEducation.app + Get Info String: WindowManagerShowDesktopEducation + + WorkoutAlert-Mac: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/WorkoutAlert-Mac.app + + iCloud+: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/iCloud+.app + + iCloud: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/iCloud.app + + liquiddetectiond: + + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/liquiddetectiond.app + + loginwindow: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/loginwindow.app + + rcd: + + Version: 362 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/rcd.app + Get Info String: 362 + + screencaptureui: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/screencaptureui.app + + OpenSpell: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/OpenSpell.service + + SpeechService: + + Version: 9.2.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/SpeechService.service + Get Info String: 9.2.22 + + Spotlight: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/Spotlight.service + + Сводка: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/Summary Service.app + + BluetoothUIServer: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothUIServer.app + Get Info String: kBluetoothCFBundleGetInfoString + + BluetoothUIService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothUIService.app + + CalendarFileHandler: + + Version: 8.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CalendarFileHandler.app + + Captive Network Assistant: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Captive Network Assistant.app + + Ассистент сертификации: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Certificate Assistant.app + + Пункт управления: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ControlCenter.app + + ControlStrip: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ControlStrip.app + + CoreLocationAgent: + + Version: 2960.0.57 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CoreLocationAgent.app + Get Info String: Copyright © 2013 Apple Inc. + + CoreServicesUIAgent: + + Version: 369 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/CoreServicesUIAgent.app + Get Info String: Copyright © 2009 Apple Inc. + + Сведения о действии гарантии: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Coverage Details.app + + Database Events: + + Version: 1.0.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Database Events.app + + Diagnostics Reporter: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Diagnostics Reporter.app + + DiscHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/DiscHelper.app + + DiskImageMounter: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/DiskImageMounter.app + + Dock: + + Version: 1.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Dock.app + Get Info String: Dock 1.8 + + Dwell Control: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Dwell Control.app + + Расширенное журналирование: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Enhanced Logging.app + + Ассистент стирания: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Erase Assistant.app + + EscrowSecurityAlert: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/EscrowSecurityAlert.app + + Family: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Family.app + + FileProvider-Feedback: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/FileProvider-Feedback.app + + FolderActionsDispatcher: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/FolderActionsDispatcher.app + + Game Center: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Game Center.app + + IOUIAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/IOUIAgent.app + + Image Events: + + Version: 1.1.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Image Events.app + + Install Command Line Developer Tools: + + Version: 2409 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Install Command Line Developer Tools.app + + Идет установка: + + Version: 3.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Install in Progress.app + + Installer Progress: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Installer Progress.app + + Установщик: + + Version: 6.2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Installer.app + + JavaLauncher: + + Version: 325 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/JavaLauncher.app + + KeyboardAccessAgent: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/KeyboardAccessAgent.app + + KeyboardSetupAssistant: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/KeyboardSetupAssistant.app + + Keychain Circle Notification: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Keychain Circle Notification.app + + Выбор языка: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Language Chooser.app + + MTLReplayer: + + Version: 304.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MTLReplayer.app + + ManagedClient: + + Version: 17.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ManagedClient.app + + MediaMLPluginApp: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MediaMLPluginApp.app + + Утилита слотов памяти: + + Version: 1.5.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Memory Slot Utility.app + + Распознавание музыки: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/MusicRecognitionMac.app + + NetAuthAgent: + + Version: 6.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NetAuthAgent.app + + Центр уведомлений: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NotificationCenter.app + + NowPlayingTouchUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/NowPlayingTouchUI.app + + OBEXAgent: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/OBEXAgent.app + Get Info String: 7.0.0, Copyright © 2002-2018 Apple Inc. All rights reserved. + + ODSAgent: + + Version: 1.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ODSAgent.app + Get Info String: 1.9 (190.2), Copyright © 2007-2009 Apple Inc. All Rights Reserved. + + OSDUIHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/OSDUIHelper.app + + PIPAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PIPAgent.app + + Связывание устройств: + + Version: 6.5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Paired Devices.app + + Pass Viewer: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Pass Viewer.app + + PeopleMessageService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PeopleMessageService.app + + Контакты: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PeopleViewService.app + + PowerChime: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PowerChime.app + + PreviewShell: + + Version: 16.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/PreviewShell.app + + Калибратор Pro Display: + + Version: 211.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Pro Display Calibrator.app + + Problem Reporter: + + Version: 10.13 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Problem Reporter.app + + Установщик профиля: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ProfileHelper.app + + RapportUIAgent: + + Version: 6.5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RapportUIAgent.app + + RegisterPluginIMApp: + + Version: 26.200 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RegisterPluginIMApp.app + + ARDAgent: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/ARDAgent.app + + Сообщение Remote Desktop: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/Remote Desktop Message.app + + SSMenuAgent: + + Version: 3.9.8 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/RemoteManagement/SSMenuAgent.app + + ShortcutDroplet: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ShortcutDroplet.app + + Shortcuts Events: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Shortcuts Events.app + + ShortcutsActions: + + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ShortcutsActions.app + + Siri: + + Version: 3404.72.1.14.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Siri.app + + Обновление ПО: + + Version: 6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Software Update.app + Get Info String: Software Update version 4.0, Copyright © 2000-2009, Apple Inc. All rights reserved. + + SpacesTouchBarAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/SpacesTouchBarAgent.app + + Spotlight: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Spotlight.app + + StageManagerOnboarding: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/StageManagerOnboarding.app + Get Info String: StageManagerOnboarding + + System Events: + + Version: 1.3.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/System Events.app + + SystemUIServer: + + Version: 1.7 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/SystemUIServer.app + + TextInputMenuAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TextInputMenuAgent.app + + TextInputSwitcher: + + Version: 1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/TextInputSwitcher.app + + ThermalTrap: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/ThermalTrap.app + + ClassroomStudentMenuExtra: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Classroom/ClassroomStudentMenuExtra.app + + Калибратор дисплея: + + Version: 4.19 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/ColorSync/Calibrators/Display Calibrator.app + Get Info String: 4.19, Copyright 2014-2024 Apple Computer, Inc. + + STMUIHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/StorageManagement.framework/Versions/A/Resources/STMUIHelper.app + + AMSEngagementViewService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework/Versions/A/Resources/AMSEngagementViewService.app + + ParentalControls: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources/ParentalControls.app + Get Info String: 2.0, Copyright Apple Inc. 2007-2019 + + Calibration Assistant: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/Resources/Calibration Assistant.app + + AppSSOAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppSSO.framework/Support/AppSSOAgent.app + + KerberosMenuExtra: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppSSOKerberos.framework/Support/KerberosMenuExtra.app + + DFRHUD: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/DFRHUD.app + + universalAccessAuthWarn: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app + + UASharedPasteboardProgressUI: + + Version: 54.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UserActivity.framework/Agents/UASharedPasteboardProgressUI.app + + AutoFillPanelService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AutoFillUI.framework/Contents/AutoFillPanelService.app + + AutomationModeUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AutomationMode.framework/AutomationModeUI.app + + BackgroundTaskManagementAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Support/BackgroundTaskManagementAgent.app + + Сверка данных: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/Conflict Resolver.app + Get Info String: 1.0, Copyright Apple Computer Inc. 2004 + + CIMFindInputCodeTool: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreChineseEngine.framework/Versions/A/SharedSupport/CIMFindInputCodeTool.app + + nbagent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app + + iCloudUserNotificationsd: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/Resources/iCloudUserNotificationsd.app + + AOSAlertManager: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSAlertManager.app + + AOSHeartbeat: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSHeartbeat.app + + AOSPushRelay: + + Version: 1.07 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/Helpers/AOSPushRelay.app + + IMAutomaticHistoryDeletionAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMDPersistence.framework/IMAutomaticHistoryDeletionAgent.app + + iCloud Drive: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/iCloudDriveCore.framework/Versions/A/Resources/iCloud Drive.app + + FindMyMacMessenger: + + Version: 4.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/Resources/FindMyMacMessenger.app + + eaptlstrust: + + Version: 13.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/EAP8021X.framework/Support/eaptlstrust.app + + identityservicesd: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app + + IDSRemoteURLConnectionAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSRemoteURLConnectionAgent.app + + imagent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMCore.framework/imagent.app + + SoftwareUpdateNotificationManager: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app + + ScreenReaderUIServer: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/ScreenReaderUIServer.app + + Краткое руководство по VoiceOver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Versions/A/Resources/VoiceOver Quickstart.app + + Загрузчик речи: + + Version: 9.0.72 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/SpeechDataInstallerd.app + + SpeechRecognitionServer: + + Version: 9.0.72 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/SpeechRecognitionServer.app + + DiskImages UI Agent: + + Version: 671.100.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/Resources/DiskImages UI Agent.app + + AXVisualSupportAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/AXVisualSupportAgent.app + + Руководство по Универсальному доступу: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/Accessibility Tutorial.app + + FeedbackRemoteView: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/FeedbackService.framework/Versions/A/Support/FeedbackRemoteView.app + + privatecloudcomputed: + + Version: 2250.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/PrivateCloudCompute.framework/privatecloudcomputed.app + + FollowUpUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Resources/FollowUpUI.app + + Создание веб-страницы: + + Version: 10.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Automatic Tasks/Build Web Page.app + Get Info String: 10.1, © Copyright 2003-2014 Apple Inc. All rights reserved. + + Создание PDF: + + Version: 10.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Automatic Tasks/MakePDF.app + Get Info String: 10.1, © Copyright 2003-2015 Apple Inc. All rights reserved. + + AirScanScanner: + + Version: 18 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Image Capture/Devices/AirScanScanner.app + + 50onPaletteServer: + + Version: 1.1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/50onPaletteServer.app + + AinuIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/AinuIM.app + + Assistive Control: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/Assistive Control.app + + CharacterPalette: + + Version: 2.0.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/CharacterPalette.app + + Диктовка: + + Version: 6.2.9.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/DictationIM.app + + EmojiFunctionRowIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/EmojiFunctionRowIM.app + + JapaneseIM-KanaTyping: + + Version: 6.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/JapaneseIM-KanaTyping.app + + JapaneseIM-RomajiTyping: + + Version: 6.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/JapaneseIM-RomajiTyping.app + + KoreanIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/KoreanIM.app + + PluginIM: + + Version: 26.200 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/PluginIM.app + + PressAndHold: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/PressAndHold.app + + SCIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/SCIM.app + + TCIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TCIM.app + + TYIM: + + Version: 104 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TYIM.app + + TamilIM: + + Version: 1.6 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TamilIM.app + Get Info String: Tamil Input Method 1.5 + + TrackpadIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TrackpadIM.app + + TransliterationIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/TransliterationIM.app + + VietnameseIM: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Input Methods/VietnameseIM.app + + AskPermissionUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AskPermission.framework/Versions/A/Resources/AskPermissionUI.app + + storeuid: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app + + IMTransferAgent: + + Version: 10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferAgent.app + + syncuid: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/Resources/syncuid.app + Get Info String: 4.0, Copyright Apple Computer Inc. 2004 + + LinkedNotesUIService: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/PaperKit.framework/Contents/LinkedNotesUIService.app + + AquaAppearanceHelper: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/AquaAppearanceHelper.app + + sociallayerd: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SocialLayer.framework/sociallayerd.app + + Субтитры: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/Resources/Live Captions.app + + LiveSpeech: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/Resources/LiveSpeech.app + + AccessibilityVisualsAgent: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Versions/A/Resources/AccessibilityVisualsAgent.app + + AddressBookSync: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Helpers/AddressBookSync.app + + Пара со смарт‑картой: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CryptoTokenKit.framework/ctkbind.app + + qlmanage: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/qlmanage.app + + quicklookd: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd.app + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + + FontRegistryUIAgent: + + Version: 81.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Support/FontRegistryUIAgent.app + Get Info String: Copyright © 2008-2013 Apple Inc. + + Озвучивание системы: + + Version: 9.2.22 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/System Speech.app + Get Info String: 9.2.22 + + Quick Look Simulator: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLookUI.framework/Versions/A/Resources/Quick Look Simulator.app + + QuickLookUIHelper: + + Version: 5.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/QuickLookUI.framework/Versions/A/Resources/QuickLookUIHelper.app + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + + Wish: + + Version: 8.5.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/Tk.framework/Versions/8.5/Resources/Wish.app + Get Info String: Wish Shell 8.5.9, +Copyright © 1989-2025 Tcl Core Team, +Copyright © 2002-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + + SyncServer: + + Version: 8.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/SyncServices.framework/Versions/A/Resources/SyncServer.app + Get Info String: © 2002-2003 Apple + + ABAssistantService: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/ABAssistantService.app + + AddressBookManager: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/AddressBookManager.app + + AddressBookSourceSync: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AddressBook.framework/Versions/A/Helpers/AddressBookSourceSync.app + + CinematicFramingOnboardingUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/CinematicFramingOnboardingUI.app + + ContinuityCaptureOnboardingUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/ContinuityCaptureOnboardingUI.app + + AppleSpell: + + Version: 2.4 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/AppleSpell.service + + ChineseTextConverterService: + + Version: 2.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Services/ChineseTextConverterService.app + Get Info String: Chinese Text Converter 1.1 + + AOSUIPrefPaneLauncher: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AOSUIPrefPaneLauncher.app + + Конфигурирование AVB: + + Version: 1320.3 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AVB Configuration.app + + AddPrinter: + + Version: 607 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AddPrinter.app + + AddressBookUrlForwarder: + + Version: 14.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AddressBookUrlForwarder.app + + AirPlayUIAgent: + + Version: 2.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AirPlayUIAgent.app + + Агент базовой станции AirPort: + + Version: 2.2.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AirPort Base Station Agent.app + Get Info String: 2.2.1 (221.12), Copyright © 2006 -2024 Apple Inc. All Rights Reserved. + + Утилита AppleScript: + + Version: 1.1.2 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AppleScript Utility.app + + AskToMessagesHost: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/AskToMessagesHost.app + + Automator Application Stub: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Location: /System/Library/CoreServices/Automator Application Stub.app + + Установщик Automator: + + Version: 2.10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Automator Installer.app + + Аккумуляторы: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/Batteries.app + + Ассистент настройки Bluetooth: + + Version: 9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/CoreServices/BluetoothSetupAssistant.app + Get Info String: 9.0 (1) + +Audio: + + Devices: + + Микрофон (iPhone): + + Input Channels: 1 + Manufacturer: Apple Inc. + Current SampleRate: 48000 + Transport: Unknown + Input Source: Default + + Микрофон MacBook Air: + + Default Input Device: Yes + Input Channels: 1 + Manufacturer: Apple Inc. + Current SampleRate: 48000 + Transport: Built-in + Input Source: Микрофон MacBook Air + + Динамики MacBook Air: + + Default Output Device: Yes + Default System Output Device: Yes + Manufacturer: Apple Inc. + Output Channels: 2 + Current SampleRate: 48000 + Transport: Built-in + Output Source: Динамики MacBook Air + +Bluetooth: + + Bluetooth Controller: + Address: C4:84:FC:0B:3C:A9 + State: On + Chipset: BCM_4388 + Discoverable: Off + Firmware Version: 22.5.542.2791 + Product ID: 0x4A33 + Supported services: 0x392039 < HFP AVRCP A2DP HID Braille LEA AACP GATT SerialPort > + Transport: PCIe + Vendor ID: 0x004C (Apple) + Not Connected: + iPhone: + Address: 24:B3:39:D1:F8:FC + RSSI: -51 + WH-CH720N: + Address: 40:72:18:99:15:54 + Vendor ID: 0x054C + Product ID: 0x0EAF + Firmware Version: 1.0.9 + Minor Type: Headset + +Camera: + + HD-камера FaceTime: + + Model ID: HD-камера FaceTime + Unique ID: 3642F2CD-E322-42E7-9360-19815B003AA6 + + Камера (iPhone): + + Model ID: iPhone14,5 + Unique ID: BBD09DD4-6FDC-4241-95C3-A65D00000001 + +Controller: + + Model Identifier: Mac15,12 + Firmware Version: iBoot-11881.101.1 + Boot UUID: 83423475-C544-4275-84DD-36AC84134231 + Boot Policy: + Secure Boot: Высший уровень безопасности + System Integrity Protection: Включено + Signed System Volume: Включено + Kernel CTRR: Включено + Boot Arguments Filtering: Включено + Allow All Kernel Extensions: Нет + User Approved Privileged MDM Operations: Нет + DEP Approved Privileged MDM Operations: Нет + +Developer: + + Developer Tools: + + Version: 16.3 (16E140) + Location: /Applications/Xcode.app + Applications: + Xcode: 16.3 (23785) + Instruments: 16.3 (64570.99) + SDKs: + DriverKit: + 24,4: + iOS: + 18,4: (22E235) + iOS Simulator: + 18,4: (22E235) + macOS: + 15,4: (24E241) + tvOS: + 18,4: (22L251) + tvOS Simulator: + 18,4: (22L251) + visionOS: + 2,4: (22O233) + visionOS Simulator: + 2,4: (22O233) + watchOS: + 11,4: (22T246) + watchOS Simulator: + 11,4: (22T246) + +Extensions: + + AppleHIDKeyboard: + + Version: 8010.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDKeyboard + Loaded: Yes + Get Info String: 8 010,1 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDKeyboard.kext/ + Kext Version: 8010.1 + Load Address: 18446741874808347000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Properties Applier for USB Services: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBHostMergeProperties + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostMergeProperties.kext/ + Kext Version: 1.2 + Load Address: 18446741874814755000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSlaveProcessor: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOSlaveProcessor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSlaveProcessor.kext/ + Kext Version: 1 + Load Address: 18446741874813784000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPMI: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPMI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPMI.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809960000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltEDMSource: + + Version: 5.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltEDMSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltEDMService.kext/Contents/PlugIns/AppleThunderboltEDMSource.kext/ + Kext Version: 5.0.3 + Load Address: 18446741874810485000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SEPHibernation: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SEPHibernation + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SEPHibernation.kext/ + Kext Version: 1 + Load Address: 18446741874815035000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOImageLoader driver: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOImageLoader + Loaded: Yes + Get Info String: 1.0, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOImageLoader.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813470000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedSimpleSPINORFlasherDriver: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleEmbeddedSimpleSPINORFlasher + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedSimpleSPINORFlasherDriver.kext/ + Kext Version: 1 + Load Address: 18446741874807910000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAccessoryManager: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAccessoryManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAccessoryManager.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874812893000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + PPPoE: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.pppoe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/PPPoE.kext/ + Kext Version: 1.9 + Load Address: 18446741874814978000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAVFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874812744000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + DCPDPFamilyProxy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DCPDPFamilyProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/DCPDPFamilyProxy.kext/ + Kext Version: 1 + Load Address: 18446741874811482000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBPLCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBPLCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBPLCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBPLCOM, TeamID: @apple + + CoreStorage: + + Version: 559 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreStorage + Loaded: Yes + Get Info String: CoreStorage 1.0, Copyright © 2009 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreStorage.kext/ + Kext Version: 559 + Load Address: 18446741874811415000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleInputDeviceSupport: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleInputDeviceSupport + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleInputDeviceSupport.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808599000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8020SOCTuner: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8020SOCTuner + Loaded: Yes + Get Info String: Copyright © 2017 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8020SOCTuner.kext/ + Kext Version: 1 + Load Address: 18446741874810171000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.AppleUserHIDDrivers: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleUserHIDDrivers + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.AppleUserHIDDrivers.dext/ + Kext Version: 1 + Load Address: 242 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.AppleUserHIDDrivers, TeamID: @apple + + AppleKextExcludeList: + + Version: 20.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.KextExcludeList + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /Library/Apple/System/Library/Extensions/AppleKextExcludeList.kext/ + Kext Version: 20.0.0 + Loadable: Yes + Dependencies: Satisfied + + AppleA7IOP-ASCWrap-v6: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP-ASCWrap-v6 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP-ASCWrap-v6.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804929000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + cddafs: + + Version: 2.6.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.cddafs + Loaded: Yes + Get Info String: 2.6.1, Copyright Apple Inc. 2000-2014 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/cddafs.kext/ + Kext Version: 2.6.1 + Load Address: 18446741874815898000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBSLCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBSLCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBSLCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBSLCOM, TeamID: @apple + + AppleSCDriver: + + Version: 25.75 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSCDriver + Loaded: Yes + Get Info String: Copyright © 2016-2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSCDriver.kext/ + Kext Version: 25.75 + Load Address: 18446741874809776000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.iokit + Loaded: Yes + Get Info String: I/O Kit Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/IOKit.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedUSBXHCIPCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleEmbeddedUSBXHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleEmbeddedUSBXHCIPCI.kext/ + Kext Version: 1 + Load Address: 18446741874814605000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMultiFunctionManager: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMultiFunctionManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMultiFunctionManager.kext/ + Kext Version: 1 + Load Address: 18446741874809480000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSummitLCD: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSummitLCD + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSummitLCD.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810128000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHIDPowerSource: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOHIDPowerSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDPowerSource.kext/ + Kext Version: 1 + Load Address: 18446741874813467000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIMultimediaCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIMultimediaCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIMultimediaCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813753000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPMIPMU: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPMIPMU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPMIPMU.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809975000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BootPolicy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.BootPolicy + Loaded: Yes + Get Info String: Copyright © 2020-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BootPolicy.kext/ + Kext Version: 1 + Load Address: 18446741874811382000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCDPProxy: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SCDPProxy + Loaded: Yes + Get Info String: Copyright © 2016-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SCDPProxy.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874815027000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEventLogHandler: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEventLogHandler + Loaded: Yes + Get Info String: Copyright © 2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEventLogHandler.kext/ + Kext Version: 1 + Load Address: 18446741874807935000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB VHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCIRSM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBVHCIRSM.kext/ + Kext Version: 1.2 + Load Address: 18446741874814829000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTypeCRetimer: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTypeCRetimer + Loaded: Yes + Get Info String: AppleTypeCRetimer version 1.0.0, Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCRetimer.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811120000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SoftRAID: + + Version: 8.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SoftRAID + Loaded: Yes + Get Info String: SoftRAID version 8.5, Copyright © 2002-23 Other World Computing, Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/SoftRAID.kext/ + Kext Version: 8.5 + Load Address: 18446741874815203000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + lifs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.lifs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/lifs.kext/ + Kext Version: 1 + Load Address: 18446741874816043000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAudioFamily: + + Version: 600.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAudioFamily + Loaded: Yes + Get Info String: IOAudioFamily 600.2, Copyright © 2000-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAudioFamily.kext/ + Kext Version: 600.2 + Load Address: 18446741874813037000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + msdosfs: + + Version: 1.10 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.msdosfs + Loaded: Yes + Get Info String: 1.10, Copyright © 2000-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/msdosfs.kext/ + Kext Version: 1.10 + Load Address: 18446741874816063000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-IOUserDockChannelSerial: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-IOUserDockChannelSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-IOUserDockChannelSerial.dext/ + Kext Version: 1 + Load Address: 245 + Loadable: Yes + Dependencies: Satisfied + Description: Dock Channel Serial Interface Driver + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-IOUserDockChannelSerial, TeamID: @apple + + AppleThunderboltPCIUpAdapter: + + Version: 4.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltPCIUpAdapter + Loaded: Yes + Get Info String: AppleThunderboltPCIAdapters version 4.1.1, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltPCIAdapters.kext/Contents/PlugIns/AppleThunderboltPCIUpAdapter.kext/ + Kext Version: 4.1.1 + Load Address: 18446741874810920000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreStorageFsck: + + Version: 559 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreStorageFsck + Loaded: Yes + Get Info String: CoreStorage 1.0, Copyright © 2010 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreStorage.kext/Contents/PlugIns/CoreStorageFsck.kext/ + Kext Version: 559 + Load Address: 18446741874811453000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleStockholmControl: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleStockholmControl + Loaded: Yes + Get Info String: Copyright © 2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStockholmControl.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810081000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBNetworking: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.networking + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBNetworking.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811208000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Libkern Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.libkern + Loaded: Yes + Get Info String: Libkern Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Libkern.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AudioDMAController_T8122: + + Version: 440.40 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AudioDMAController-T8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AudioDMAController_T8122.kext/ + Kext Version: 440.40 + Load Address: 18446741874811234000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBDeviceMux: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBDeviceMux + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBDeviceMux.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874811169000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Unsupported Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.unsupported + Loaded: Yes + Get Info String: Unsupported Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Unsupported.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOVideoFamily: + + Version: 1.2.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOVideoFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOVideoFamily.kext/ + Kext Version: 1.2.1 + Load Address: 18446741874814930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + corecapture: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.corecapture + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/corecapture.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874815902000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122.kext/ + Kext Version: 1 + Load Address: 18446741874810186000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBLightningAdapter: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBLightningAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBLightningAdapter.kext/ + Kext Version: 1 + Load Address: 18446741874811193000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCSEmbeddedAudio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCSEmbeddedAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCSEmbeddedAudio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807452000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.driver.usb.AppleUSBHostPlatformProperties: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostPlatformProperties + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostPlatformProperties.kext/ + Kext Version: 1.2 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit.AppleUserECM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit.AppleUserECM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit.AppleUserECM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit.AppleUserECM, TeamID: @apple + + IOFireWireAVC: + + Version: 4.2.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireAVC + Loaded: Yes + Get Info String: IOFireWireAVC version 4.2.8, Copyright © 2011-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireAVC.kext/ + Kext Version: 4.2.8 + Load Address: 18446741874813268000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreAnalyticsFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.CoreAnalyticsFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreAnalyticsFamily.kext/ + Kext Version: 1 + Load Address: 18446741874811390000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + L2TP: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.l2tp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/L2TP.kext/ + Kext Version: 1.9 + Load Address: 18446741874814937000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHostiOSDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostiOSDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostiOSDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874814763000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBECM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.ecm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBECM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811180000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCDC: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCDC.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811150000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBEthernetHost: + + Version: 8.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.macos.driver.AppleUSBEthernetHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBEthernetHost.kext/ + Kext Version: 8.1.1 + Load Address: 18446741874811187000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleIISController: + + Version: 440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleIISController + Loaded: Yes + Get Info String: Copyright © 2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleIISController.kext/ + Kext Version: 440.2 + Load Address: 18446741874808530000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysMIPIDSI: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSynopsysMIPIDSI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSynopsysMIPIDSI.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810132000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8940XI2C: + + Version: 1.0.0d2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8940XI2C + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8940XI2C.kext/ + Kext Version: 1.0.0d2 + Load Address: 18446741874809756000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBSerial: + + Version: 6.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.serial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBSerial.kext/ + Kext Version: 6.0.0 + Load Address: 18446741874811220000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Graphics Family: + + Version: 599 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGraphicsFamily + Loaded: Yes + Get Info String: 599, Copyright 2000-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGraphicsFamily.kext/ + Kext Version: 599 + Load Address: 18446741874813356000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT6020PCIeCPIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT6020PCIeCPIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT6020PCIeCPIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874810161000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPOutAdapter: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPOutAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPOutAdapter.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810368000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleA7IOP-MXWrap-v1: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP-MXWrap-v1 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP-MXWrap-v1.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleInterruptControllerV3: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleInterruptControllerV3 + Loaded: Yes + Get Info String: Copyright © 2009-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleInterruptControllerV3.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874808609000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleOLYHAL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleOLYHAL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleOLYHAL.kext/ + Kext Version: 1 + Load Address: 18446741874809512000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PCIe: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PCIe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PCIe.kext/ + Kext Version: 1 + Load Address: 18446741874810233000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB EHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBEHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCIPCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814743000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IODARTFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IODARTFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODARTFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813184000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBRecoveryHost: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBRecoveryHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBRecoveryHost.kext/ + Kext Version: 1.2 + Load Address: 18446741874814788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SanyoIDShot Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SanyoIDShot + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2004-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/SanyoIDShot.kext/ + Kext Version: 556 + Load Address: 18446741874810122000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreKDL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CoreKDL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreKDL.kext/ + Kext Version: 1 + Load Address: 18446741874811406000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOGameControllerFamily: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGameControllerFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGameControllerFamily.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874813346000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtionFirmware: + + Version: 1.0.36 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleEthernetAquantiaAqtionFirmware + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtionFirmware.kext/ + Kext Version: 1.0.36 + Load Address: 18446741874813676000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBFTDI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBFTDI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBFTDI.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBFTDI, TeamID: @apple + + AppleBiometricSensor: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBiometricSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBiometricSensor.kext/ + Kext Version: 2 + Load Address: 18446741874807364000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleBCMWLAN: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleBCMWLAN + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleBCMWLAN.dext/ + Kext Version: 1 + Load Address: 243 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleBCMWLAN, TeamID: @apple + + ApplePMP: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMP.kext/ + Kext Version: 1 + Load Address: 18446741874809608000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + cd9660: + + Version: 1.4.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.cd9660 + Loaded: Yes + Get Info String: 1.4.4, Copyright © 1999-2012 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/cd9660.kext/ + Kext Version: 1.4.4 + Load Address: 18446741874815891000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUSBUpAdapter: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUSBUpAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUSBAdapters.kext/Contents/PlugIns/AppleThunderboltUSBUpAdapter.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874810943000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IODisplayPortFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IODisplayPortFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODisplayPortFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813196000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothHIDKeyboard: + + Version: 8010.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothHIDKeyboard + Loaded: Yes + Get Info String: 8 010,1 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoothHIDKeyboard.kext/ + Kext Version: 8010.1 + Load Address: 18446741874808353000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/Contents/PlugIns/AppleUSBHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808360000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB XHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBXHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814835000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAccessoryPortUSB: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAccessoryPortUSB + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAccessoryPortUSB.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813030000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMPlatform: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMPlatform + Loaded: Yes + Get Info String: Copyright © 2009 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMPlatform.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874805074000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFWOHCI: + + Version: 5.7.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFWOHCI + Loaded: Yes + Get Info String: AppleFWOHCI version 5.7.5, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/AppleFWOHCI.kext/ + Kext Version: 5.7.5 + Load Address: 18446741874813286000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransport: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransport + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808363000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + webcontentfilter: + + Version: 5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.webcontentfilter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/webcontentfilter.kext/ + Kext Version: 5 + Load Address: 18446741874816252000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleIPAppender: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleIPAppender + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleIPAppender.kext/ + Kext Version: 1.0 + Load Address: 18446741874808535000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMRPPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOMRPPlugin + Loaded: Yes + Get Info String: IOMRPPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOMRPPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812720000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCMWLANCore: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBCMWLANCore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBCMWLANCore.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874806860000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + MAC Framework Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.dsep + Loaded: Yes + Get Info String: MAC Framework Pseudoextension, SPARTA Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/MACFramework.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBTM: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBTM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBTM.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874807343000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBHostBillboardDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostBillboardDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostBillboardDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874814750000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltEDMService: + + Version: 5.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltEDMService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltEDMService.kext/ + Kext Version: 5.0.3 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSystemPolicy: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleSystemPolicy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSystemPolicy.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874810149000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleGameControllerPersonality: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleGameControllerPersonality + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleGameControllerPersonality.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874807996000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePassthroughPPM: + + Version: 3.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePassthroughPPM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePassthroughPPM.kext/ + Kext Version: 3.0 + Load Address: 18446741874809618000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFirmwareUpdateKext: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFirmwareUpdateKext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFirmwareUpdateKext.kext/ + Kext Version: 1 + Load Address: 18446741874807986000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSerialBusProtocolSansPhysicalUnit Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/IOFireWireSerialBusProtocolSansPhysicalUnit.kext/ + Kext Version: 556 + Load Address: 18446741874810116000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUVDM: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUVDM + Loaded: Yes + Get Info String: Copyright © 2022-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUVDM.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811222000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOVideoDeviceUserClient: + + Version: 1.2.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOVideoDeviceUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOVideoFamily.kext/Contents/PlugIns/IOVideoDeviceUserClient.kext/ + Kext Version: 1.2.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableBlockDevice: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableBlockDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableBlockDevice.kext/ + Kext Version: 1.0 + Load Address: 18446741874807783000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTopCaseHIDEventDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTopCaseHIDEventDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleTopCaseHIDEventDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810966000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransportFIFO: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransportFIFO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/Contents/PlugIns/AppleHIDTransportFIFO.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808412000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUSBDownAdapter: + + Version: 1.0.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUSBDownAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUSBAdapters.kext/Contents/PlugIns/AppleThunderboltUSBDownAdapter.kext/ + Kext Version: 1.0.4 + Load Address: 18446741874810940000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBMassStorageInterfaceNub: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBMassStorageInterfaceNub + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2008-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBMassStorageInterfaceNub.kext/ + Kext Version: 556 + Load Address: 18446741874810106000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Regular Expression Matching Engine: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.AppleMatch + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMatch.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809280000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleConvergedPCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleConvergedPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleConvergedPCI.kext/ + Kext Version: 1 + Load Address: 18446741874807497000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLockdownMode: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLockdownMode + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLockdownMode.kext/ + Kext Version: 1 + Load Address: 18446741874808685000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBControlPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBControlPlugin + Loaded: Yes + Get Info String: IOAVBControlPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBControlPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812666000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit PCI Family: + + Version: 2.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOPCIFamily + Loaded: Yes + Get Info String: 2.9, Copyright © 2000-2011 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOPCIFamily.kext/ + Kext Version: 2.9 + Load Address: 18446741874813694000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleQSPIMC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleQSPIMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleQSPIMC.kext/ + Kext Version: 1 + Load Address: 18446741874809735000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothModule: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothModule + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothModule.kext/ + Kext Version: 1 + Load Address: 18446741874807423000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSlowAdaptiveClockingFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSlowAdaptiveClockingFamily + Loaded: Yes + Get Info String: Copyright © 2014 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSlowAdaptiveClockingFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813786000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + InvalidateHmac: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.InvalidateHmac + Loaded: Yes + Get Info String: Copyright © 2019-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/InvalidateHmac.kext/ + Kext Version: 1 + Load Address: 18446741874814933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPIMC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPIMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPIMC.kext/ + Kext Version: 1 + Load Address: 18446741874809954000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltPCIDownAdapter: + + Version: 4.1.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltPCIDownAdapter + Loaded: Yes + Get Info String: AppleThunderboltPCIAdapters version 4.1.1, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltPCIAdapters.kext/Contents/PlugIns/AppleThunderboltPCIDownAdapter.kext/ + Kext Version: 4.1.1 + Load Address: 18446741874810915000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB EHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBEHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814708000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileDevice: + + Version: 4.0 + Last Modified: 30.01.2025, 10:47 + Bundle ID: com.apple.driver.AppleMobileDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /Library/Apple/System/Library/Extensions/AppleMobileDevice.kext/ + Kext Version: 4.0 + Loadable: Yes + Dependencies: Satisfied + + AppleJPEGDriver: + + Version: 7.6.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleJPEGDriver + Loaded: Yes + Get Info String: Copyright © 2016-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleJPEGDriver.kext/ + Kext Version: 7.6.8 + Load Address: 18446741874808613000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleRSMChannel: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleRSMChannel + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleRSMChannel.kext/ + Kext Version: 1 + Load Address: 18446741874809750000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMesaSEPDriver: + + Version: 100.99 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMesaSEPDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMesaSEPDriver.kext/ + Kext Version: 100.99 + Load Address: 18446741874809283000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFileSystemDriver: + + Version: 3.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFileSystemDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFileSystemDriver.kext/ + Kext Version: 3.0.1 + Load Address: 18446741874807966000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + pthread: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.pthread + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/pthread.kext/ + Kext Version: 1 + Load Address: 18446741874816109000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AUC: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AUC + Loaded: Yes + Get Info String: AUC 1.0 Copyright 2017, Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AUC.kext/ + Kext Version: 1.0 + Load Address: 18446741874804924000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTypeCPhy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTypeCPhy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCPhy.kext/ + Kext Version: 1 + Load Address: 18446741874811011000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTCA7408GPIOIC: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTCA7408GPIOIC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTCA7408GPIOIC.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874810298000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + PPP: + + Version: 1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.ppp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/PPP.kext/ + Kext Version: 1.9 + Load Address: 18446741874814970000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + vecLib: + + Version: 1.2.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.vecLib.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/vecLib.kext/ + Kext Version: 1.2.0 + Load Address: 18446741874816250000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Image4: + + Version: 7.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.AppleImage4 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleImage4.kext/ + Kext Version: 7.0.0 + Load Address: 18446741874808537000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKit USB host family: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBHostFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/ + Kext Version: 1.2 + Load Address: 18446741874814527000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + autofs: + + Version: 3.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.autofs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/autofs.kext/ + Kext Version: 3.0 + Load Address: 18446741874815885000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothRemote: + + Version: 7000.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothRemote + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothRemote.kext/ + Kext Version: 7000.2 + Load Address: 18446741874807443000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit CD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813176000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Quarantine policy: + + Version: 4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.quarantine + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Quarantine.kext/ + Kext Version: 4 + Load Address: 18446741874814982000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDCPDPTXProxy: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDCPDPTXProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDCPDPTXProxy.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807636000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122CLPC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122CLPC + Loaded: Yes + Get Info String: Copyright © 2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122CLPC.kext/ + Kext Version: 1 + Load Address: 18446741874810214000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPTX: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPTX + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPTX.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807665000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetIXGBE: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetIXGBE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetIXGBE.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetIXGBE, TeamID: @apple + + AppleARMIISAudio: + + Version: 440.17 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleARMIISAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMIISAudio.kext/ + Kext Version: 440.17 + Load Address: 18446741874805037000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBUserHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBUserHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBUserHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814794000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImages2: + + Version: 385.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDiskImages2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDiskImages2.kext/ + Kext Version: 385.101.1 + Load Address: 18446741874807718000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAHCIFamily: + + Version: 308 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAHCIFamily + Loaded: Yes + Get Info String: Version 308, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAHCIFamily.kext/ + Kext Version: 308 + Load Address: 18446741874812570000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAVD: + + Version: 862 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAVD + Loaded: Yes + Get Info String: AppleAVD 862 Copyright © 2016-2022 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAVD.kext/ + Kext Version: 862 + Load Address: 18446741874805146000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleActuatorDriver: + + Version: 8440.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleActuatorDriver + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleActuatorDriver.kext/ + Kext Version: 8440.1 + Load Address: 18446741874806755000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAHCI: + + Version: 384 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAHCIPort + Loaded: Yes + Get Info String: Version 384, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAHCIPort.kext/ + Kext Version: 384 + Load Address: 18446741874804939000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + iPod Driver: + + Version: 1.7.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.iPodSBCDriver + Loaded: Yes + Get Info String: iPod Driver 1.7.0, Copyright 2001-2012 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/iPodDriver.kext/Contents/PlugIns/iPodSBCDriver.kext/ + Kext Version: 1.7.0 + Load Address: 18446741874816040000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMobileGraphicsFamily: + + Version: 343.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOMobileGraphicsFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOMobileGraphicsFamily.kext/ + Kext Version: 343.0.0 + Load Address: 18446741874813514000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMCA2_T8122: + + Version: 940.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMCA2-T8122 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMCA2_T8122.kext/ + Kext Version: 940.3 + Load Address: 18446741874809254000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBStreamingPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBStreamingPlugin + Loaded: Yes + Get Info String: IOAVBStreamingPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBStreamingPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812688000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCommon: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBCommon + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/ + Kext Version: 1.0 + Load Address: 18446741874811152000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLMBacklight: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLMBacklight + Loaded: Yes + Get Info String: Copyright © 2011 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLMBacklight.kext/ + Kext Version: 1 + Load Address: 18446741874808666000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPInAdapter: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPInAdapter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPInAdapter.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810358000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + asp_tcp: + + Version: 9.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.nke.asp_tcp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/asp_tcp.kext/ + Kext Version: 9.1 + Load Address: 18446741874815873000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedAudioLibs: + + Version: 420.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedAudioLibs + Loaded: Yes + Get Info String: Copyright © 2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudioLibs.kext/ + Kext Version: 420.3 + Load Address: 18446741874807853000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4387_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4387.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4387_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811265000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPGenericTransfer: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleSEPGenericTransfer + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPGenericTransfer.kext/ + Kext Version: 1 + Load Address: 18446741874809836000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + HFS: + + Version: 683.100.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.hfs.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/HFS.kext/ + Kext Version: 683.100.9 + Load Address: 18446741874811822000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMultitouchDriver: + + Version: 8440.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMultitouchDriver + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMultitouchDriver.kext/ + Kext Version: 8440.1 + Load Address: 18446741874809490000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + acfs: + + Version: 589 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.acfs + Loaded: Yes + Get Info String: 589 (6.0.5), Copyright © 2005-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/acfs.kext/ + Kext Version: 589 + Load Address: 18446741874815216000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBCardReader: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBCardReader + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2009-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBCardReader.kext/ + Kext Version: 556 + Load Address: 18446741874810100000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXFirmwareKextG15GRTBuddy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXFirmwareKextG15GRTBuddy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXFirmwareKextG15GRTBuddy.kext/ + Kext Version: 1 + Load Address: 18446741874804834000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB VHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBVHCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814810000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCSITaskUserClient: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.SCSITaskUserClient + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813760000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFSCompressionTypeZlib: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleFSCompression.AppleFSCompressionTypeZlib + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFSCompressionTypeZlib.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807950000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOCECFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCECFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCECFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813178000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8960XNCO: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8960XNCO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8960XNCO.kext/ + Kext Version: 1 + Load Address: 18446741874809760000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDisplayCrossbar: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDisplayCrossbar + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDisplayCrossbar.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807734000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + StorageLynx Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.StorageLynx + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/StorageLynx.kext/ + Kext Version: 556 + Load Address: 18446741874810124000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImageDriver: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813400000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTopCaseDriverV2: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTopCaseDriverV2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleTopCaseDriverV2.kext/ + Kext Version: 8420.1 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarter: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/ + Kext Version: 3 + Load Address: 18446741874807341000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMPMU: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMPMU + Loaded: Yes + Get Info String: Copyright © 2009 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMPMU.kext/ + Kext Version: 1.0 + Load Address: 18446741874805060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4378_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4378.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4378_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811249000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCM5701Ethernet: + + Version: 11.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.AppleBCM5701Ethernet + Loaded: Yes + Get Info String: Apple Broadcom 57XX Ethernet 11.0.0, Copyright 2002-2013 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleBCM5701Ethernet.kext/ + Kext Version: 11.0.0 + Load Address: 18446741874813626000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEncryptedArchive: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.AppleEncryptedArchive + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEncryptedArchive.kext/ + Kext Version: 1 + Load Address: 18446741874807933000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleProResHW: + + Version: 475.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleProResHW + Loaded: Yes + Get Info String: Copyright Apple Computer, Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleProResHW.kext/ + Kext Version: 475.2 + Load Address: 18446741874809686000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHPM: + + Version: 3.4.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHPM + Loaded: Yes + Get Info String: AppleHPM version 3.4.4, Copyright © 2014-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHPM.kext/ + Kext Version: 3.4.4 + Load Address: 18446741874808460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAOPVoiceTrigger: + + Version: 440.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAOPVoiceTrigger + Loaded: Yes + Get Info String: 440.4, Copyright Apple Computer, Inc. 2015 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAOPVoiceTrigger.kext/ + Kext Version: 440.4 + Load Address: 18446741874805020000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOReportFamily: + + Version: 47 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOReportFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOReportFamily.kext/ + Kext Version: 47 + Load Address: 18446741874813737000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB Composite Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostCompositeDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostCompositeDevice.kext/ + Kext Version: 1.2 + Load Address: 18446741874814753000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBNCM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.ncm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBNCM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811202000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + EndpointSecurity: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.EndpointSecurity + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/EndpointSecurity.kext/ + Kext Version: 1 + Load Address: 18446741874811484000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePMGR: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMGR + Loaded: Yes + Get Info String: Copyright © 2014 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMGR.kext/ + Kext Version: 1 + Load Address: 18446741874809547000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleStorageDrivers: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleStorageDrivers + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 1999-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + USBStorageDeviceSpecifics: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.USBStorageDeviceSpecifics + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 1999-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/USBStorageDeviceSpecifics.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit HID System: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDSystem + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDSystem.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PMGR: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PMGR + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PMGR.kext/ + Kext Version: 1 + Load Address: 18446741874810274000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + afpfs: + + Version: 11.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.afpfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/afpfs.kext/ + Kext Version: 11.5 + Load Address: 18446741874815460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IO80211Family: + + Version: 1200.13.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IO80211Family + Loaded: Yes + Get Info String: 12.0, Copyright © 2005-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IO80211Family.kext/ + Kext Version: 1200.13.1 + Load Address: 18446741874811880000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBEthernet: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.ethernet.asix + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBEthernet.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811183000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireFamily: + + Version: 4.8.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireFamily + Loaded: Yes + Get Info String: IOFireWireFamily version 4.8.3, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireFamily.kext/ + Kext Version: 4.8.3 + Load Address: 18446741874813272000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Seatbelt sandbox policy: + + Version: 300.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.sandbox + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Sandbox.kext/ + Kext Version: 300.0 + Load Address: 18446741874815040000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CoreTrust: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.CoreTrust + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/CoreTrust.kext/ + Kext Version: 1 + Load Address: 18446741874811460000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesReadWriteDiskImage: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.ReadWriteDiskImage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesReadWriteDiskImage.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813413000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXG15G Graphics Kernel Extension: + + Version: 325.34.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXG15G + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXG15G.kext/ + Kext Version: 325.34.1 + Load Address: 18446741874804855000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + UVCService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.UVCService + Loaded: Yes + Get Info String: Copyright © 2019-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/UVCService.kext/ + Kext Version: 1 + Load Address: 18446741874815214000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBTDM: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBTDM + Loaded: Yes + Get Info String: 556, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBTDM.kext/ + Kext Version: 556 + Load Address: 18446741874810110000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + corecrypto: + + Version: 14.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.corecrypto + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/corecrypto.kext/ + Kext Version: 14.0 + Load Address: 18446741874815930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetIXL: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetIXL + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetIXL.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetIXL, TeamID: @apple + + BSD Kernel Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.bsd + Loaded: Yes + Get Info String: BSD Kernel Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/BSDKernel.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit USB Family: + + Version: 900.4.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBFamily + Loaded: Yes + Get Info String: 900.4.2, Copyright © 2000-2015 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBFamily.kext/ + Kext Version: 900.4.2 + Load Address: 18446741874814511000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleXsanScheme: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleXsanScheme + Loaded: Yes + Get Info String: 17, Copyright © 2005-2009, 2014-2015 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleXsanScheme.kext/ + Kext Version: 3 + Load Address: 18446741874811230000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ExclavesAudioKext: + + Version: 240.34 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ExclavesAudioKext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ExclavesAudioKext.kext/ + Kext Version: 240.34 + Load Address: 18446741874811537000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCallbackPowerSource: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCallbackPowerSource + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCallbackPowerSource.kext/ + Kext Version: 1 + Load Address: 18446741874807456000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSmartIO2: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSmartIO2 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSmartIO2.kext/ + Kext Version: 1 + Load Address: 18446741874810060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedUSBHost: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedUSBHost + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedUSBHost.kext/ + Kext Version: 1 + Load Address: 18446741874807930000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808355000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Networking Family: + + Version: 3.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IONetworkingFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/ + Kext Version: 3.4 + Load Address: 18446741874813620000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + QPSQueFire Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.QPSQueFire + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/QPSQueFire.kext/ + Kext Version: 556 + Load Address: 18446741874810120000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtion: + + Version: 1.0.64 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEthernetAquantiaAqtion + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtion.kext/ + Kext Version: 1.0.64 + Load Address: 18446741874813645000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSBP2: + + Version: 4.4.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireSBP2 + Loaded: Yes + Get Info String: IOFireWireSBP2 version 4.4.3, Copyright © 2000-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireSBP2.kext/ + Kext Version: 4.4.3 + Load Address: 18446741874813300000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleTrustedAccessory: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleTrustedAccessory + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTrustedAccessory.kext/ + Kext Version: 1 + Load Address: 18446741874810978000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + webdav_fs: + + Version: 3.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.webdav + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/webdav_fs.kext/ + Kext Version: 3.0.1 + Load Address: 18446741874816258000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAOPAudio: + + Version: 440.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAOPAudio + Loaded: Yes + Get Info String: 440.12, Copyright Apple Computer, Inc. 2015 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAOPAudio.kext/ + Kext Version: 440.12 + Load Address: 18446741874804967000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOCryptoAcceleratorFamily: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOCryptoAcceleratorFamily + Loaded: Yes + Get Info String: Crypto Accelerator Family + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOCryptoAcceleratorFamily.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874813180000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPHDCPManager: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPHDCPManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPHDCPManager.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809842000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserEthernet: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUserEthernet + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUserEthernet.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874814925000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSMC: + + Version: 3.1.9 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSMC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSMC.kext/ + Kext Version: 3.1.9 + Load Address: 18446741874809917000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothHIDMouse: + + Version: 199 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothHIDMouse + Loaded: Yes + Get Info String: 199 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDMouse.kext/Contents/PlugIns/AppleBluetoothHIDMouse.kext/ + Kext Version: 199 + Load Address: 18446741874808357000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesKernelBacked: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.KernelBacked + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesKernelBacked.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813410000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableNOR: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableNOR + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableNOR.kext/ + Kext Version: 1.0 + Load Address: 18446741874807785000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleGPIOICController: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleGPIOICController + Loaded: Yes + Get Info String: Copyright © 2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleGPIOICController.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874807990000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-UVCUserService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-UVCUserService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-UVCUserService.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-UVCUserService, TeamID: @apple + + I/O Kit HID Event Driver Safe Boot: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDEventDriverSafeBoot + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriverSafeBoot.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUSBDeviceFamily: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBDeviceFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874814420000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCS42L84Audio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCS42L84Audio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/Contents/PlugIns/AppleCS42L84Audio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807828000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + RTBuddy: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.RTBuddy + Loaded: Yes + Get Info String: Copyright © 2014-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/RTBuddy.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874814986000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Legacy Properties Applier for USB Services: + + Version: 900.4.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBMergeNub + Loaded: Yes + Get Info String: 900.4.2, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBMergeNub.kext/ + Kext Version: 900.4.2 + Load Address: 18446741874814786000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOPortFamily: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOPortFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOPortFamily.kext/ + Kext Version: 1.0 + Load Address: 18446741874813719000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysUSBXHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleSynopsysUSBXHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleSynopsysUSBXHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814670000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB Hubs: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHub + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHub.kext/ + Kext Version: 1.2 + Load Address: 18446741874814765000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDTransportSPI: + + Version: 8440.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDTransportSPI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDTransport.kext/Contents/PlugIns/AppleHIDTransportSPI.kext/ + Kext Version: 8440.2 + Load Address: 18446741874808426000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleM68Buttons: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleM68Buttons + Loaded: Yes + Get Info String: Copyright © 2015 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleM68Buttons.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809231000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit HID Event Driver: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDEventDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDEventDriver.kext/ + Kext Version: 2.0.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT6020PCIePIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT6020PCIePIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT6020PCIePIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874810165000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetMLX5: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetMLX5 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetMLX5.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetMLX5, TeamID: @apple + + AppleUSBDeviceNCM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBDeviceNCM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBDeviceNCM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811175000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOStreamUserClient: + + Version: 1.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStreamUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStreamFamily.kext/Contents/PlugIns/IOStreamUserClient.kext/ + Kext Version: 1.1.0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBiometricServices: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBiometricServices + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBiometricServices.kext/ + Kext Version: 1 + Load Address: 18446741874807410000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + apfs: + + Version: 2332.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.apfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/apfs.kext/ + Kext Version: 2332.101.1 + Load Address: 18446741874815513000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarterTMPFS: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarterTMPFS + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/Contents/PlugIns/AppleBSDKextStarterTMPFS.kext/ + Kext Version: 1 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDialogPMU: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDialogPMU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDialogPMU.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874807716000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPDisplayTCON: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPDisplayTCON + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPDisplayTCON.kext/ + Kext Version: 1 + Load Address: 18446741874807644000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB XHCI Controllers: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBXHCIPCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCIPCI.kext/ + Kext Version: 1.2 + Load Address: 18446741874814884000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFSCompressionTypeDataless: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AppleFSCompression.AppleFSCompressionTypeDataless + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFSCompressionTypeDataless.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874807945000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBTopCaseDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBTopCaseDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleUSBTopCaseDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810976000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleARMWatchdogTimer: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleARMWatchdogTimer + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleARMWatchdogTimer.kext/ + Kext Version: 1 + Load Address: 18446741874805140000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBXDCIARM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBXDCIARM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/Contents/PlugIns/AppleUSBXDCIARM.kext/ + Kext Version: 1.0 + Load Address: 18446741874814474000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBACM: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.cdc.acm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBACM.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811134000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IONVMeFamily: + + Version: 2.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IONVMeFamily + Loaded: Yes + Get Info String: 2.1.0, Copyright © 2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONVMeFamily.kext/ + Kext Version: 2.1.0 + Load Address: 18446741874813550000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSurface: + + Version: 372.5.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSurface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSurface.kext/ + Kext Version: 372.5.2 + Load Address: 18446741874813798000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIBlockCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIBlockCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIBlockCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813747000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + DCPAVFamilyProxy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DCPAVFamilyProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/DCPAVFamilyProxy.kext/ + Kext Version: 1 + Load Address: 18446741874811466000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOThunderboltFamily: + + Version: 9.3.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOThunderboltFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOThunderboltFamily.kext/ + Kext Version: 9.3.3 + Load Address: 18446741874813825000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothDebug: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothDebug + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothDebug.kext/ + Kext Version: 1 + Load Address: 18446741874807413000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS8000DWI: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS8000DWI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS8000DWI.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809768000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IISAudioIsolatedStreamECProxy: + + Version: 440.17 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IISAudioIsolatedStreamECProxy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IISAudioIsolatedStreamECProxy.kext/ + Kext Version: 440.17 + Load Address: 18446741874811875000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDockChannel: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDockChannel + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDockChannel.kext/ + Kext Version: 1 + Load Address: 18446741874807777000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IORSMFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IORSMFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IORSMFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813735000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOTimeSyncFamily: + + Version: 1340.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOTimeSyncFamily + Loaded: Yes + Get Info String: IOTimeSyncFamily 1340.12, Copyright © 2010-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTimeSyncFamily.kext/ + Kext Version: 1340.12 + Load Address: 18446741874814233000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Storage Family: + + Version: 2.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStorageFamily.kext/ + Kext Version: 2.1 + Load Address: 18446741874813788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableTDM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableTDM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableTDM.kext/ + Kext Version: 1.0 + Load Address: 18446741874807796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUSBMassStorageDriver: + + Version: 259.100.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOUSBMassStorageDriver + Loaded: Yes + Get Info String: 259.100.1, Copyright © 2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBMassStorageDriver.kext/ + Kext Version: 259.100.1 + Load Address: 18446741874814910000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSmartBatteryManagerKEXT: + + Version: 161.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSmartBatteryManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSmartBatteryManager.kext/ + Kext Version: 161.0.0 + Load Address: 18446741874810034000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesRAMBackingStore: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.RAMBackingStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesRAMBackingStore.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813411000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBODD: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBODD + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2007-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/AppleUSBODD.kext/ + Kext Version: 556 + Load Address: 18446741874810108000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePMPFirmware: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePMPFirmware + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePMPFirmware.kext/ + Kext Version: 1 + Load Address: 18446741874809616000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSN012776Amp: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSN012776Amp + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/Contents/PlugIns/AppleSN012776Amp.kext/ + Kext Version: 840.26 + Load Address: 18446741874807850000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Apple M2 Scaler and Color Space Converter Driver: + + Version: 265.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleM2ScalerCSCDriver + Loaded: Yes + Get Info String: 9.0.5, Copyright Apple Inc. 2007-2023 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleM2ScalerCSC.kext/ + Kext Version: 265.0.0 + Load Address: 18446741874808705000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHIDALSService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHIDALSService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleHIDALSService.kext/ + Kext Version: 1 + Load Address: 18446741874808345000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBRealtek8153Patcher: + + Version: 5.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.realtek8153patcher + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBRealtek8153Patcher.kext/ + Kext Version: 5.0.0 + Load Address: 18446741874811210000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Oxford Semiconductor Bridge Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.Oxford_Semi + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/OxfordSemiconductor.kext/ + Kext Version: 556 + Load Address: 18446741874810118000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BootCache: + + Version: 40 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.BootCache + Loaded: Yes + Get Info String: Copyright © 2001-2008 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BootCache.kext/ + Kext Version: 40 + Load Address: 18446741874811374000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS5L8920XPWM: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS5L8920XPWM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS5L8920XPWM.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874809754000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedAudio: + + Version: 840.26 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedAudio + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedAudio.kext/ + Kext Version: 840.26 + Load Address: 18446741874807796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + XboxGamepad: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.gamecontroller.driver.XboxGamepad + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/XboxGamepad.dext/ + Kext Version: 12.4.12 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.gamecontroller.driver.XboxGamepad, TeamID: @apple + + HFSEncodings: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.hfs.encodings.kext + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/HFSEncodings.kext/ + Kext Version: 1 + Load Address: 18446741874811873000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AGXFirmwareKextRTBuddy64: + + Version: 325.34.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.AGXFirmwareKextRTBuddy64 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AGXFirmwareKextRTBuddy64.kext/ + Kext Version: 325.34.1 + Load Address: 18446741874804838000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + CanonEOS1D Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.CanonEOS1D + Loaded: Yes + Get Info String: 556 Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/CanonEOS1D.kext/ + Kext Version: 556 + Load Address: 18446741874810114000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBluetoothHIDDriver: + + Version: 9.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.IOBluetoothHIDDriver + Loaded: Yes + Get Info String: 9.0.0, Copyright © 2002-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBluetoothHIDDriver.kext/ + Kext Version: 9.0.0 + Load Address: 18446741874813139000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltUTDM: + + Version: 3.0.7 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltUTDM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltUTDM.kext/ + Kext Version: 3.0.7 + Load Address: 18446741874810954000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBVHCICommonRSM: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCICommonRSM + Loaded: Yes + Get Info String: 1.0, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/Contents/PlugIns/AppleUSBVHCICommonRSM.kext/ + Kext Version: 1.0 + Load Address: 18446741874811160000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + nfs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.nfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/nfs.kext/ + Kext Version: 1 + Load Address: 18446741874816070000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Mach Kernel Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.mach + Loaded: Yes + Get Info String: Mach Kernel Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Mach.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOMobileGraphicsFamily-DCP: + + Version: 343.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOMobileGraphicsFamily-DCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOMobileGraphicsFamily-DCP.kext/ + Kext Version: 343.0.0 + Load Address: 18446741874813483000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSART: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSART + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSART.kext/ + Kext Version: 1 + Load Address: 18446741874809770000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUVDMDriver: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUVDMDriver + Loaded: Yes + Get Info String: Copyright © 2022-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUVDMDriver.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874811224000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleH11ANEInterface: + + Version: 8.510.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleH11ANEInterface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleH11ANEInterface.kext/ + Kext Version: 8.510.0 + Load Address: 18446741874807998000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOFireWireSerialBusProtocolTransport: + + Version: 2.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOFireWireSerialBusProtocolTransport + Loaded: Yes + Get Info String: 2.5.1, Copyright Apple Inc. 1999-2011 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOFireWireSerialBusProtocolTransport.kext/ + Kext Version: 2.5.1 + Load Address: 18446741874813303000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8110DART: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8110DART + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8110DART.kext/ + Kext Version: 1 + Load Address: 18446741874810173000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + LSI FW-500 Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.LSI_FW_500 + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/LSI-FW-500.kext/ + Kext Version: 556 + Load Address: 18446741874810116000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-Apple16X50PCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-Apple16X50PCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-Apple16X50PCI.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-Apple16X50PCI, TeamID: @apple + + smbfs: + + Version: 6.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.smbfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/smbfs.kext/ + Kext Version: 6.0 + Load Address: 18446741874816113000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB HID Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.IOUSBHostHIDDeviceSafeBoot + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/IOUSBHostHIDDeviceSafeBoot.kext/ + Kext Version: 1.2 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBSDKextStarterVPN: + + Version: 3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBSDKextStarterVPN + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBSDKextStarter.kext/Contents/PlugIns/AppleBSDKextStarterVPN.kext/ + Kext Version: 3 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPKeyStore: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPKeyStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPKeyStore.kext/ + Kext Version: 2 + Load Address: 18446741874809846000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + triggers: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.triggers + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/triggers.kext/ + Kext Version: 1.0 + Load Address: 18446741874816227000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBiometricFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBiometricFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBiometricFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813065000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBXDCI: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBXDCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBDeviceFamily.kext/Contents/PlugIns/AppleUSBXDCI.kext/ + Kext Version: 1.0 + Load Address: 18446741874814440000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUIO.kext: + + Version: 1 + Last Modified: 15.05.2025, 12:38 + Bundle ID: com.apple.driver.AppleUIO + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUIO.kext/ + Kext Version: 1 + Load Address: 18446741874811130000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleCredentialManager: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleCredentialManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleCredentialManager.kext/ + Kext Version: 1.0 + Load Address: 18446741874807527000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBCMWLANBusInterfacePCIe: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBCMWLANBusInterfacePCIe + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBCMWLANBusInterfacePCIe.kext/ + Kext Version: 1 + Load Address: 18446741874806764000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Compression: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.Compression + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Compression.kext/ + Kext Version: 1.0 + Load Address: 18446741874811388000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SCSIDeviceSpecifics: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.SCSIDeviceSpecifics + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2002-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/SCSIDeviceSpecifics.kext/ + Kext Version: 556 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHIDFamily: + + Version: 2.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHIDFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHIDFamily.kext/ + Kext Version: 2.0.0 + Load Address: 18446741874813430000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedTempSensor: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedTempSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedTempSensor.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807917000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesFileBackingStore: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.FileBackingStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesFileBackingStore.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813407000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserBluetoothSerialDriver: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.IOUserBluetoothSerialDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/IOUserBluetoothSerialDriver.dext/ + Kext Version: 1 + Load Address: 247 + Loadable: Yes + Dependencies: Satisfied + Description: + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.IOUserBluetoothSerialDriver, TeamID: @apple + + IOBufferCopyEngineFamily: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBufferCopyEngineFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBufferCopyEngineFamily.kext/ + Kext Version: 1 + Load Address: 18446741874813172000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleH13CameraInterface: + + Version: 9.500.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleH13CameraInterface + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleH13CameraInterface.kext/ + Kext Version: 9.500.0 + Load Address: 18446741874808257000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileApNonce: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileApNonce + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileApNonce.kext/ + Kext Version: 1 + Load Address: 18446741874809317000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSamsungSerial: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSamsungSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSamsungSerial.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874810030000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122PCIeC: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122PCIeC + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleT8122PCIeC.kext/ + Kext Version: 1 + Load Address: 18446741874810245000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleALSColorSensor: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleALSColorSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleALSColorSensor.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874804951000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + exfat: + + Version: 1.4 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.exfat + Loaded: Yes + Get Info String: 1.4, Copyright © 2009-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/exfat.kext/ + Kext Version: 1.4 + Load Address: 18446741874816033000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleHSBluetoothDriver: + + Version: 8420.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleHSBluetoothDriver + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTopCase.kext/Contents/PlugIns/AppleHSBluetoothDriver.kext/ + Kext Version: 8420.1 + Load Address: 18446741874810960000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDAPF: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDAPF + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDAPF.kext/ + Kext Version: 1 + Load Address: 18446741874807626000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltIP: + + Version: 4.0.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltIP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltIP.kext/ + Kext Version: 4.0.3 + Load Address: 18446741874810493000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + ApplePIODMA: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.ApplePIODMA + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/ApplePIODMA.kext/ + Kext Version: 1 + Load Address: 18446741874809543000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEffaceableStorage: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEffaceableStorage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEffaceableStorage.kext/ + Kext Version: 1.0 + Load Address: 18446741874807788000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKit Serial Port Family: + + Version: 11 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSerialFamily + Loaded: Yes + Get Info String: Copyright © 1997-2010 Apple Inc. All rights reserved. IOKit Serial Port Family + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSerialFamily.kext/ + Kext Version: 11 + Load Address: 18446741874813768000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + USB Packet Filter: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBHostPacketFilter + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostPacketFilter.kext/ + Kext Version: 1.0 + Load Address: 18446741874814757000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAHCIBlockStorage: + + Version: 362.100.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAHCIBlockStorage + Loaded: Yes + Get Info String: Version 362.100.1, Copyright © 2005-2019 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/ + Kext Version: 362.100.1 + Load Address: 18446741874812590000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiagnosticDataAccessReadOnly: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDiagnosticDataAccessReadOnly + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDiagnosticDataAccessReadOnly.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874807714000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFDEKeyStore: + + Version: 28.30 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFDEKeyStore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFDEKeyStore.kext/ + Kext Version: 28.30 + Load Address: 18446741874807943000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSynopsysUSB40XHCI: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleSynopsysUSB40XHCI + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleSynopsysUSB40XHCI.kext/ + Kext Version: 1 + Load Address: 18446741874814616000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + iPod Driver: + + Version: 1.7.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.iPodDriver + Loaded: Yes + Get Info String: iPod Driver 1.7.0, Copyright 2001-2012 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/iPodDriver.kext/ + Kext Version: 1.7.0 + Load Address: 18446741874816039000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEthernetAquantiaAqtionPortMonitor: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEthernetAquantiaAqtionPortMonitor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleEthernetAquantiaAqtionPortMonitor.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813678000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleT8122TypeCPhy: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleT8122TypeCPhy + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleTypeCPhy.kext/Contents/PlugIns/AppleT8122TypeCPhy.kext/ + Kext Version: 1 + Load Address: 18446741874811023000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleA7IOP: + + Version: 1.0.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleA7IOP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleA7IOP.kext/ + Kext Version: 1.0.2 + Load Address: 18446741874804935000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleI2CEthernetAquantia: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleI2CEthernetAquantia + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleI2CEthernetAquantia.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813680000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBDiscoveryPlugin: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOAVBDiscoveryPlugin + Loaded: Yes + Get Info String: IOAVBDiscoveryPlugin 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/Contents/PlugIns/IOAVBDiscoveryPlugin.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812678000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSerialShim: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSerialShim + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSerialShim.kext/ + Kext Version: 1 + Load Address: 18446741874810032000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + SecureRemotePassword: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.security.SecureRemotePassword + Loaded: Yes + Get Info String: Copyright © 2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSRP.kext/ + Kext Version: 1.0 + Load Address: 18446741874810012000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedLightSensor: + + Version: 1.0.0d1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedLightSensor + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedLightSensor.kext/ + Kext Version: 1.0.0d1 + Load Address: 18446741874807874000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAVBFamily: + + Version: 1320.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAVBFamily + Loaded: Yes + Get Info String: IOAVBFamily 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAVBFamily.kext/ + Kext Version: 1320.3 + Load Address: 18446741874812615000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileDispH15G-DCP: + + Version: 140.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileDispH15G-DCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileDispH15G-DCP.kext/ + Kext Version: 140.0 + Load Address: 18446741874809326000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSDXC: + + Version: 3.5.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSDXC + Loaded: Yes + Get Info String: 3.5.3, Copyright Apple Inc. 2009-2024 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSDXC.kext/ + Kext Version: 3.5.3 + Load Address: 18446741874809820000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothMultitouch: + + Version: 103 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothMultitouch + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothMultitouch.kext/ + Kext Version: 103 + Load Address: 18446741874807435000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOTextEncryptionFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.IOTextEncryptionFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTextEncryptionFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813823000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + initioFWBridge Driver: + + Version: 556 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.initioFWBridge + Loaded: Yes + Get Info String: 556, Copyright Apple Inc. 2000-2016 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleStorageDrivers.kext/Contents/PlugIns/initioFWBridge.kext/ + Kext Version: 556 + Load Address: 18446741874810126000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIArchitectureModelFamily: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIArchitectureModelFamily + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813741000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOStreamFamily: + + Version: 1.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOStreamFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOStreamFamily.kext/ + Kext Version: 1.1.0 + Load Address: 18446741874813796000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOBluetoothFamily: + + Version: 9.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBluetoothFamily + Loaded: Yes + Get Info String: 9.0.0, Copyright © 2002-2021 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBluetoothFamily.kext/ + Kext Version: 9.0.0 + Load Address: 18446741874813078000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEverestErrorHandler: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEverestErrorHandler + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEverestErrorHandler.kext/ + Kext Version: 1 + Load Address: 18446741874807937000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltNHI: + + Version: 7.2.81 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltNHI + Loaded: Yes + Get Info String: AppleThunderboltNHI version 7.2.81, Copyright © 2009-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltNHI.kext/ + Kext Version: 7.2.81 + Load Address: 18446741874810675000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBSerial: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBSerial.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBSerial, TeamID: @apple + + acfsctl: + + Version: 589 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.acfsctl + Loaded: Yes + Get Info String: 589 (6.0.5), Copyright © 2005-2020 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/acfsctl.kext/ + Kext Version: 589 + Load Address: 18446741874815457000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleMobileFileIntegrity: + + Version: 1.0.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleMobileFileIntegrity + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleMobileFileIntegrity.kext/ + Kext Version: 1.0.5 + Load Address: 18446741874809358000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSkywalkFamily: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSkywalkFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSkywalkFamily.kext/ + Kext Version: 1.0 + Load Address: 18446741874813772000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit BD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOBDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOBDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813063000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleLSIFusionMPT: + + Version: 3.8.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleLSIFusionMPT + Loaded: Yes + Get Info String: 3.8.0, Copyright Apple Inc. 1999-2014 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleLSIFusionMPT.kext/ + Kext Version: 3.8.0 + Load Address: 18446741874808668000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + tmpfs: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.tmpfs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/tmpfs.kext/ + Kext Version: 1 + Load Address: 18446741874816223000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleEthernetE1000: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleEthernetE1000 + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleEthernetE1000.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleEthernetE1000, TeamID: @apple + + AppleDCP: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDCP + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDCP.kext/ + Kext Version: 1 + Load Address: 18446741874807628000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOKitRegistryCompatibility: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOKitRegistryCompatibility + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOKitRegistryCompatibility.kext/ + Kext Version: 1 + Load Address: 18446741874813480000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleConvergedIPCOLYBTControl: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleConvergedIPCOLYBTControl + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleConvergedIPCOLYBTControl.kext/ + Kext Version: 1 + Load Address: 18446741874807462000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDPRepeater: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleDPRepeater + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleDPRepeater.kext/ + Kext Version: 1 + Load Address: 18446741874807650000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBVHCICommon: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.AppleUSBVHCICommon + Loaded: Yes + Get Info String: 1.0, Copyright © 2000-2023 Apple Inc. All Rights Reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBCommon.kext/Contents/PlugIns/AppleUSBVHCICommon.kext/ + Kext Version: 1.0 + Load Address: 18446741874811154000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleOnboardSerial: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleOnboardSerial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleOnboardSerial.kext/ + Kext Version: 1.0 + Load Address: 18446741874809532000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOGPUFamily: + + Version: 104.4.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOGPUFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOGPUFamily.kext/ + Kext Version: 104.4.1 + Load Address: 18446741874813307000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Private Pseudoextension: + + Version: 24.4.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kpi.private + Loaded: Yes + Get Info String: Private Pseudoextension, Apple Computer Inc, 24.4.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/System.kext/PlugIns/Private.kext/ + Kext Version: 24.4.0 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + mDNSOffloadUserClient: + + Version: 1.0.1b8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.mDNSOffloadUserClient + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/mDNSOffloadUserClient.kext/ + Kext Version: 1.0.1b8 + Load Address: 18446741874813688000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + mcxalrkext: + + Version: 2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kext.mcx.alr + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/mcxalr.kext/ + Kext Version: 2 + Load Address: 18446741874816060000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit DVD Storage Family: + + Version: 1.8 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IODVDStorageFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IODVDStorageFamily.kext/ + Kext Version: 1.8 + Load Address: 18446741874813194000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + UDF File System Extension: + + Version: 2.5 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.filesystems.udf + Loaded: Yes + Get Info String: UDF File System Extension + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/udf.kext/ + Kext Version: 2.5 + Load Address: 18446741874816230000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleBluetoothDebugService: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleBluetoothDebugService + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleBluetoothDebugService.kext/ + Kext Version: 1 + Load Address: 18446741874807420000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleNANDConfigAccess: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleNANDConfigAccess + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleNANDConfigAccess.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874809510000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleS8000AES: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleS8000AES + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleS8000AES.kext/ + Kext Version: 1 + Load Address: 18446741874809762000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSEPManager: + + Version: 1.0.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSEPManager + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSEPManager.kext/ + Kext Version: 1.0.1 + Load Address: 18446741874809866000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSyntheticGameController: + + Version: 12.4.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSyntheticGameController + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSyntheticGameController.kext/ + Kext Version: 12.4.12 + Load Address: 18446741874810145000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSSE: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSSE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSSE.kext/ + Kext Version: 1.0 + Load Address: 18446741874810022000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleEmbeddedPCIE: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleEmbeddedPCIE + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleEmbeddedPCIE.kext/ + Kext Version: 1 + Load Address: 18446741874807886000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleRAID: + + Version: 5.1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleRAID + Loaded: Yes + Get Info String: AppleRAID 5.1, Copyright 2016 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleRAID.kext/ + Kext Version: 5.1.0 + Load Address: 18446741874809740000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOgPTPPlugin: + + Version: 1340.12 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.plugin.IOgPTPPlugin + Loaded: Yes + Get Info String: IOgPTPPlugin 1340.12, Copyright © 2010-2023 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOTimeSyncFamily.kext/Contents/PlugIns/IOgPTPPlugin.kext/ + Kext Version: 1340.12 + Load Address: 18446741874814282000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + FairPlayIOKit: + + Version: 72.13.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.FairPlayIOKit + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/FairPlayIOKit.kext/ + Kext Version: 72.13.0 + Load Address: 18446741874811554000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + Libm.kext: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.kec.Libm + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/Libm.kext/ + Kext Version: 1 + Load Address: 18446741874814941000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + I/O Kit Driver for USB HID Devices: + + Version: 1.2 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.usb.IOUSBHostHIDDevice + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/IOUSBHostHIDDevice.kext/ + Kext Version: 1.2 + Load Address: 18446741874814904000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + com.apple.DriverKit-AppleUSBCHCOM: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.DriverKit-AppleUSBCHCOM + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/DriverExtensions/com.apple.DriverKit-AppleUSBCHCOM.dext/ + Kext Version: 1 + Load Address: 0 + Loadable: Yes + Dependencies: Satisfied + Signed by: Subject: Software Signing, Issuer: Apple Code Signing Certification Authority, Identifier: com.apple.DriverKit-AppleUSBCHCOM, TeamID: @apple + + IOSCSIParallelFamily: + + Version: 3.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIParallelFamily + Loaded: Yes + Get Info String: 3.0.0, Copyright 1998-2013 Apple Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIParallelFamily.kext/ + Kext Version: 3.0.0 + Load Address: 18446741874813762000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleUSBAudio: + + Version: 741.32 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleUSBAudio + Loaded: Yes + Get Info String: AppleUSBAudio 741.32, Copyright © 2000-2024 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleUSBAudio.kext/ + Kext Version: 741.32 + Load Address: 18446741874811136000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleSPU: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleSPU + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleSPU.kext/ + Kext Version: 1 + Load Address: 18446741874809987000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleAudioClockLibs: + + Version: 420.3 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAudioClockLibs + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAudioClockLibs.kext/ + Kext Version: 420.3 + Load Address: 18446741874806761000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOHDCPFamily: + + Version: 1.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOHDCPFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDCPFamily.kext/ + Kext Version: 1.0.0 + Load Address: 18446741874813374000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleDiskImagesUDIFDiskImage: + + Version: 493.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.DiskImages.UDIFDiskImage + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesUDIFDiskImage.kext/ + Kext Version: 493.0.0 + Load Address: 18446741874813415000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + BCMWLANFirmware4388_Hashstore: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.BCMWLANFirmware4388.Hashstore + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/BCMWLANFirmware4388_Hashstore.kext/ + Kext Version: 1 + Load Address: 18446741874811290000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOSCSIReducedBlockCommandsDevice: + + Version: 500.101.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOSCSIReducedBlockCommandsDevice + Loaded: Yes + Get Info String: 500.101.1, Copyright © 1999-2016 Apple Inc. All rights reserved. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIReducedBlockCommandsDevice.kext/ + Kext Version: 500.101.1 + Load Address: 18446741874813757000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleThunderboltDPAdapterFamily: + + Version: 8.5.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleThunderboltDPAdapterFamily + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleThunderboltDPAdapters.kext/Contents/PlugIns/AppleThunderboltDPAdapterFamily.kext/ + Kext Version: 8.5.1 + Load Address: 18446741874810300000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + AppleFirmwareKit: + + Version: 1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleFirmwareKit + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleFirmwareKit.kext/ + Kext Version: 1 + Load Address: 18446741874807968000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOUserSerial: + + Version: 6.0.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.driverkit.serial + Loaded: Yes + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOUserSerial.kext/ + Kext Version: 6.0.0 + Load Address: 18446741874814929000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + H264 Video Encoder: + + Version: 803.63.1 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.driver.AppleAVE2 + Loaded: Yes + Get Info String: Copyright Apple Computer, Inc. + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/AppleAVE2.kext/ + Kext Version: 803.63.1 + Load Address: 18446741874806082000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + + IOAudio2Family: + + Version: 1.0 + Last Modified: 12.04.2025, 08:16 + Bundle ID: com.apple.iokit.IOAudio2Family + Loaded: Yes + Get Info String: IOAudio2Family 1.0 + Architectures: arm64e + 64-Bit (Intel): No + Location: /System/Library/Extensions/IOAudio2Family.kext/ + Kext Version: 1.0 + Load Address: 18446741874813034000 + Loadable: Yes + Dependencies: Satisfied + Signed by: Signed by Apple Inc. (In Boot Kernel Collection) + +Firewall: + + Firewall Settings: + + Mode: Allow all incoming connections + Applications: + com.apple.cupsd: Allow all connections + com.apple.dt.xcode_select.tool-shim: Allow all connections + com.apple.remoted: Allow all connections + com.apple.ruby: Allow all connections + com.apple.sharingd: Allow all connections + com.apple.smbd: Allow all connections + com.apple.sshd-keygen-wrapper: Allow all connections + Firewall Logging: No + Stealth Mode: No + +Fonts: + + Kokonor.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kokonor.ttf + Typefaces: + Kokonor: + Full Name: Kokonor Regular + Family: Kokonor + Style: Обычный + Version: 18.0d1e10 + Vendor: Shojiro Nomura and Steve Hartwell + Unique Name: Kokonor Regular; 18.0d1e10; 2022-04-19 + Designer: Shojiro Nomura + Copyright: Copyright (c) Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Helvetica.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Helvetica.ttc + Typefaces: + Helvetica-BoldOblique: + Full Name: Helvetica Bold Oblique + Family: Helvetica + Style: Жирный наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Bold Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Light: + Full Name: Helvetica Light + Family: Helvetica + Style: Легкий + Version: 17.0d1e1 + Unique Name: Helvetica Light; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-LightOblique: + Full Name: Helvetica Light Oblique + Family: Helvetica + Style: Легкий наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Light Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica: + Full Name: Helvetica + Family: Helvetica + Style: Обычный + Version: 17.0d1e1 + Unique Name: Helvetica; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Oblique: + Full Name: Helvetica Oblique + Family: Helvetica + Style: Наклонный + Version: 17.0d1e1 + Unique Name: Helvetica Oblique; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Helvetica-Bold: + Full Name: Helvetica Bold + Family: Helvetica + Style: Жирный + Version: 17.0d1e1 + Unique Name: Helvetica Bold; 17.0d1e1; 2020-09-21 + Copyright: © 1990-2006 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. + Trademark: Helvetica is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Microsoft Sans Serif.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Microsoft Sans Serif.ttf + Typefaces: + MicrosoftSansSerif: + Full Name: Microsoft Sans Serif + Family: Microsoft Sans Serif + Style: Обычный + Version: Version 5.00.1x + Unique Name: Microsoft Sans Serif Regular + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Microsoft Sans Serif is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-MediumItalic.otf + Typefaces: + SFCompactText-MediumItalic: + Full Name: SF Compact Text Medium Italic + Family: SF Compact Text + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Medium.otf + Typefaces: + SFProText-Medium: + Full Name: SF Pro Text Medium + Family: SF Pro Text + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Papyrus.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Papyrus.ttc + Typefaces: + Papyrus: + Full Name: Papyrus + Family: Papyrus + Style: Обычный + Version: 13.0d1e2 + Unique Name: Papyrus; 13.0d1e2; 2017-06-15 + Copyright: Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp. + Trademark: Papyrus™ is a trademark of Esselte Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Papyrus-Condensed: + Full Name: Papyrus Condensed + Family: Papyrus + Style: Узкий + Version: 13.0d1e2 + Unique Name: Papyrus Condensed; 13.0d1e2; 2017-06-15 + Copyright: Digitized data copyright © 2001 Agfa Monotype Corporation. All rights reserved. COPYRIGHT ESSELTE LETRASET LTD., 1990. Papyrus™ is a trademark of Esselte Corp. + Trademark: Papyrus™ is a trademark of Esselte Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-MediumItalic.otf + Typefaces: + SFProDisplay-MediumItalic: + Full Name: SF Pro Display Medium Italic + Family: SF Pro Display + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Ultralight.otf + Typefaces: + SFProDisplay-Ultralight: + Full Name: SF Pro Display Ultralight + Family: SF Pro Display + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bradley Hand Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bradley Hand Bold.ttf + Typefaces: + BradleyHandITCTT-Bold: + Full Name: Bradley Hand Bold + Family: Bradley Hand + Style: Жирный + Version: 14.0d0e1 + Unique Name: Bradley Hand Bold; 14.0d0e1; 2017-11-14 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Bold Italic.ttf + Typefaces: + Georgia-BoldItalic: + Full Name: Georgia Полужирный Курсив + Family: Georgia + Style: Полужирный Курсив + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Bold Italic; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charter.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Charter.ttc + Typefaces: + Charter-Roman: + Full Name: Charter Roman + Family: Charter + Style: Латинский + Version: 14.0d2e1 + Unique Name: Charter Roman; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-BlackItalic: + Full Name: Charter Black Italic + Family: Charter + Style: Черный курсивный + Version: 14.0d2e1 + Unique Name: Charter Black Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Bold: + Full Name: Charter Bold + Family: Charter + Style: Жирный + Version: 14.0d2e1 + Unique Name: Charter Bold; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Italic: + Full Name: Charter Italic + Family: Charter + Style: Курсивный + Version: 14.0d2e1 + Unique Name: Charter Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-BoldItalic: + Full Name: Charter BT Bold Italic + Family: Charter + Style: Жирный курсивный + Version: 14.0d2e1 + Unique Name: Charter Bold Italic; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charter-Black: + Full Name: Charter Black + Family: Charter + Style: Черный + Version: 14.0d2e1 + Unique Name: Charter Black; 14.0d2e1; 2017-11-28 + Copyright: Copyright 1990-2003 Bitstream Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSerifMyanmar.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSerifMyanmar.ttc + Typefaces: + NotoSerifMyanmar-Black: + Full Name: Noto Serif Myanmar Black + Family: Noto Serif Myanmar + Style: Черный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Black; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-SemiBold: + Full Name: Noto Serif Myanmar SemiBold + Family: Noto Serif Myanmar + Style: Полужирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar SemiBold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Bold: + Full Name: Noto Serif Myanmar Bold + Family: Noto Serif Myanmar + Style: Жирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Bold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Regular: + Full Name: Noto Serif Myanmar Regular + Family: Noto Serif Myanmar + Style: Обычный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Regular; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-ExtraBold: + Full Name: Noto Serif Myanmar ExtraBold + Family: Noto Serif Myanmar + Style: Сверхжирный + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar ExtraBold; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Medium: + Full Name: Noto Serif Myanmar Medium + Family: Noto Serif Myanmar + Style: Средний + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Medium; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-ExtraLight: + Full Name: Noto Serif Myanmar ExtraLight + Family: Noto Serif Myanmar + Style: Сверхлегкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar ExtraLight; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Light: + Full Name: Noto Serif Myanmar Light + Family: Noto Serif Myanmar + Style: Легкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Light; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifMyanmar-Thin: + Full Name: Noto Serif Myanmar Thin + Family: Noto Serif Myanmar + Style: Тонкий + Version: 14.0d1e5 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Myanmar Thin; 14.0d1e5; 2018-11-28 + Designer: Ben Mitchell and the Monotype Design Team + Copyright: Copyright 2016 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kai.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/28f00a24ba19995bab7249993e6e35d11011074a.asset/AssetData/Kai.ttf + Typefaces: + SIL-Kai-Reg-Jian: + Full Name: Kai Regular + Family: Kai + Style: Обычный + Version: 13.0d1e2 + Unique Name: Kai Regular; 13.0d1e2; 2017-06-16 + Copyright: ˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995 + Trademark: Shanghai Ikarus Ltd./URW Software & Type GmbH + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72 Smallcaps Book.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72 Smallcaps Book.ttf + Typefaces: + BodoniSvtyTwoSCITCTT-Book: + Full Name: Bodoni 72 Smallcaps Book + Family: Bodoni 72 Smallcaps + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Smallcaps Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tamil MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tamil MN.ttc + Typefaces: + TamilMN-Bold: + Full Name: Tamil MN Bold + Family: Tamil MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilMN: + Full Name: Tamil MN + Family: Tamil MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Italic.ttf + Typefaces: + CourierNewPS-ItalicMT: + Full Name: Courier New Курсив + Family: Courier New + Style: Курсив + Version: Version 5.00.1x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Italic:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + EuphemiaCAS.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/EuphemiaCAS.ttc + Typefaces: + EuphemiaUCAS: + Full Name: Euphemia UCAS + Family: Euphemia UCAS + Style: Обычный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks Ltd., 2004. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + EuphemiaUCAS-Bold: + Full Name: Euphemia UCAS Bold + Family: Euphemia UCAS + Style: Жирный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS Bold; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks Ltd., 2004. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + EuphemiaUCAS-Italic: + Full Name: Euphemia UCAS Italic + Family: Euphemia UCAS + Style: Курсивный + Version: 18.0d1e1 + Vendor: Tiro Typeworks Ltd. + Unique Name: Euphemia UCAS Italic; 18.0d1e1; 2022-12-22 + Designer: Ross Mills + Copyright: Copyright (C) 2004, Tiro Typeworks Ltd. All rights reserved. + Trademark: Euphemia is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Black.otf + Typefaces: + SFProRounded-Black: + Full Name: SF Pro Rounded Black + Family: SF Pro Rounded + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mshtakan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mshtakan.ttc + Typefaces: + MshtakanBold: + Full Name: Mshtakan Bold + Family: Mshtakan + Style: Жирный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan Bold; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-Bold 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan Bold is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MshtakanOblique: + Full Name: Mshtakan Oblique + Family: Mshtakan + Style: Наклоненный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan Oblique; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-Oblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan Oblique is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MshtakanBoldOblique: + Full Name: Mshtakan BoldOblique + Family: Mshtakan + Style: Жирный наклоненный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan BoldOblique; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan-BoldOblique 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan BoldOblique is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mshtakan: + Full Name: Mshtakan + Family: Mshtakan + Style: Обычный + Version: 14.0d1e1 + Vendor: Michael Everson + Unique Name: Mshtakan; 14.0d1e1; 2017-11-24 + Designer: Michael Everson + Copyright: Mshtakan 1.1 © 2002-2003 Michael Everson. All Rights Reserved. + Trademark: Mshtakan is a trademark of Michael Everson. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hanzipen.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9fdda46cbe802833590494a09b2787378340c597.asset/AssetData/Hanzipen.ttc + Typefaces: + HanziPenTC-W5: + Full Name: HanziPen TC Bold + Family: HanziPen TC + Style: Жирный + Version: 14.0d1e1 + Unique Name: HanziPen TC Bold; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenTC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenSC-W3: + Full Name: HanziPen SC Regular + Family: HanziPen SC + Style: Обычный + Version: 14.0d1e1 + Unique Name: HanziPen SC Regular; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenSC W3 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenSC-W5: + Full Name: HanziPen SC Bold + Family: HanziPen SC + Style: Жирный + Version: 14.0d1e1 + Unique Name: HanziPen SC Bold; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenSC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HanziPenTC-W3: + Full Name: HanziPen TC Regular + Family: HanziPen TC + Style: Обычный + Version: 14.0d1e1 + Unique Name: HanziPen TC Regular; 14.0d1e1; 2018-06-12 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HanziPenTC W3 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Black.otf + Typefaces: + SFCompactRounded-Black: + Full Name: SF Compact Rounded Black + Family: SF Compact Rounded + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-SemiboldItalic.otf + Typefaces: + SFCompactText-SemiboldItalic: + Full Name: SF Compact Text Semibold Italic + Family: SF Compact Text + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DecoTypeNastaleeqUrdu.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/DecoTypeNastaleeqUrdu.ttc + Typefaces: + DecoTypeNastaleeqUrdu-Bold: + Full Name: DecoType Nastaleeq Urdu Bold + Family: DecoType Nastaleeq Urdu + Style: Жирный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: DecoType Nastaleeq Urdu Bold; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: DecoType Nastaleeq Urdu is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DecoTypeNastaleeqUrdu-Regular: + Full Name: DecoType Nastaleeq Urdu + Family: DecoType Nastaleeq Urdu + Style: Обычный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: DecoType Nastaleeq Urdu; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: DecoType Nastaleeq Urdu is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNastaleeqUrduUI-Regular: + Full Name: .DecoType Nastaleeq Urdu UI + Family: .DecoType Nastaleeq Urdu UI + Style: Обычный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: .DecoType Nastaleeq Urdu UI; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: .DecoType Nastaleeq Urdu UI is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNastaleeqUrduUI-Bold: + Full Name: .DecoType Nastaleeq Urdu UI Bold + Family: .DecoType Nastaleeq Urdu UI + Style: Жирный + Version: 20.4d9e1 + Vendor: Mirjam Somers + Unique Name: .DecoType Nastaleeq Urdu UI Bold; 20.4d9e1; 2025-02-18 + Designer: Mirjam Somers + Copyright: Copyright © 2025 by Mirjam Somers. All rights reserved. + Trademark: .DecoType Nastaleeq Urdu UI is a trademark of Mirjam Somers. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorTelugu.ttc + Typefaces: + KohinoorTelugu-Regular: + Full Name: Kohinoor Telugu + Family: Kohinoor Telugu + Style: Обычный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Medium: + Full Name: Kohinoor Telugu Medium + Family: Kohinoor Telugu + Style: Средний + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Medium; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Light: + Full Name: Kohinoor Telugu Light + Family: Kohinoor Telugu + Style: Легкий + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Light; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Bold: + Full Name: Kohinoor Telugu Bold + Family: Kohinoor Telugu + Style: Жирный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Bold; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorTelugu-Semibold: + Full Name: Kohinoor Telugu Semibold + Family: Kohinoor Telugu + Style: Полужирный + Version: 20.01d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Telugu Semibold; 20.01d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Telugu is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2014 and 2015 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DevanagariMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DevanagariMT.ttc + Typefaces: + DevanagariMT-Bold: + Full Name: Devanagari MT Bold + Family: Devanagari MT + Style: Жирный + Version: 20.0d1e2 + Unique Name: Devanagari MT Bold; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996. All rights reserved. + Trademark: Monotype Devanagari is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DevanagariMT: + Full Name: Devanagari MT + Family: Devanagari MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Devanagari MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996. All rights reserved. + Trademark: Monotype Devanagari is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W3.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W3.ttc + Typefaces: + HiraginoSans-W3: + Full Name: Hiragino Sans W3 + Family: Hiragino Sans + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W3; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W3: + Full Name: .Hiragino Kaku Gothic Interface W3 + Family: .Hiragino Kaku Gothic Interface + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W3; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.21, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Rounded Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Rounded Bold.ttf + Typefaces: + ArialRoundedMTBold: + Full Name: Arial Rounded MT Bold + Family: Arial Rounded MT Bold + Style: Обычный + Version: Version 1.51x + Unique Name: Arial Rounded MT Bold + Copyright: Copyright © 1993 , Monotype Typography ltd. + Trademark: Arial ® Trademark of Monotype Typography ltd registered in the US Pat & TM.and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Impact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Impact.ttf + Typefaces: + Impact: + Full Name: Impact + Family: Impact + Style: Обычный + Version: Version 5.00x + Vendor: The Monotype Corporation + Unique Name: Impact - 1992 + Designer: Geoffrey Lee + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Impact is a trademark of Stephenson Blake (Holdings) Ltd. + Description: 1965. Designed for the Stephenson Blake type foundry. A very heavy, narrow, sans serif face intended for use in newspapers, for headlines and in advertisements. Aptly named, this face has a very large "x" height with short ascenders and descenders. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Skia.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Skia.ttf + Typefaces: + Skia-Regular_Light: + Full Name: Skia + Family: Skia + Style: Light + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black-Condensed: + Full Name: Skia + Family: Skia + Style: Black Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Bold: + Full Name: Skia + Family: Skia + Style: Bold + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Light-Condensed: + Full Name: Skia + Family: Skia + Style: Light Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Condensed: + Full Name: Skia + Family: Skia + Style: Condensed + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Light-Extended: + Full Name: Skia + Family: Skia + Style: Light Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black-Extended: + Full Name: Skia + Family: Skia + Style: Black Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular: + Full Name: Skia + Family: Skia + Style: Обычный + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Black: + Full Name: Skia + Family: Skia + Style: Black + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Skia-Regular_Extended: + Full Name: Skia + Family: Skia + Style: Extended + Version: 13.0d1e54 + Unique Name: Skia; 13.0d1e54; 2017-06-21 + Copyright: © 1993-2014 Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Muna.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Muna.ttc + Typefaces: + Muna: + Full Name: Muna Regular + Family: Muna + Style: Обычный + Version: 13.0d1e4 + Unique Name: Muna Regular; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MunaBold: + Full Name: Muna Bold + Family: Muna + Style: Жирный + Version: 13.0d1e4 + Unique Name: Muna Bold; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MunaBlack: + Full Name: Muna Black + Family: Muna + Style: Черный + Version: 13.0d1e4 + Unique Name: Muna Black; 13.0d1e4; 2017-06-28 + Copyright: © Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUA: + Full Name: .Muna PUA + Family: .Muna PUA + Style: Обычный + Version: 13.0d1e4 + Unique Name: .Muna PUA; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUABold: + Full Name: .Muna PUA Bold + Family: .Muna PUA + Style: Жирный + Version: 13.0d1e4 + Unique Name: .Muna PUA Bold; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .MunaPUABlack: + Full Name: .Muna PUA Black + Family: .Muna PUA + Style: Черный + Version: 13.0d1e4 + Unique Name: .Muna PUA Black; 13.0d1e4; 2017-06-28 + Copyright: © Diwan Software Ltd. + Trademark: Muna + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hannotate.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/8dc7805506cc9f233dcc19aabf593196842a47ae.asset/AssetData/Hannotate.ttc + Typefaces: + HannotateSC-W5: + Full Name: Hannotate SC Regular + Family: Hannotate SC + Style: Обычный + Version: 13.0d2e1 + Unique Name: Hannotate SC Regular; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateSC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateSC-W7: + Full Name: Hannotate SC Bold + Family: Hannotate SC + Style: Жирный + Version: 13.0d2e1 + Unique Name: Hannotate SC Bold; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateSC W7 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateTC-W5: + Full Name: Hannotate TC Regular + Family: Hannotate TC + Style: Обычный + Version: 13.0d2e1 + Unique Name: Hannotate TC Regular; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateTC W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HannotateTC-W7: + Full Name: Hannotate TC Bold + Family: Hannotate TC + Style: Жирный + Version: 13.0d2e1 + Unique Name: Hannotate TC Bold; 13.0d2e1; 2017-06-30 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: HannotateTC W7 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4dd79186659117902461cd5dc475661aad20e38a.asset/AssetData/TiroTamil.ttc + Typefaces: + TiroTamil-Italic: + Full Name: Tiro Tamil Italic + Family: Tiro Tamil + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Tamil Italic; 20.0d1e2; 2024-07-05 + Designer: Tamil: Fernando Mello & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Tamil is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroTamil: + Full Name: Tiro Tamil + Family: Tiro Tamil + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Tamil; 20.0d1e2; 2024-07-05 + Designer: Tamil: Fernando Mello & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Tamil is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArimaMadurai.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e26b688bc8b9a38c551ae27a82c2e5692b582096.asset/AssetData/ArimaMadurai.ttc + Typefaces: + ArimaMadurai-Light: + Full Name: ArimaMadurai-Light + Family: Arima Madurai + Style: Легкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Light; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Medium: + Full Name: ArimaMadurai-Medium + Family: Arima Madurai + Style: Средний + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Medium; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Bold: + Full Name: ArimaMadurai-Bold + Family: Arima Madurai + Style: Жирный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Bold; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-SemiBold: + Full Name: Arima Madurai Semi Bold + Family: Arima Madurai + Style: Полужирный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Semi Bold; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Regular: + Full Name: ArimaMadurai-Regular + Family: Arima Madurai + Style: Обычный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-ExtraLight: + Full Name: ArimaMadurai-ExtraLight + Family: Arima Madurai + Style: Сверхлегкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai ExtraLight; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Black: + Full Name: ArimaMadurai-Black + Family: Arima Madurai + Style: Черный + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Black; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaMadurai-Thin: + Full Name: ArimaMadurai-Thin + Family: Arima Madurai + Style: Тонкий + Version: 20.0d1e3 + Vendor: NDISCOVER + Unique Name: Arima Madurai Thin; 20.0d1e3; 2024-07-08 + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BigCaslon.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/BigCaslon.ttf + Typefaces: + BigCaslon-Medium: + Full Name: Big Caslon Medium + Family: Big Caslon + Style: Средний + Version: 13.0d1e11 + Unique Name: Big Caslon Medium; 13.0d1e11; 2017-06-07 + Copyright: Copyright (c) 1994 Carter & Cone Type, Inc. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is the property of Carter & Cone Type, Inc. and their licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Carter & Cone Type, Inc. + Trademark: "Big Caslon" is a Trademark of Carter & Cone Type, Inc. which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hubballi-regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1d7ed4d4914d33579e5b9ced3963955803881147.asset/AssetData/Hubballi-regular.otf + Typefaces: + Hubballi-Regular: + Full Name: Hubballi-Regular + Family: Hubballi + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: Hubballi; 20.0d1e2 (1.000); 2024-07-08 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2016, Erin McLaughlin (hello@erinmclaughlin.com). Digitized data copyright 2016, Google Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ChalkboardSE.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/ChalkboardSE.ttc + Typefaces: + ChalkboardSE-Bold: + Full Name: Chalkboard SE Bold + Family: Chalkboard SE + Style: Жирный + Version: 13.0d1e2 + Unique Name: Chalkboard SE Bold; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChalkboardSE-Regular: + Full Name: Chalkboard SE Regular + Family: Chalkboard SE + Style: Обычный + Version: 13.0d1e2 + Unique Name: Chalkboard SE Regular; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChalkboardSE-Light: + Full Name: Chalkboard SE Light + Family: Chalkboard SE + Style: Легкий + Version: 13.0d1e2 + Unique Name: Chalkboard SE Light; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-10 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleGothic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AppleGothic.ttf + Typefaces: + AppleGothic: + Full Name: AppleGothic Regular + Family: AppleGothic + Style: Обычный + Version: 13.0d1e3 + Unique Name: AppleGothic Regular; 13.0d1e3; 2017-07-12 + Copyright: Copyright © 1994-2006 Apple Computer, Inc. All rights reserved. + Trademark: AppleGothic is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LucidaGrande.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/LucidaGrande.ttc + Typefaces: + LucidaGrande: + Full Name: Lucida Grande + Family: Lucida Grande + Style: Обычный + Version: 15.0d1e1 + Unique Name: Lucida Grande; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LucidaGrande-Bold: + Full Name: Lucida Grande Bold + Family: Lucida Grande + Style: Жирный + Version: 15.0d1e1 + Unique Name: Lucida Grande Bold; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .LucidaGrandeUI: + Full Name: .Lucida Grande UI Regular + Family: .Lucida Grande UI + Style: Обычный + Version: 15.0d1e1 + Unique Name: .Lucida Grande UI Regular; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .LucidaGrandeUI-Bold: + Full Name: .Lucida Grande UI Bold + Family: .Lucida Grande UI + Style: Жирный + Version: 15.0d1e1 + Unique Name: .Lucida Grande UI Bold; 15.0d1e1; 2019-07-01 + Designer: Kris Holmes and Charles Bigelow + Copyright: Copyright © 1989 Bigelow & Holmes, Inc. All rights reserved. Lucida is a trademark of Bigelow & Holmes Inc. registered in the U.S. Patent and Trademark Office and other jurisdictions. Lucida typeface designs created by Kris Holmes and Charles Bigelow. + Trademark: Lucida is a registered trademark of Bigelow & Holmes Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Andale Mono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Andale Mono.ttf + Typefaces: + AndaleMono: + Full Name: Andale Mono + Family: Andale Mono + Style: Обычный + Version: Version 2.00x + Vendor: Monotype Typography + Unique Name: Andale Mono Regular + Designer: Steven R. Matteson + Copyright: Digitized data copyright (C) 1993-1997 The Monotype Corporation. All rights reserved. + Trademark: Andale™ is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Description: Andale Monospaced is a highly legible monospaced font. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-LightItalic.otf + Typefaces: + SFProDisplay-LightItalic: + Full Name: SF Pro Display Light Italic + Family: SF Pro Display + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooDaBangla.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5fe6371adc5e220330443953cbf14e0036863d7b.asset/AssetData/BalooDaBangla.ttc + Typefaces: + BalooDa2-SemiBold: + Full Name: Baloo Da 2 SemiBold + Family: Baloo Da 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-ExtraBold: + Full Name: Baloo Da 2 ExtraBold + Family: Baloo Da 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Bold: + Full Name: Baloo Da 2 Bold + Family: Baloo Da 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Regular: + Full Name: Baloo Da 2 Regular + Family: Baloo Da 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooDa2-Medium: + Full Name: Baloo Da 2 Medium + Family: Baloo Da 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Da 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Noopur Datye, Sulekha Rajkumar and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuGothic-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54ef167d6c8e99a69a0d41ce252cc5995ba47580.asset/AssetData/YuGothic-Medium.otf + Typefaces: + YuGo-Medium: + Full Name: YuGothic Medium + Family: YuGothic + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuGothic Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a Trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ明朝 ProN.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ明朝 ProN.ttc + Typefaces: + HiraMinProN-W3: + Full Name: HiraMinProN-W3 + Family: Hiragino Mincho ProN + Style: W3 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Mincho ProN W3; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraMinProN-W6: + Full Name: HiraMinProN-W6 + Family: Hiragino Mincho ProN + Style: W6 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Mincho ProN W6; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-UltralightItalic.otf + Typefaces: + SFProText-UltralightItalic: + Full Name: SF Pro Text Ultralight Italic + Family: SF Pro Text + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Ultralight.otf + Typefaces: + SFCompactDisplay-Ultralight: + Full Name: SF Compact Display Ultralight + Family: SF Compact Display + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ丸ゴ ProN W4.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ丸ゴ ProN W4.ttc + Typefaces: + HiraMaruProN-W4: + Full Name: HiraMaruProN-W4 + Family: Hiragino Maru Gothic ProN + Style: W4 + Version: 17.0d1e2 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Maru Gothic ProN W4; 17.0d1e2; 2021-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 2000-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/99628f777949e7ed19970f6cf5d71915ad84e902.asset/AssetData/LavaDevanagari.ttc + Typefaces: + LavaDevanagari-Regular: + Full Name: Lava Devanagari Regular + Family: Lava Devanagari + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Regular; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Bold: + Full Name: Lava Devanagari Bold + Family: Lava Devanagari + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Bold; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Medium: + Full Name: Lava Devanagari Medium + Family: Lava Devanagari + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Medium; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaDevanagari-Heavy: + Full Name: Lava Devanagari Heavy + Family: Lava Devanagari + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque + Unique Name: Lava Devanagari Heavy; 20.0d1e2; 2024-07-05 + Designer: Peter Bilak, Parimal Parmar + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: Lava is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Thonburi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Thonburi.ttc + Typefaces: + Thonburi-Bold: + Full Name: Thonburi Bold + Family: Thonburi + Style: Жирный + Version: 18.0d1e1 + Unique Name: Thonburi Bold; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Thonburi: + Full Name: Thonburi + Family: Thonburi + Style: Обычный + Version: 18.0d1e1 + Unique Name: Thonburi; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Thonburi-Light: + Full Name: Thonburi Light + Family: Thonburi + Style: Легкий + Version: 18.0d1e1 + Unique Name: Thonburi Light; 18.0d1e1; 2022-01-12 + Copyright: Copyright © 1992-2013 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleMyungjo.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AppleMyungjo.ttf + Typefaces: + AppleMyungjo: + Full Name: AppleMyungjo Regular + Family: AppleMyungjo + Style: Обычный + Version: 13.0d1e6 + Unique Name: AppleMyungjo Regular; 13.0d1e6; 2017-06-14 + Copyright: Copyright (c) 1994-2007 Apple, Inc. All rights reserved. + Trademark: AppleMyungjo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Comic Sans MS Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Comic Sans MS Bold.ttf + Typefaces: + ComicSansMS-Bold: + Full Name: Comic Sans MS Полужирный + Family: Comic Sans MS + Style: Полужирный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Comic Sans Bold + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Description: Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TsukushiBMaruGothic.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/10b097deccb3c6126d986e24b1980031ff7399da.asset/AssetData/TsukushiBMaruGothic.ttc + Typefaces: + TsukuBRdGothic-Regular: + Full Name: Tsukushi B Round Gothic Regula + Family: Tsukushi B Round Gothic + Style: Обычный + Version: 15.0d1e2 + Unique Name: Tsukushi B Round Gothic Regular; 15.0d1e2; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi B Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TsukuBRdGothic-Bold: + Full Name: Tsukushi B Round Gothic Bold + Family: Tsukushi B Round Gothic + Style: Жирный + Version: 15.0d1e2 + Unique Name: Tsukushi B Round Gothic Bold; 15.0d1e2; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi B Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSItalic.ttf + Typefaces: + .SFNS-RegularItalic: + Full Name: Системный шрифт Обычный курсивный + Family: Системный шрифт + Style: Обычный курсивный + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumItalic: + Full Name: Системный шрифт Medium Italic + Family: Системный шрифт + Style: Medium Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightItalic: + Full Name: Системный шрифт Light Italic + Family: Системный шрифт + Style: Light Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinItalic: + Full Name: Системный шрифт Thin Italic + Family: Системный шрифт + Style: Thin Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightItalic: + Full Name: Системный шрифт Ultralight Italic + Family: Системный шрифт + Style: Ultralight Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldItalic: + Full Name: Системный шрифт Semibold Italic + Family: Системный шрифт + Style: Semibold Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldItalic: + Full Name: Системный шрифт Bold Italic + Family: Системный шрифт + Style: Bold Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyItalic: + Full Name: Системный шрифт Heavy Italic + Family: Системный шрифт + Style: Heavy Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BlackItalic: + Full Name: Системный шрифт Black Italic + Family: Системный шрифт + Style: Black Italic + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS Italic; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kefa.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kefa.ttc + Typefaces: + Kefa-Regular: + Full Name: Kefa Regular + Family: Kefa + Style: Обычный + Version: 17.0d1e2 + Vendor: Jeremie Hornus + Unique Name: Kefa Regular; 17.0d1e2; 2021-06-27 + Designer: Jeremie Hornus + Copyright: Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved. + Trademark: Kefa is a trademark of Jeremie Hornus. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kefa-Bold: + Full Name: Kefa Bold + Family: Kefa + Style: Жирный + Version: 17.0d1e2 + Vendor: Jeremie Hornus + Unique Name: Kefa Bold; 17.0d1e2; 2021-06-27 + Designer: Jeremie Hornus + Copyright: Copyright (c) 2006 - 2009 by Jeremie Hornus. All rights reserved. + Trademark: Kefa is a trademark of Jeremie Hornus. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Zapfino.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Zapfino.ttf + Typefaces: + Zapfino: + Full Name: Zapfino + Family: Zapfino + Style: Обычный + Version: 18.0d1e2 + Unique Name: Zapfino; 18.0d1e2; 2021-11-18 + Designer: Hermann Zapf + Copyright: Copyright (c) 1999-2002, Linotype Library GmbH & affiliates. All rights reserved. + Trademark: Linotype Zapfino is a Trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Today's digital font technology has allowed renowned type designer Hermann Zapf to realise a dream he first had more than fifty years ago: to create a fully calligraphic typeface. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sarabun.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bff515501313f56409358f8994642696000d2dbc.asset/AssetData/Sarabun.ttc + Typefaces: + Sarabun-Bold: + Full Name: Sarabun Bold + Family: Sarabun + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Bold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraBold: + Full Name: Sarabun ExtraBold + Family: Sarabun + Style: Сверхжирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraLightItalic: + Full Name: Sarabun ExtraLight Italic + Family: Sarabun + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraLightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Regular: + Full Name: Sarabun Regular + Family: Sarabun + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Regular + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraLight: + Full Name: Sarabun ExtraLight + Family: Sarabun + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraLight + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Light: + Full Name: Sarabun Light + Family: Sarabun + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Light + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Thin: + Full Name: Sarabun Thin + Family: Sarabun + Style: Тонкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Thin + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-LightItalic: + Full Name: Sarabun Light Italic + Family: Sarabun + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-LightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-SemiBold: + Full Name: Sarabun SemiBold + Family: Sarabun + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-SemiBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Medium: + Full Name: Sarabun Medium + Family: Sarabun + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Medium + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ThinItalic: + Full Name: Sarabun Thin Italic + Family: Sarabun + Style: Тонкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ThinItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-ExtraBoldItalic: + Full Name: Sarabun ExtraBold Italic + Family: Sarabun + Style: Сверхжирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-ExtraBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-Italic: + Full Name: Sarabun Italic + Family: Sarabun + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-Italic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-BoldItalic: + Full Name: Sarabun Bold Italic + Family: Sarabun + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-BoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-SemiBoldItalic: + Full Name: Sarabun SemiBold Italic + Family: Sarabun + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-SemiBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Sarabun-MediumItalic: + Full Name: Sarabun Medium Italic + Family: Sarabun + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Sarabun-MediumItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Sarabun Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Phosphate.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Phosphate.ttc + Typefaces: + Phosphate-Inline: + Full Name: Phosphate Inline + Family: Phosphate + Style: Inline + Version: 13.0d1e2 + Vendor: International TypeFounders, Inc + Unique Name: Phosphate Inline; 13.0d1e2; 2017-06-15 + Designer: Steve Jackaman + Ashley Muir + Copyright: Copyright © 2010 by International TypeFounders, Inc. All rights reserved. + Trademark: Phosphate Inline is a trademark of International TypeFounders, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Phosphate-Solid: + Full Name: Phosphate Solid + Family: Phosphate + Style: Solid + Version: 13.0d1e2 + Vendor: International TypeFounders, Inc + Unique Name: Phosphate Solid; 13.0d1e2; 2017-06-15 + Designer: Steve Jackaman + Ashley Muir + Copyright: Copyright © 2010 by International TypeFounders, Inc. All rights reserved. + Trademark: Phosphate Solid is a trademark of International TypeFounders, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewYork.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NewYork.ttf + Typefaces: + .NewYork-Regular: + Full Name: .New York Обычный + Family: .New York + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG1: + Full Name: .New York Regular G1 + Family: .New York + Style: Regular G1 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG2: + Full Name: .New York Regular G2 + Family: .New York + Style: Regular G2 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG3: + Full Name: .New York Regular G3 + Family: .New York + Style: Regular G3 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularG4: + Full Name: .New York Regular G4 + Family: .New York + Style: Regular G4 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Medium: + Full Name: .New York Средний + Family: .New York + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Semibold: + Full Name: .New York Полужирный + Family: .New York + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Bold: + Full Name: .New York Жирный + Family: .New York + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG1: + Full Name: .New York Bold G1 + Family: .New York + Style: Bold G1 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG2: + Full Name: .New York Bold G2 + Family: .New York + Style: Bold G2 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG3: + Full Name: .New York Bold G3 + Family: .New York + Style: Bold G3 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldG4: + Full Name: .New York Bold G4 + Family: .New York + Style: Bold G4 + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Heavy: + Full Name: .New York Тяжелый + Family: .New York + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-Black: + Full Name: .New York Черный + Family: .New York + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .New York; 20.0d1e1; 2024-05-06 + Designer: Apple Inc. + Copyright: © 2017-2024 Apple Inc. All rights reserved. + Trademark: New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mishafi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mishafi.ttf + Typefaces: + DiwanMishafi: + Full Name: Mishafi Regular + Family: Mishafi + Style: Обычный + Version: 13.0d2e1 + Unique Name: Mishafi Regular; 13.0d2e1; 2017-06-28 + Copyright: © 1998-2000 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gungseouche.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f879347736afb6e4e0880bcede9df92492c0f040.asset/AssetData/Gungseouche.ttf + Typefaces: + JCkg: + Full Name: GungSeo Regular + Family: GungSeo + Style: Обычный + Version: 13.0d1e3 + Unique Name: GungSeo Regular; 13.0d1e3; 2017-06-12 + Copyright: Copyright (c) 1994-2003 Apple Computer, Inc. All rights reserved. + Trademark: Gunseo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mukta-Devanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c4ac3ef148f52416717030ac825c197150f3cdaf.asset/AssetData/Mukta-Devanagari.ttc + Typefaces: + Mukta-Bold: + Full Name: Mukta Bold + Family: Mukta + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Regular: + Full Name: Mukta Regular + Family: Mukta + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-SemiBold: + Full Name: Mukta SemiBold + Family: Mukta + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-ExtraLight: + Full Name: Mukta ExtraLight + Family: Mukta + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-ExtraBold: + Full Name: Mukta ExtraBold + Family: Mukta + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Medium: + Full Name: Mukta Medium + Family: Mukta + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mukta-Light: + Full Name: Mukta Light + Family: Mukta + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Girish Dalvi and Yashodeep Gholap + Copyright: Copyright (c) 2014, Girish Dalvi, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Light.otf + Typefaces: + SFProText-Light: + Full Name: SF Pro Text Light + Family: SF Pro Text + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Heavy.otf + Typefaces: + SFCompactRounded-Heavy: + Full Name: SF Compact Rounded Heavy + Family: SF Compact Rounded + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir Next Condensed.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir Next Condensed.ttc + Typefaces: + AvenirNextCondensed-DemiBold: + Full Name: Avenir Next Condensed Demi Bold + Family: Avenir Next Condensed + Style: Полужирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Demi Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-DemiBoldItalic: + Full Name: Avenir Next Condensed Demi Bold Italic + Family: Avenir Next Condensed + Style: Полужирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Demi Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Italic: + Full Name: Avenir Next Condensed Italic + Family: Avenir Next Condensed + Style: Курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-BoldItalic: + Full Name: Avenir Next Condensed Bold Italic + Family: Avenir Next Condensed + Style: Жирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-HeavyItalic: + Full Name: Avenir Next Condensed Heavy Italic + Family: Avenir Next Condensed + Style: Тяжелый курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Heavy Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Medium: + Full Name: Avenir Next Condensed Medium + Family: Avenir Next Condensed + Style: Средний + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Medium; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Bold: + Full Name: Avenir Next Condensed Bold + Family: Avenir Next Condensed + Style: Жирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-UltraLightItalic: + Full Name: Avenir Next Condensed Ultra Light Italic + Family: Avenir Next Condensed + Style: Ультралегкий курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Ultra Light Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-UltraLight: + Full Name: Avenir Next Condensed Ultra Light + Family: Avenir Next Condensed + Style: Ультралегкий + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Ultra Light; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Regular: + Full Name: Avenir Next Condensed Regular + Family: Avenir Next Condensed + Style: Обычный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Regular; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-Heavy: + Full Name: Avenir Next Condensed Heavy + Family: Avenir Next Condensed + Style: Тяжелый + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Heavy; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNextCondensed-MediumItalic: + Full Name: Avenir Next Medium Condensed Italic + Family: Avenir Next Condensed + Style: Средний курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Condensed Medium Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next Condensed for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next Condensed is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Khmer Sangam MN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Khmer Sangam MN.ttf + Typefaces: + KhmerSangamMN: + Full Name: Khmer Sangam MN + Family: Khmer Sangam MN + Style: Обычный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer Sangam MN; 14.0d1e9; 2018-03-01 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tahoma Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tahoma Bold.ttf + Typefaces: + Tahoma-Bold: + Full Name: Tahoma Полужирный + Family: Tahoma + Style: Полужирный + Version: Version 5.01.1x + Vendor: Microsoft Corporation + Unique Name: Microsoft Tahoma Bold + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Trademark: Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTMono.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTMono.ttc + Typefaces: + PTMono-Regular: + Full Name: PT Mono + Family: PT Mono + Style: Обычный + Version: 13.0d2e4 + Vendor: ParaType Ltd + Unique Name: PT Mono; 13.0d2e4; 2017-06-29 + Designer: A.Korolkova, I.Chaeva + Copyright: Copyright © 2010 ParaType Inc., ParaType Ltd. All rights reserved. + Trademark: PT Mono is a trademark of the ParaType Ltd. + Description: PT Mono -- is a monospaced font of the PT Project series. First families PT Sans and PT Serif were released in 2009 and 2010. PT Mono was developed for the special needs -- for use in forms, tables, work sheets etc. Equal widths of characters are very helpful in setting complex documents, with such font you may easily calculate size of entry fields, column widths in tables and so on. One of the most important area of use is Web sites of "electronic governments" where visitors have to fill different request forms. Designer Alexandra Korolkova with a participation of Bella Chaeva. Released by ParaType in 2011. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTMono-Bold: + Full Name: PT Mono Bold + Family: PT Mono + Style: Жирный + Version: 13.0d2e4 + Vendor: ParaType Ltd + Unique Name: PT Mono Bold; 13.0d2e4; 2017-06-29 + Designer: A.Korolkova, I.Chaeva + Copyright: Copyright © 2010 ParaType Inc., ParaType Ltd. All rights reserved. + Trademark: PT Mono is a trademark of the ParaType Ltd. + Description: PT Mono -- is a monospaced font of the PT Project series. First families PT Sans and PT Serif were released in 2009 and 2010. PT Mono was developed for the special needs -- for use in forms, tables, work sheets etc. Equal widths of characters are very helpful in setting complex documents, with such font you may easily calculate size of entry fields, column widths in tables and so on. One of the most important area of use is Web sites of "electronic governments" where visitors have to fill different request forms. Designer Alexandra Korolkova with a participation of Bella Chaeva. Released by ParaType in 2011. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact.ttf + Typefaces: + SFCompact-Light: + Full Name: SF Compact + Family: SF Compact + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Bold: + Full Name: SF Compact + Family: SF Compact + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Ultralight: + Full Name: SF Compact + Family: SF Compact + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Heavy: + Full Name: SF Compact + Family: SF Compact + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Semibold: + Full Name: SF Compact + Family: SF Compact + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Regular: + Full Name: SF Compact + Family: SF Compact + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Medium: + Full Name: SF Compact + Family: SF Compact + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Black: + Full Name: SF Compact + Family: SF Compact + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-Thin: + Full Name: SF Compact + Family: SF Compact + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Thin.otf + Typefaces: + SFCompactRounded-Thin: + Full Name: SF Compact Rounded Thin + Family: SF Compact Rounded + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuGothicPr6N.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0ab217c39c45c7c6acaddfa199fd32c55a7b4a19.asset/AssetData/ToppanBunkyuGothicPr6N.ttc + Typefaces: + ToppanBunkyuGothicPr6N-Regular: + Full Name: Toppan Bunkyu Gothic Regular + Family: Toppan Bunkyu Gothic + Style: Обычный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Gothic Regular; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ToppanBunkyuGothicPr6N-DB: + Full Name: Toppan Bunkyu Gothic Demibold + Family: Toppan Bunkyu Gothic + Style: Полужирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Gothic Demibold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro.ttf + Typefaces: + SFPro-CondensedThin: + Full Name: SF Pro Сжатый тонкий + Family: SF Pro + Style: Сжатый тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedMedium: + Full Name: SF Pro Расширенный средний + Family: SF Pro + Style: Расширенный средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedLight: + Full Name: SF Pro Узкий легкий + Family: SF Pro + Style: Узкий легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedThin: + Full Name: SF Pro Расширенный тонкий + Family: SF Pro + Style: Расширенный тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedBlack: + Full Name: SF Pro Расширенный черный + Family: SF Pro + Style: Расширенный черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedMedium: + Full Name: SF Pro Сжатый средний + Family: SF Pro + Style: Сжатый средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedLight: + Full Name: SF Pro Сжатый легкий + Family: SF Pro + Style: Сжатый легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedSemibold: + Full Name: SF Pro Расширенный полужирный + Family: SF Pro + Style: Расширенный полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedUltralight: + Full Name: SF Pro Узкий ультралегкий + Family: SF Pro + Style: Узкий ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Bold: + Full Name: SF Pro Жирный + Family: SF Pro + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedBold: + Full Name: SF Pro Узкий жирный + Family: SF Pro + Style: Узкий жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedBold: + Full Name: SF Pro Расширенный жирный + Family: SF Pro + Style: Расширенный жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedMedium: + Full Name: SF Pro Узкий средний + Family: SF Pro + Style: Узкий средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedThin: + Full Name: SF Pro Узкий тонкий + Family: SF Pro + Style: Узкий тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedHeavy: + Full Name: SF Pro Узкий тяжелый + Family: SF Pro + Style: Узкий тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Semibold: + Full Name: SF Pro Полужирный + Family: SF Pro + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedBlack: + Full Name: SF Pro Сжатый черный + Family: SF Pro + Style: Сжатый черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedUltralight: + Full Name: SF Pro Сжатый ультралегкий + Family: SF Pro + Style: Сжатый ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Medium: + Full Name: SF Pro Средний + Family: SF Pro + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Ultralight: + Full Name: SF Pro Ультралегкий + Family: SF Pro + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedLight: + Full Name: SF Pro Расширенный легкий + Family: SF Pro + Style: Расширенный легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Regular: + Full Name: SF Pro Обычный + Family: SF Pro + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedRegular: + Full Name: SF Pro Узкий обычный + Family: SF Pro + Style: Узкий обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Thin: + Full Name: SF Pro Тонкий + Family: SF Pro + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedSemibold: + Full Name: SF Pro Сжатый полужирный + Family: SF Pro + Style: Сжатый полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedHeavy: + Full Name: SF Pro Сжатый тяжелый + Family: SF Pro + Style: Сжатый тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Light: + Full Name: SF Pro Легкий + Family: SF Pro + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedBlack: + Full Name: SF Pro Узкий черный + Family: SF Pro + Style: Узкий черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedRegular: + Full Name: SF Pro Сжатый обычный + Family: SF Pro + Style: Сжатый обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedUltralight: + Full Name: SF Pro Расширенный ультралегкий + Family: SF Pro + Style: Расширенный ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Heavy: + Full Name: SF Pro Тяжелый + Family: SF Pro + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CondensedBold: + Full Name: SF Pro Сжатый жирный + Family: SF Pro + Style: Сжатый жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedHeavy: + Full Name: SF Pro Расширенный тяжелый + Family: SF Pro + Style: Расширенный тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-Black: + Full Name: SF Pro Черный + Family: SF Pro + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-CompressedSemibold: + Full Name: SF Pro Узкий полужирный + Family: SF Pro + Style: Узкий полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ExpandedRegular: + Full Name: SF Pro Расширенный обычный + Family: SF Pro + Style: Расширенный обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Black.otf + Typefaces: + SFCompactDisplay-Black: + Full Name: SF Compact Display Black + Family: SF Compact Display + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LastResort.otf: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/LastResort.otf + Typefaces: + LastResort: + Full Name: .LastResort + Family: .LastResort + Style: Обычный + Version: 19.4d1e2 + Vendor: Apple Inc. + Unique Name: .LastResort; 19.4d1e2; 2024-01-17 + Copyright: © 1998-2020 Apple Inc. + Description: The Last Resort font is used by the system to display a glyph for arbitrary code points when no other font can be found. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Malayalam Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Malayalam Sangam MN.ttc + Typefaces: + MalayalamSangamMN-Bold: + Full Name: Malayalam Sangam MN Bold + Family: Malayalam Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Malayalam Sangam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Malayalam Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MalayalamSangamMN: + Full Name: Malayalam Sangam MN + Family: Malayalam Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Malayalam Sangam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Malayalam Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LingWaiTC-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/b8cf53b3591d6062cd536ba5129454cba899a078.asset/AssetData/LingWaiTC-Medium.otf + Typefaces: + MLingWaiMedium-TC: + Full Name: LingWai TC Medium + Family: LingWai TC + Style: Средний + Version: 13.0d1e2 + Unique Name: LingWai TC Medium; 13.0d1e2; 2017-06-29 + Copyright: (C) Copyright 1991-2012 Monotype Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFGeorgianRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFGeorgianRounded.ttf + Typefaces: + .SFGeorgianRounded-Regular: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Обычный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Medium: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Средний + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Light: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Легкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Thin: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Тонкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Ultralight: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Ультралегкий + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Semibold: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Полужирный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Bold: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Жирный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Heavy: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Тяжелый + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgianRounded-Black: + Full Name: .SF Georgian Rounded + Family: .SF Georgian Rounded + Style: Черный + Version: 19.0d4e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian Rounded; 19.0d4e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Chalkduster.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Chalkduster.ttf + Typefaces: + Chalkduster: + Full Name: Chalkduster + Family: Chalkduster + Style: Обычный + Version: 13.0d2e1 + Unique Name: Chalkduster; 13.0d2e1; 2017-07-06 + Copyright: Copyright 2008 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Black.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Black.ttf + Typefaces: + Arial-Black: + Full Name: Arial Black Обычный + Family: Arial Black + Style: Обычный + Version: Version 5.00.1x + Vendor: Monotype Typography, Inc. + Unique Name: Monotype - Arial Black Regular + Designer: Robin Nicholas, Patricia Saunders + Copyright: C 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Regular.otf + Typefaces: + SFCompactRounded-Regular: + Full Name: SF Compact Rounded Regular + Family: SF Compact Rounded + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-RegularItalic.otf + Typefaces: + SFProText-RegularItalic: + Full Name: SF Pro Text Regular Italic + Family: SF Pro Text + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Regular Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-ThinItalic.otf + Typefaces: + SFCompactText-ThinItalic: + Full Name: SF Compact Text Thin Italic + Family: SF Compact Text + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow.ttf + Typefaces: + ArialNarrow: + Full Name: Arial Narrow + Family: Arial Narrow + Style: Обычный + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Regular : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHannaPro-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5f2614e7b55639e709d8578e16b324b3eb6eb065.asset/AssetData/BMHannaPro-Regular.otf + Typefaces: + BMHANNAProOTF: + Full Name: BM HANNA Pro OTF + Family: BM Hanna Pro + Style: Обычный + Version: 18.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM HANNA Pro OTF; 18.0d1e6; 2022-09-27 + Designer: Woowa Brothers : Cheoljun Lim; Soyoung Lee; & Sandoll : Jooyeon Kang; + Copyright: Copyright © 2018 WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BM HANNA Pro is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Italic.ttf + Typefaces: + TrebuchetMS-Italic: + Full Name: Trebuchet MS Курсив + Family: Trebuchet MS + Style: Курсив + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Italic + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroKannada.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5c6a8022433e3c6f43cdd03f724107e103c0edaf.asset/AssetData/TiroKannada.ttc + Typefaces: + TiroKannada: + Full Name: Tiro Kannada + Family: Tiro Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Kannada; 20.0d1e2; 2024-07-05 + Designer: Kannada: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Kannada is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroKannada-Italic: + Full Name: Tiro Kannada Italic + Family: Tiro Kannada + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Kannada Italic; 20.0d1e2; 2024-07-05 + Designer: Kannada: John Hudson & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Kannada is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansBatak-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansBatak-Regular.ttf + Typefaces: + NotoSansBatak-Regular: + Full Name: Noto Sans Batak Regular + Family: Noto Sans Batak + Style: Обычный + Version: Version 2.002 + Vendor: Monotype Imaging Inc. + Unique Name: 2.002;GOOG;NotoSansBatak-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/batak) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Light.otf + Typefaces: + SFProDisplay-Light: + Full Name: SF Pro Display Light + Family: SF Pro Display + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Italic.ttf + Typefaces: + Arial-ItalicMT: + Full Name: Arial Курсив + Family: Arial + Style: Курсив + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Regular Italic:Version 3.14 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-RegularItalic.otf + Typefaces: + SFProDisplay-RegularItalic: + Full Name: SF Pro Display Regular Italic + Family: SF Pro Display + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Regular Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W4.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W4.ttc + Typefaces: + HiraginoSans-W4: + Full Name: Hiragino Sans W4 + Family: Hiragino Sans + Style: W4 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W4; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W4: + Full Name: .Hiragino Kaku Gothic Interface W4 + Family: .Hiragino Kaku Gothic Interface + Style: W4 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W4; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TimesLTMM: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/TimesLTMM + Typefaces: + TimesLTMM: + Full Name: .Times LT MM + Family: .Times LT MM + Style: Обычный + Version: 1,006 + Unique Name: .Times LT MM + Copyright: Copyright © 1985, 1987, 1989, 1990, 1993, 1997 - 1999 Adobe Systems Incorporated. All Rights Reserved. © 1981, 1999, 2002 - 2004 Heidelberger Druckmaschinen AG. All rights reserved. + Trademark: Times is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype Library GmbH, and oay be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooPaajiGurmukhi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e327d387cc15b19ad4054d8a483408047a607091.asset/AssetData/BalooPaajiGurmukhi.ttc + Typefaces: + BalooPaaji2-Regular: + Full Name: Baloo Paaji 2 Regular + Family: Baloo Paaji 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-ExtraBold: + Full Name: Baloo Paaji 2 ExtraBold + Family: Baloo Paaji 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-Bold: + Full Name: Baloo Paaji 2 Bold + Family: Baloo Paaji 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-SemiBold: + Full Name: Baloo Paaji 2 SemiBold + Family: Baloo Paaji 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooPaaji2-Medium: + Full Name: Baloo Paaji 2 Medium + Family: Baloo Paaji 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Paaji 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Shuchita Grover, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tahoma.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tahoma.ttf + Typefaces: + Tahoma: + Full Name: Tahoma + Family: Tahoma + Style: Обычный + Version: Version 5.01.2x + Vendor: Microsoft Corporation + Unique Name: Microsoft Tahoma Regular + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Trademark: Tahoma is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-LightItalic.otf + Typefaces: + SFProText-LightItalic: + Full Name: SF Pro Text Light Italic + Family: SF Pro Text + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Pilgiche.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7ca27bc02dd7660f9dacd69df96d24639b96e080.asset/AssetData/Pilgiche.ttf + Typefaces: + JCfg: + Full Name: PilGi Regular + Family: PilGi + Style: Обычный + Version: 13.0d2e5 + Unique Name: PilGi Regular; 13.0d2e5; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: Pilgiche is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lao MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Lao MN.ttc + Typefaces: + LaoMN-Bold: + Full Name: Lao MN Bold + Family: Lao MN + Style: Жирный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao MN Bold; 14.0d1e9; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LaoMN: + Full Name: Lao MN + Family: Lao MN + Style: Обычный + Version: 14.0d1e9 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao MN; 14.0d1e9; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kannada Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kannada Sangam MN.ttc + Typefaces: + KannadaSangamMN: + Full Name: Kannada Sangam MN + Family: Kannada Sangam MN + Style: Обычный + Version: 20.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Kannada Sangam MN; 20.0d1e1; 2024-06-10 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Kannada Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KannadaSangamMN-Bold: + Full Name: Kannada Sangam MN Bold + Family: Kannada Sangam MN + Style: Жирный + Version: 20.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Kannada Sangam MN Bold; 20.0d1e1; 2024-06-10 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Kannada Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuGothic-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/42062e40d643fdb5bb3fba917212352fb0690de0.asset/AssetData/YuGothic-Bold.otf + Typefaces: + YuGo-Bold: + Full Name: YuGothic Bold + Family: YuGothic + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuGothic Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a Trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Myanmar MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Myanmar MN.ttc + Typefaces: + MyanmarMN: + Full Name: Myanmar MN + Family: Myanmar MN + Style: Обычный + Version: 14.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar MN; 14.0d1e2; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MyanmarMN-Bold: + Full Name: Myanmar MN Bold + Family: Myanmar MN + Style: Жирный + Version: 14.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar MN Bold; 14.0d1e2; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings 3.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings 3.ttf + Typefaces: + Wingdings3: + Full Name: Wingdings 3 + Family: Wingdings 3 + Style: Обычный + Version: Version 1.55x + Unique Name: Wingdings 3 + Copyright: Wingdings 3 designed by Bigelow & Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved. + Trademark: Wingdings is a trademark of Microsoft Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trattatello.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trattatello.ttf + Typefaces: + Trattatello: + Full Name: Trattatello + Family: Trattatello + Style: Обычный + Version: 13.0d2e2 + Vendor: James Grieshaber + Unique Name: Trattatello; 13.0d2e2; 2017-06-20 + Designer: James Grieshaber + Copyright: Copyright (c) James Grieshaber, 2005. All rights reserved. + Description: Copyright (c) James Grieshaber, 2005. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AkayaTelivigala-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fe626522d20d087ba21e23b49d41f77136e07e29.asset/AssetData/AkayaTelivigala-regular.ttf + Typefaces: + AkayaTelivigala-Regular: + Full Name: AkayaTelivigala-Regular + Family: AkayaTelivigala + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: AkayaTelivigala; 20.0d1e2 (1.000); 2024-07-09 + Designer: Vaishnavi Murthy Yerkadithaya ( vaishnavimurthy@gmail.com ), Juan Luis Blanco Aristondo ( juan@blancoletters.com ) + Copyright: Copyright © Akaya Telivigala 2015 Vaishnavi Murthy, Juan Luis Blanco Aristondo + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHeiti Light.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/STHeiti Light.ttc + Typefaces: + STHeitiSC-Light: + Full Name: Heiti SC Light + Family: Heiti SC + Style: Светлый + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti SC Light; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STHeitiTC-Light: + Full Name: Heiti TC Light + Family: Heiti TC + Style: Светлый + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti TC Light; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroSanskrit.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ff251c85442877182be2bbab64747d3c2ce8446a.asset/AssetData/TiroSanskrit.ttc + Typefaces: + TiroDevaSanskrit: + Full Name: Tiro Devanagari Sanskrit + Family: Tiro Devanagari Sanskrit + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Sanskrit; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Sanskrit is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaSanskrit-Italic: + Full Name: Tiro Devanagari Sanskrit Italic + Family: Tiro Devanagari Sanskrit + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Sanskrit Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Sanskrit and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-BoldItalic.otf + Typefaces: + SFProDisplay-BoldItalic: + Full Name: SF Pro Display Bold Italic + Family: SF Pro Display + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCondensedTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/26fae641eb2d1f672737dffcde972f770e1fe764.asset/AssetData/OctoberCondensedTamil.ttc + Typefaces: + OctoberCondensedTLHairline: + Full Name: October Condensed Tamil Hairline + Family: October Condensed Tamil + Style: С соединительными штрихами + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Hairline; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLExtraLight: + Full Name: October Condensed Tamil ExtraLight + Family: October Condensed Tamil + Style: Сверхлегкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil ExtraLight; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLThin: + Full Name: October Condensed Tamil Thin + Family: October Condensed Tamil + Style: Тонкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Thin; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLMedium: + Full Name: October Condensed Tamil Medium + Family: October Condensed Tamil + Style: Средний + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Medium; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLHeavy: + Full Name: October Condensed Tamil Heavy + Family: October Condensed Tamil + Style: Тяжелый + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Heavy; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLBold: + Full Name: October Condensed Tamil Bold + Family: October Condensed Tamil + Style: Жирный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Bold; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLBlack: + Full Name: October Condensed Tamil Black + Family: October Condensed Tamil + Style: Черный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Black; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLRegular: + Full Name: October Condensed Tamil Regular + Family: October Condensed Tamil + Style: Обычный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Regular; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedTLLight: + Full Name: October Condensed Tamil Light + Family: October Condensed Tamil + Style: Легкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Condensed Tamil Light; 15.0d1e4; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Semibold.otf + Typefaces: + SFCompactText-Semibold: + Full Name: SF Compact Text Semibold + Family: SF Compact Text + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Nadeem.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Nadeem.ttc + Typefaces: + Nadeem: + Full Name: Nadeem Regular + Family: Nadeem + Style: Обычный + Version: 18.0d1e1 + Unique Name: Nadeem Regular; 18.0d1e1; 2022-02-07 + Copyright: Nadeem designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and +its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NadeemPUA: + Full Name: .Nadeem PUA + Family: .Nadeem PUA + Style: Обычный + Version: 18.0d1e1 + Unique Name: .Nadeem PUA; 18.0d1e1; 2022-02-07 + Copyright: .Nadeem PUA designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and +its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSRounded.ttf + Typefaces: + .SFNSRounded-Regular: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-RegularG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Regular G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Medium: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-MediumG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Medium G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Light: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-LightG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Light G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Thin: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-ThinG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Thin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Ultralight: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltralightG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: UltralightG4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Ultrathin: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-UltrathinG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Ultrathin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Semibold: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-SemiboldG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Semibold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Bold: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-BoldG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Bold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Heavy: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG1: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG2: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG3: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-HeavyG4: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Heavy G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSRounded-Black: + Full Name: .SF NS Rounded + Family: .SF NS Rounded + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF NS Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Ultralight.otf + Typefaces: + SFCompactRounded-Ultralight: + Full Name: SF Compact Rounded Ultralight + Family: SF Compact Rounded + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorGujarati.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorGujarati.ttc + Typefaces: + KohinoorGujarati-Semibold: + Full Name: Kohinoor Gujarati Semibold + Family: Kohinoor Gujarati + Style: Полужирный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Semibold; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Light: + Full Name: Kohinoor Gujarati Light + Family: Kohinoor Gujarati + Style: Легкий + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Light; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Regular: + Full Name: Kohinoor Gujarati Regular + Family: Kohinoor Gujarati + Style: Обычный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Regular; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Medium: + Full Name: Kohinoor Gujarati Medium + Family: Kohinoor Gujarati + Style: Средний + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Medium; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorGujarati-Bold: + Full Name: Kohinoor Gujarati Bold + Family: Kohinoor Gujarati + Style: Жирный + Version: 20.0d1e2 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Gujarati Bold; 20.0d1e2; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2014, 2016 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of the Indian Type Foundry. + Description: Kohinoor Gujarati is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f79ae6354d4eadea4ad91c60d0bdfe6803b486b7.asset/AssetData/SamaKannada.ttc + Typefaces: + SamaKannada-Medium: + Full Name: Sama Kannada Medium + Family: Sama Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Medium; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-SemiBold: + Full Name: Sama Kannada SemiBold + Family: Sama Kannada + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada SemiBold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Regular: + Full Name: Sama Kannada Regular + Family: Sama Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Regular; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Bold: + Full Name: Sama Kannada Bold + Family: Sama Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Bold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-ExtraBold: + Full Name: Sama Kannada ExtraBold + Family: Sama Kannada + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaKannada-Book: + Full Name: Sama Kannada Book + Family: Sama Kannada + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Kannada Book; 20.0d1e2; 2024-07-05 + Designer: Maithili Shingre and Vaijayanti Ajinkya + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMidashiMinchoStdN-ExtraBold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/40e56e4eafd8b4db78ffe316f64ac4bedba37b53.asset/AssetData/ToppanBunkyuMidashiMinchoStdN-ExtraBold.otf + Typefaces: + ToppanBunkyuMidashiMinchoStdN-ExtraBold: + Full Name: Toppan Bunkyu Midashi Mincho Extrabold + Family: Toppan Bunkyu Midashi Mincho + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Midashi Mincho Extrabold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GotuDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c41fcba3ecd9a163d2fa789efb7f4639c395c553.asset/AssetData/GotuDevanagari-Regular.ttf + Typefaces: + Gotu: + Full Name: Gotu + Family: Gotu + Style: Обычный + Version: 20.0d1e2 (2.320) + Vendor: Ek Type + Unique Name: Gotu; 20.0d1e2 (2.320); 2024-07-08 + Designer: Sarang Kulkarni & Kailash Malviya + Copyright: Copyright 2019 The Gotu Project Authors (https://github.com/EkType/Gotu) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AquaKana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/AquaKana.ttc + Typefaces: + AquaKana: + Full Name: .Aqua Kana + Family: .Aqua Kana + Style: Обычный + Version: 13.0d1e4 + Vendor: DAINIPPON SCREEN MFG. CO., LTD. + Unique Name: .Aqua Kana; 13.0d1e4; 2017-06-02 + Designer: JIYU-KOBO Ltd. + Copyright: Copyright © 2001-2011 Apple Inc. All rights reserved. + Trademark: Aqua Kana is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AquaKana-Bold: + Full Name: .Aqua Kana Bold + Family: .Aqua Kana + Style: Жирный + Version: 13.0d1e4 + Vendor: DAINIPPON SCREEN MFG. CO., LTD. + Unique Name: .Aqua Kana Bold; 13.0d1e4; 2017-06-02 + Designer: JIYU-KOBO Ltd. + Copyright: Copyright © 2001-2011 Apple Inc. All rights reserved. + Trademark: Aqua Kana is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Bold Italic.ttf + Typefaces: + TimesNewRomanPS-BoldItalicMT: + Full Name: Times New Roman Полужирный Курсив + Family: Times New Roman + Style: Полужирный Курсив + Version: Version 5.00.3x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Bold Italic:Version 5.00 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Bold.ttf + Typefaces: + TrebuchetMS-Bold: + Full Name: Trebuchet MS Полужирный + Family: Trebuchet MS + Style: Полужирный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Bold + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kavivanar-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c3a843d226791256d897018e02e6c09b1ef283a9.asset/AssetData/Kavivanar-regular.ttf + Typefaces: + Kavivanar-Regular: + Full Name: Kavivanar + Family: Kavivanar + Style: Обычный + Version: 20.0d1e2 (1.89) + Vendor: Tharique Azeez + Unique Name: Kavivanar; 20.0d1e2 (1.89); 2024-07-05 + Designer: Tharique Azeez + Copyright: Copyright (c) 2015, Tharique Azeez (http://thariqueazeez.com|zeezat@gmail.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Katari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1904a9ad9c351e8ae2c6fe50480760c0f90333d5.asset/AssetData/Katari.ttc + Typefaces: + Katari-Bold: + Full Name: Katari Bold + Family: Katari + Style: Жирный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Bold; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Italic: + Full Name: Katari Italic + Family: Katari + Style: Курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-MediumItalic: + Full Name: Katari Medium Italic + Family: Katari + Style: Средний курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Medium Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Medium: + Full Name: Katari Medium + Family: Katari + Style: Средний + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Medium; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-BoldItalic: + Full Name: Katari Bold Italic + Family: Katari + Style: Жирный курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Bold Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-BlackItalic: + Full Name: Katari Black Italic + Family: Katari + Style: Черный курсивный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Black Italic; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright (c) 2010 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Regular: + Full Name: Katari Regular + Family: Katari + Style: Обычный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Regular; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 Erin McLaughlin. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Katari-Black: + Full Name: Katari Black + Family: Katari + Style: Черный + Version: 20.0d1e3 + Vendor: Fontwala + Unique Name: Katari Black; 20.0d1e3; 2024-07-05 + Designer: Erin McLaughlin + Copyright: Copyright © 2010, 2020 by Erin McLaughlin. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Heavy.otf + Typefaces: + SFCompactDisplay-Heavy: + Full Name: SF Compact Display Heavy + Family: SF Compact Display + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GujaratiMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/GujaratiMT.ttc + Typefaces: + GujaratiMT: + Full Name: Gujarati MT + Family: Gujarati MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Gujarati MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1996 . All rights reserved. + Trademark: Monotype Gujarati is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GujaratiMT-Bold: + Full Name: Gujarati MT Bold + Family: Gujarati MT + Style: Жирный + Version: 20.0d1e2 + Unique Name: Gujarati MT Bold; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd 1994 . All rights reserved. + Trademark: Monotype Gujarati is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings.ttf + Typefaces: + Wingdings-Regular: + Full Name: Wingdings + Family: Wingdings + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Typography + Unique Name: Wingdings Regular: MS: 2006 + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Wingdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Description: The Wingdings fonts were designed by Kris Holmes and Charles Bigelow in 1990 and 1991. + +The fonts were originally named Lucida Icons, Arrows, and Stars to complement the Lucida text font family by the same designers. Renamed, reorganized, and released in 1992 as Microsoft Wingdings, the three fonts provide a harmoniously designed set of icons representing the common components of personal computer systems and the elements of graphical user interfaces. + +There are icons for PC, monitor, keyboard, mouse, trackball, hard drive, diskette, tape cassette, printer, fax, etc., as well as icons for file folders, documents, mail, mailboxes, windows, clipboard, and wastebasket. In addition, Wingdings includes icons with both traditional and computer significance, such as writing tools and hands, reading glasses, clipping scissors, bell, bomb, check boxes, as well as more traditional images such as weather signs, religious symbols, astrological signs, encircled numerals, a selection of ampersands and interrobangs, plus elegant flowers and flourishes. + +Pointing and indicating are frequent functions in graphical interfaces, so in addition to a wide selection of pointing hands, the Wingdings fonts also offer arrows in careful gradations of weight and different directions and styles. For variety and impact as bullets, asterisks, and ornaments, Windings also offers a varied set of geometric circles, squares, polygons, targets, and stars. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Futura.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Futura.ttc + Typefaces: + Futura-Bold: + Full Name: Futura Bold + Family: Futura + Style: Жирный + Version: 16.0d2e1 + Unique Name: Futura Bold; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928), Marie-Thérèse Koreman (1997, 2016) + Copyright: © Copyright 1998, 2016 Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998, 2016. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. In 2016 the Visualogik Design Staff, headed by Marie-Thérèse Koreman, developed completely new character sets for greek and cyrillic, true to the Renner ideas and the early considerations of the Bauersche Giesserei, with a special eye for contemporary digital demands. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-MediumItalic: + Full Name: Futura Medium Italic + Family: Futura + Style: Средний курсивный + Version: 16.0d2e1 + Unique Name: Futura Medium Italic; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-CondensedExtraBold: + Full Name: Futura Condensed ExtraBold + Family: Futura + Style: Узкий сверхжирный + Version: 16.0d2e1 + Unique Name: Futura Condensed ExtraBold; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-Medium: + Full Name: Futura Medium + Family: Futura + Style: Средний + Version: 16.0d2e1 + Unique Name: Futura Medium; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Futura-CondensedMedium: + Full Name: Futura Condensed Medium + Family: Futura + Style: Узкий средний + Version: 16.0d2e1 + Unique Name: Futura Condensed Medium; 16.0d2e1; 2020-07-06 + Designer: Paul Renner (1928) + Copyright: © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is licensed, not sold, and may not be reproduced without the written consent of Neufville Digital. Parts © Visualogik Technology & Design, 1998. + Trademark: Futura is a registered trademark of Bauer Types SA. Unauthorised use prohibited. ALL RIGHTS RESERVED. Neufville Digital is a trademark of Visualogik, used with the permission of Neufville SL. + Description: Paul Renner (1878-1956) was a painter, typographer, typeface designer and teacher. Between 1908 and 1917 he designed thousands of books for Munich publishers in a refined traditional style. In the early 1920s he began to support the modern styles of architecture and typography, becoming a leading proponent of the New Typography. Renner is best known for designing the typeface Futura, which became a standard tool for the New Typography, and remains a popular typeface today. Futura does give a restful, almost bland impression, which accords with Renner's objectives. Futura seems classical, not only due to the form of its capitals, but also to the open, wide forms of the geometrical small letters. The typeface relies on notions of classical, yet contemporary form, - harmony and evenness of texture. Thanks to the modern digital technology Futura lives on in a greater variety than ever, offering a wide choice of typographic solutions for contemporary design in the new millennium. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansSyriac-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansSyriac-Regular.ttf + Typefaces: + NotoSansSyriac-Regular_Thin: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Тонкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_SemiBold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Полужирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_ExtraLight: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Сверхлегкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_ExtraBold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Сверхжирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Обычный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Light: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Легкий + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Medium: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Средний + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Black: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Черный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansSyriac-Regular_Bold: + Full Name: Noto Sans Syriac Regular + Family: Noto Sans Syriac + Style: Жирный + Version: Version 3.000 + Vendor: Monotype Imaging Inc. + Unique Name: 3.000;GOOG;NotoSansSyriac-Regular + Designer: Patrick Giasson and the Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/syriac) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHanna11yrs-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/157acc4d862730d6d5beaa943546f80a71948c7b.asset/AssetData/BMHanna11yrs-Regular.otf + Typefaces: + BMHANNA11yrsoldOTF: + Full Name: BM HANNA 11yrs old OTF + Family: BM Hanna 11yrs Old + Style: Обычный + Version: 18.0d1e6 + Vendor: Woowa Brothers Corp. + Unique Name: BM HANNA 11yrs old OTF; 18.0d1e6; 2022-09-27 + Designer: Bongjin Kim; Jaehyun Keum; Juhee Tae; Minjung Kim; + Copyright: Copyright © WOOWA BROTHERS Corporation + Trademark: BMHANNA11yrsoldOTF is a registered trademark of Woowa Brothers Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LiSongPro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5a3fc034b64879656271c040cab38b65d4ea6548.asset/AssetData/LiSongPro.ttf + Typefaces: + LiSongPro: + Full Name: LiSong Pro + Family: LiSong Pro + Style: Светлый + Version: 17.0d1e2 + Unique Name: LiSong Pro; 17.0d1e2; 2021-06-23 + Copyright: (c) Copyright DynaComware Corp. 2003 + Trademark: Trademark by DynaComware Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Srisakdi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/988d97c87efe350cfa398b9ae4e822431f92d59b.asset/AssetData/Srisakdi.ttc + Typefaces: + Srisakdi-Regular: + Full Name: Srisakdi Regular + Family: Srisakdi + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Srisakdi-Regular + Designer: Cadson Demak Co.,Ltd. + Copyright: Copyright 2018 The Srisakdi Project Authors (https://github.com/cadsondemak/Srisakdi) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Srisakdi-Bold: + Full Name: Srisakdi Bold + Family: Srisakdi + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Srisakdi-Bold + Designer: Cadson Demak Co.,Ltd. + Copyright: Copyright 2018 The Srisakdi Project Authors (https://github.com/cadsondemak/Srisakdi) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Black.otf + Typefaces: + SFProText-Black: + Full Name: SF Pro Text Black + Family: SF Pro Text + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Thin.otf + Typefaces: + SFCompactDisplay-Thin: + Full Name: SF Compact Display Thin + Family: SF Compact Display + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PadyakkeExpandedOne-regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/107ec29d3748811d6b299a0537bce535b21a95b7.asset/AssetData/PadyakkeExpandedOne-regular.otf + Typefaces: + PadyakkeExpandedOne-Regular: + Full Name: PadyakkeExpandedOne-Regular + Family: Padyakke Expanded One + Style: Обычный + Version: 20.0d1e2 (1.402) + Vendor: Dunwich Type Founders + Unique Name: Padyakke Expanded One; 20.0d1e2 (1.402); 2024-07-05 + Designer: James Puckett + Copyright: Copyright (c) 2015 The Padyakke Project Authors (padyakkefonts@gmail.com). Padyakke is a trademark of Dunwich Type Founders. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Bold Italic.ttf + Typefaces: + Arial-BoldItalicMT: + Full Name: Arial Полужирный Курсив + Family: Arial + Style: Полужирный Курсив + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Bold Italic:version 3.14 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KohinoorBangla.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/KohinoorBangla.ttc + Typefaces: + KohinoorBangla-Bold: + Full Name: Kohinoor Bangla Bold + Family: Kohinoor Bangla + Style: Жирный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Bold; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Light: + Full Name: Kohinoor Bangla Light + Family: Kohinoor Bangla + Style: Легкий + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Light; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Regular: + Full Name: Kohinoor Bangla + Family: Kohinoor Bangla + Style: Обычный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Medium: + Full Name: Kohinoor Bangla Medium + Family: Kohinoor Bangla + Style: Средний + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Medium; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorBangla-Semibold: + Full Name: Kohinoor Bangla Semibold + Family: Kohinoor Bangla + Style: Полужирный + Version: 20.0d1e7 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Bangla Semibold; 20.0d1e7; 2024-07-05 + Designer: Satya Rajpurohit, Jyotish Sonowal + Copyright: Copyright 2015 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Bangla is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2015 by Satya Rajpurohit and Jyotish Sonowal. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Bold.otf + Typefaces: + SFCompactRounded-Bold: + Full Name: SF Compact Rounded Bold + Family: SF Compact Rounded + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Ultralight.otf + Typefaces: + SFProText-Ultralight: + Full Name: SF Pro Text Ultralight + Family: SF Pro Text + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoText.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoText.ttf + Typefaces: + STIXTwoText_Bold: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Жирный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText_SemiBold: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Полужирный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Обычный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText_Medium: + Full Name: STIX Two Text + Family: STIX Two Text + Style: Средний + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Copperplate.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Copperplate.ttc + Typefaces: + Copperplate: + Full Name: Copperplate + Family: Copperplate + Style: Обычный + Version: 13.0d1e2 + Unique Name: Copperplate; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Copperplate-Light: + Full Name: Copperplate Light + Family: Copperplate + Style: Светлый + Version: 13.0d1e2 + Unique Name: Copperplate Light; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Copperplate-Bold: + Full Name: Copperplate Bold + Family: Copperplate + Style: Жирный + Version: 13.0d1e2 + Unique Name: Copperplate Bold; 13.0d1e2; 2017-06-09 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Copperplate is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Thin.otf + Typefaces: + SFProText-Thin: + Full Name: SF Pro Text Thin + Family: SF Pro Text + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AnnaiMN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5d0add7d16e666bc8481ceaa16014eae1eeb2ef9.asset/AssetData/AnnaiMN.ttf + Typefaces: + AnnaiMN-Regular: + Full Name: Annai MN Regular + Family: Annai MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. + Unique Name: Annai MN Regular; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010, 2020 by Murasu Systems Sdn. Bhd. All rights reserved. + Trademark: Annai MN is a trademark of Murasu Systems Sdn. Bhd. + Description: Copyright (c) 2010, 2020 by Murasu Systems Sdn. Bhd. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baskerville.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Baskerville.ttc + Typefaces: + Baskerville: + Full Name: Baskerville + Family: Baskerville + Style: Обычный + Version: 13.0d1e10 + Unique Name: Baskerville; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-SemiBoldItalic: + Full Name: Baskerville SemiBold Italic + Family: Baskerville + Style: Полужирный курсивный + Version: 13.0d1e10 + Unique Name: Baskerville SemiBold Italic; 13.0d1e10; 2017-06-15 + Copyright: Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Trademark: Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-SemiBold: + Full Name: Baskerville SemiBold + Family: Baskerville + Style: Полужирный + Version: 13.0d1e10 + Unique Name: Baskerville SemiBold; 13.0d1e10; 2017-06-15 + Copyright: Digitized data copyright © 2000 Agfa Monotype Corporation. All rights reserved. Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Trademark: Monotype Baskervilleª is a trademark of Agfa Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-Bold: + Full Name: Baskerville Bold + Family: Baskerville + Style: Жирный + Version: 13.0d1e10 + Unique Name: Baskerville Bold; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-Italic: + Full Name: Baskerville Italic + Family: Baskerville + Style: Курсивный + Version: 13.0d1e10 + Unique Name: Baskerville Italic; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baskerville-BoldItalic: + Full Name: Baskerville Bold Italic + Family: Baskerville + Style: Жирный курсивный + Version: 13.0d1e10 + Unique Name: Baskerville Bold Italic; 13.0d1e10; 2017-06-15 + Designer: John Baskerville + Copyright: Digitized data copyright Monotype Typography, Ltd 1991-1997. All rights reserved. Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Trademark: Monotype Baskerville™ is a trademark of Monotype Typography, Ltd which may be registered in certain jurisdictions. + Description: - + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bangla MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bangla MN.ttc + Typefaces: + BanglaMN-Bold: + Full Name: Bangla MN Bold + Family: Bangla MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla MN Bold is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BanglaMN: + Full Name: Bangla MN + Family: Bangla MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AkayaKannada-regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5cd9eaf98e75b3a998edeef7a7c385a7a158ce51.asset/AssetData/AkayaKannada-regular.ttf + Typefaces: + AkayaKanadaka-Regular: + Full Name: AkayaKanadaka-Regular + Family: AkayaKanadaka + Style: Обычный + Version: 20.0d1e2 (1.000) + Unique Name: AkayaKanadaka; 20.0d1e2 (1.000); 2024-07-09 + Designer: Vaishnavi Murthy Yerkadithaya, Juan Luis Blanco Aristondo + Copyright: Copyright (c) 2015 Vaishnavi Murthy Yerkadithaya ( vaishnavimurthy@gmail.com ), Juan Luis Blanco Aristondo ( juan@blancoletters.com ) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ITFDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/ITFDevanagari.ttc + Typefaces: + ITFDevanagariMarathi-Bold: + Full Name: ITFDevanagari Marathi-Bold + Family: ITF Devanagari Marathi + Style: Жирный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Bold; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Bold is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Book: + Full Name: ITFDevanagari-Book + Family: ITF Devanagari + Style: Книжный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Book; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Book is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Book: + Full Name: ITFDevanagari Marathi-Book + Family: ITF Devanagari Marathi + Style: Книжный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Book; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Book is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Medium: + Full Name: ITF Devanagari Marathi Medium + Family: ITF Devanagari Marathi + Style: Средний + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Medium; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Medium is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Demi: + Full Name: ITFDevanagari Marathi-Demi + Family: ITF Devanagari Marathi + Style: Полу + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Demi; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Demi is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagariMarathi-Light: + Full Name: ITFDevanagari Marathi Light + Family: ITF Devanagari Marathi + Style: Легкий + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Marathi Light; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Marathi Light is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Demi: + Full Name: ITFDevanagari-Demi + Family: ITF Devanagari + Style: Полу + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Demi; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Demi is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Light: + Full Name: ITFDevanagari-Light + Family: ITF Devanagari + Style: Легкий + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Light; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Light is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Bold: + Full Name: ITFDevanagari-Bold + Family: ITF Devanagari + Style: Жирный + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Bold; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Bold is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ITFDevanagari-Medium: + Full Name: ITFDevanagari-Medium + Family: ITF Devanagari + Style: Средний + Version: 20.0d1e3 + Vendor: The Indian Type Foundry + Unique Name: ITF Devanagari Medium; 20.0d1e3; 2024-08-01 + Designer: Satya Rajpurohit + Copyright: Copyright (c) 2011 by The Indian Type Foundry. All rights reserved. + Trademark: ITF Devanagari Medium is a trademark of The Indian Type Foundry. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Chancery.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Apple Chancery.ttf + Typefaces: + Apple-Chancery: + Full Name: Apple Chancery + Family: Apple Chancery + Style: Chancery + Version: 13.0d1e5 + Unique Name: Apple Chancery; 13.0d1e5; 2022-08-23 + Copyright: © 1993-1999 Apple Computer, Inc. + Trademark: Apple Chancery is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMinchoPr6N-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/8739f5cf483d3b2f04cbb451d310b68f0cf880d0.asset/AssetData/ToppanBunkyuMinchoPr6N-Regular.otf + Typefaces: + ToppanBunkyuMinchoPr6N-Regular: + Full Name: Toppan Bunkyu Mincho Regular + Family: Toppan Bunkyu Mincho + Style: Обычный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Mincho Regular; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.10, Copyright © 2013 - 2019 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuMincho.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e9a9a2d18358033875835a6228cb70ce84b7e47c.asset/AssetData/YuMincho.ttc + Typefaces: + YuMin_36pKn-Medium: + Full Name: YuMincho +36p Kana Medium + Family: YuMincho +36p Kana + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Demibold: + Full Name: YuMincho Demibold + Family: YuMincho + Style: Полужирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Demibold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Medium: + Full Name: YuMincho Medium + Family: YuMincho + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin-Extrabold: + Full Name: YuMincho Extrabold + Family: YuMincho + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho Extrabold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin_36pKn-Demibold: + Full Name: YuMincho +36p Kana Demibold + Family: YuMincho +36p Kana + Style: Полужирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Demibold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuMin_36pKn-Extrabold: + Full Name: YuMincho +36p Kana Extrabold + Family: YuMincho +36p Kana + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuMincho +36p Kana Extrabold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Bold.ttf + Typefaces: + Verdana-Bold: + Full Name: Verdana Полужирный + Family: Verdana + Style: Полужирный + Version: Version 5.01x + Unique Name: Microsoft:Verdana Bold:Version 5.01x (Microsoft) + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArmenianRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArmenianRounded.ttf + Typefaces: + .SFArmenianRounded-Regular: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Обычный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Medium: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Средний + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Light: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Легкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Thin: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Тонкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Ultralight: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Ультралегкий + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Semibold: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Полужирный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Bold: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Жирный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Heavy: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Тяжелый + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenianRounded-Black: + Full Name: .SF Armenian Rounded + Family: .SF Armenian Rounded + Style: Черный + Version: 19.0d5e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian Rounded; 19.0d5e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Bold.ttf + Typefaces: + Georgia-Bold: + Full Name: Georgia Полужирный + Family: Georgia + Style: Полужирный + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Bold; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sana.ttc + Typefaces: + Sana: + Full Name: Sana Regular + Family: Sana + Style: Обычный + Version: 13.0d1e4 + Unique Name: Sana Regular; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SanaPUA: + Full Name: .Sana PUA + Family: .Sana PUA + Style: Обычный + Version: 13.0d1e4 + Unique Name: .Sana PUA; 13.0d1e4; 2017-06-28 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BiauKai.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/584ea2a48d14147049c2f9eaee147fe5a1f279ac.asset/AssetData/BiauKai.ttc + Typefaces: + BiauKaiHK-Regular: + Full Name: BiauKaiHK Regular + Family: BiauKaiHK + Style: Обычный + Version: 14.0d1 + Vendor: DynaComware Shanghai Limited; DynaComware Hong Kong Limited; DynaComware Taiwan Inc. + Unique Name: BiauKaiHK Regular; 14.0d1; 2023-01-10 + Copyright: Copyright © 2022 DynaComware. All rights reserved. + Trademark: BiauKaiHK is a trademark of Apple Inc. + Description: Designed by DynaComware & Apple. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BiauKaiTC-Regular: + Full Name: BiauKaiTC Regular + Family: BiauKaiTC + Style: Обычный + Version: 14.0d1 + Vendor: DynaComware Taiwan Inc. + Unique Name: BiauKaiTC Regular; 14.0d1; 2023-01-10 + Copyright: Copyright © 2022 DynaComware Taiwan Inc. All rights reserved. + Trademark: BiauKaiTC is a trademark of DynaComware Taiwan Inc. + Description: Designed by DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Academy Engraved LET Fonts.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Academy Engraved LET Fonts.ttf + Typefaces: + AcademyEngravedLetPlain: + Full Name: Academy Engraved LET Plain:1.0 + Family: Academy Engraved LET + Style: Простой + Version: 16.0d1e1 + Unique Name: Academy Engraved LET Plain:1.0; 16.0d1e1; 2020-08-17 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMDoHyeon-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e71ea5469e5f2039223f22203ee8b9186524afd3.asset/AssetData/BMDoHyeon-Regular.otf + Typefaces: + BMDoHyeon-OTF: + Full Name: BM DoHyeon OTF + Family: BM Dohyeon + Style: Обычный + Version: 14.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM DoHyeon OTF; 14.0d1e6; 2022-09-27 + Designer: Bongjin Kim; Jaehyun Keum; Juhee Tae; + Copyright: Copyright © 2015 Sandoll Communications Inc. All rights reserved. + Trademark: BMDoHyeon-OTF is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W5.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W5.ttc + Typefaces: + HiraginoSans-W5: + Full Name: Hiragino Sans W5 + Family: Hiragino Sans + Style: W5 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W5; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W5: + Full Name: .Hiragino Kaku Gothic Interface W5 + Family: .Hiragino Kaku Gothic Interface + Style: W5 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W5; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Italic.ttf + Typefaces: + SFCompact-MediumItalic: + Full Name: SF Compact + Family: SF Compact + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-HeavyItalic: + Full Name: SF Compact + Family: SF Compact + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-ThinItalic: + Full Name: SF Compact + Family: SF Compact + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-UltralightItalic: + Full Name: SF Compact + Family: SF Compact + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-BoldItalic: + Full Name: SF Compact + Family: SF Compact + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-BlackItalic: + Full Name: SF Compact + Family: SF Compact + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-RegularItalic: + Full Name: SF Compact + Family: SF Compact + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-SemiboldItalic: + Full Name: SF Compact + Family: SF Compact + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFCompact-LightItalic: + Full Name: SF Compact + Family: SF Compact + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-LightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-LightItalic.otf + Typefaces: + SFCompactText-LightItalic: + Full Name: SF Compact Text Light Italic + Family: SF Compact Text + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Light Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompactRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompactRounded.ttf + Typefaces: + ..SFCompactRounded-Regular: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Regular: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Medium: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Light: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Thin: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Ultralight: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Semibold: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Bold: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Heavy: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompactRounded-Black: + Full Name: .SF Compact Rounded + Family: .SF Compact Rounded + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Rounded; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2015-2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArabic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArabic.ttf + Typefaces: + .SFArabic-Regular: + Full Name: .SF Arabic Обычный + Family: .SF Arabic + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Medium: + Full Name: .SF Arabic Средний + Family: .SF Arabic + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Light: + Full Name: .SF Arabic Легкий + Family: .SF Arabic + Style: Легкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Thin: + Full Name: .SF Arabic Тонкий + Family: .SF Arabic + Style: Тонкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Ultralight: + Full Name: .SF Arabic Ультралегкий + Family: .SF Arabic + Style: Ультралегкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Semibold: + Full Name: .SF Arabic Полужирный + Family: .SF Arabic + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Bold: + Full Name: .SF Arabic Жирный + Family: .SF Arabic + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Heavy: + Full Name: .SF Arabic Тяжелый + Family: .SF Arabic + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabic-Black: + Full Name: .SF Arabic Черный + Family: .SF Arabic + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewYorkItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NewYorkItalic.ttf + Typefaces: + .NewYork-RegularItalic: + Full Name: .New York Обычный курсивный + Family: .New York + Style: Обычный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG1: + Full Name: .New York Regular Italic G1 + Family: .New York + Style: Regular Italic G1 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG2: + Full Name: .New York Regular Italic G2 + Family: .New York + Style: Regular Italic G2 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG3: + Full Name: .New York Regular Italic G3 + Family: .New York + Style: Regular Italic G3 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-RegularItalicG4: + Full Name: .New York Regular Italic G4 + Family: .New York + Style: Regular Italic G4 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-MediumItalic: + Full Name: .New York Средний курсивный + Family: .New York + Style: Средний курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-SemiboldItalic: + Full Name: .New York Полужирный курсивный + Family: .New York + Style: Полужирный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalic: + Full Name: .New York Жирный курсивный + Family: .New York + Style: Жирный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG1: + Full Name: .New York Bold Italic G1 + Family: .New York + Style: Bold Italic G1 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG2: + Full Name: .New York Bold Italic G2 + Family: .New York + Style: Bold Italic G2 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG3: + Full Name: .New York Bold Italic G3 + Family: .New York + Style: Bold Italic G3 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BoldItalicG4: + Full Name: .New York Bold Italic G4 + Family: .New York + Style: Bold Italic G4 + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-HeavyItalic: + Full Name: .New York Тяжелый курсивный + Family: .New York + Style: Тяжелый курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NewYork-BlackItalic: + Full Name: .New York Черный курсивный + Family: .New York + Style: Черный курсивный + Version: 17.0d5e1 + Vendor: Apple Inc. + Unique Name: .New York Italic; 17.0d5e1; 2021-06-04 + Designer: Apple Inc. + Copyright: © 2017-2021 Apple Inc. All rights reserved. + Trademark: .New York is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHEITI.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/eb257c12d1a51c8c661b89f30eec56cacf9b8987.asset/AssetData/STHEITI.ttf + Typefaces: + STHeiti: + Full Name: STHeiti + Family: STHeiti + Style: Обычный + Version: 17.0d1e1 + Unique Name: STHeiti; 17.0d1e1; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-MediumItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-MediumItalic.otf + Typefaces: + SFProText-MediumItalic: + Full Name: SF Pro Text Medium Italic + Family: SF Pro Text + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Medium Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AlBayan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AlBayan.ttc + Typefaces: + AlBayan: + Full Name: Al Bayan Plain + Family: Al Bayan + Style: Прямой + Version: 18.0d1e1 + Unique Name: Al Bayan Plain; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AlBayan-Bold: + Full Name: Al Bayan Bold + Family: Al Bayan + Style: Жирный + Version: 18.0d1e1 + Unique Name: Al Bayan Bold; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple +Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlBayanPUA: + Full Name: .Al Bayan PUA Plain + Family: .Al Bayan PUA + Style: Прямой + Version: 18.0d1e1 + Unique Name: .Al Bayan PUA Plain; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlBayanPUA-Bold: + Full Name: .Al Bayan PUA Bold + Family: .Al Bayan PUA + Style: Жирный + Version: 18.0d1e1 + Unique Name: .Al Bayan PUA Bold; 18.0d1e1; 2022-02-07 + Copyright: AlBayan designed by Al Bayan Company for Computer Services. Copyright Apple +Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Ultralight.otf + Typefaces: + SFCompactText-Ultralight: + Full Name: SF Compact Text Ultralight + Family: SF Compact Text + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaMalayalam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ddece00a6ce2caaeca2af3af0fecb11f8b9addc3.asset/AssetData/SamaMalayalam.ttc + Typefaces: + SamaMalayalam-ExtraBold: + Full Name: Sama Malayalam ExtraBold + Family: Sama Malayalam + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-SemiBold: + Full Name: Sama Malayalam SemiBold + Family: Sama Malayalam + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam SemiBold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Bold: + Full Name: Sama Malayalam Bold + Family: Sama Malayalam + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Bold; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Regular: + Full Name: Sama Malayalam Regular + Family: Sama Malayalam + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Regular; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Book: + Full Name: Sama Malayalam Book + Family: Sama Malayalam + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Book; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaMalayalam-Medium: + Full Name: Sama Malayalam Medium + Family: Sama Malayalam + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Malayalam Medium; 20.0d1e2; 2024-07-05 + Designer: Unnati Kotecha and Maithili Shingre + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kodchasan.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0e35a111b2580442c7bff35fcd5c54fc99ca1d91.asset/AssetData/Kodchasan.ttc + Typefaces: + Kodchasan-BoldItalic: + Full Name: Kodchasan Bold Italic + Family: Kodchasan + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-LightItalic: + Full Name: Kodchasan Light Italic + Family: Kodchasan + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-MediumItalic: + Full Name: Kodchasan Medium Italic + Family: Kodchasan + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-ExtraLight: + Full Name: Kodchasan ExtraLight + Family: Kodchasan + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Bold: + Full Name: Kodchasan Bold + Family: Kodchasan + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-SemiBoldItalic: + Full Name: Kodchasan SemiBold Italic + Family: Kodchasan + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-SemiBold: + Full Name: Kodchasan SemiBold + Family: Kodchasan + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Light: + Full Name: Kodchasan Light + Family: Kodchasan + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Italic: + Full Name: Kodchasan Italic + Family: Kodchasan + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-ExtraLightItalic: + Full Name: Kodchasan ExtraLight Italic + Family: Kodchasan + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Medium: + Full Name: Kodchasan Medium + Family: Kodchasan + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kodchasan-Regular: + Full Name: Kodchasan Regular + Family: Kodchasan + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Kodchasan-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Kodchasan Project Authors (https://github.com/cadsondemak/Kodchasan) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Symbols.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Symbols.ttf + Typefaces: + AppleSymbols: + Full Name: Apple Symbols + Family: Apple Symbols + Style: Обычный + Version: 17.0d1e2 + Unique Name: Apple Symbols; 17.0d1e2; 2021-05-16 + Copyright: © Copyright 2003-2006 by Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSMonoItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSMonoItalic.ttf + Typefaces: + .SFNSMono-RegularItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Обычный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-MediumItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Средний курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-LightItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Легкий курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-SemiboldItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Полужирный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-BoldItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Жирный курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-HeavyItalic: + Full Name: .SF NS Mono Light Italic + Family: .SF NS Mono + Style: Тяжелый курсивный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light Italic; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansTagalog-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansTagalog-Regular.ttf + Typefaces: + NotoSansTagalog-Regular: + Full Name: Noto Sans Tagalog Regular + Family: Noto Sans Tagalog + Style: Обычный + Version: Version 2.002 + Vendor: Monotype Imaging Inc. + Unique Name: 2.002;GOOG;NotoSansTagalog-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/tagalog) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansMyanmar.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansMyanmar.ttc + Typefaces: + NotoSansMyanmar-ExtraLight: + Full Name: Noto Sans Myanmar ExtraLight + Family: Noto Sans Myanmar + Style: Сверхлегкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar ExtraLight; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Thin: + Full Name: Noto Sans Myanmar Thin + Family: Noto Sans Myanmar + Style: Тонкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Thin; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-SemiBold: + Full Name: Noto Sans Myanmar SemiBold + Family: Noto Sans Myanmar + Style: Полужирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar SemiBold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Regular: + Full Name: Noto Sans Myanmar Regular + Family: Noto Sans Myanmar + Style: Обычный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Regular; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Bold: + Full Name: Noto Sans Myanmar Bold + Family: Noto Sans Myanmar + Style: Жирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Bold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Black: + Full Name: Noto Sans Myanmar Black + Family: Noto Sans Myanmar + Style: Черный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Black; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Light: + Full Name: Noto Sans Myanmar Light + Family: Noto Sans Myanmar + Style: Легкий + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Light; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-Medium: + Full Name: Noto Sans Myanmar Medium + Family: Noto Sans Myanmar + Style: Средний + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar Medium; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansMyanmar-ExtraBold: + Full Name: Noto Sans Myanmar ExtraBold + Family: Noto Sans Myanmar + Style: Сверхжирный + Version: 17.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Myanmar ExtraBold; 17.0d1e2; 2020-11-30 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Heavy.otf + Typefaces: + SFProDisplay-Heavy: + Full Name: SF Pro Display Heavy + Family: SF Pro Display + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Italic.ttf + Typefaces: + TimesNewRomanPS-ItalicMT: + Full Name: Times New Roman Курсив + Family: Times New Roman + Style: Курсив + Version: Version 5.00.3x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Italic:Version 5.00 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSerifKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3626548a6dc590e58f7258cd141d0ad9b2e6e59c.asset/AssetData/NotoSerifKannada.ttc + Typefaces: + NotoSerifKannada-Medium: + Full Name: Noto Serif Kannada Medium + Family: Noto Serif Kannada + Style: Средний + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Medium; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Bold: + Full Name: Noto Serif Kannada Bold + Family: Noto Serif Kannada + Style: Жирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Bold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-SemiBold: + Full Name: Noto Serif Kannada SemiBold + Family: Noto Serif Kannada + Style: Полужирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada SemiBold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Light: + Full Name: Noto Serif Kannada Light + Family: Noto Serif Kannada + Style: Легкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Light; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Thin: + Full Name: Noto Serif Kannada Thin + Family: Noto Serif Kannada + Style: Тонкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Thin; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-ExtraBold: + Full Name: Noto Serif Kannada ExtraBold + Family: Noto Serif Kannada + Style: Сверхжирный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada ExtraBold; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Regular: + Full Name: Noto Serif Kannada Regular + Family: Noto Serif Kannada + Style: Обычный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Regular; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-ExtraLight: + Full Name: Noto Serif Kannada ExtraLight + Family: Noto Serif Kannada + Style: Сверхлегкий + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada ExtraLight; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSerifKannada-Black: + Full Name: Noto Serif Kannada Black + Family: Noto Serif Kannada + Style: Черный + Version: 20.0d1e2 (2.001) + Vendor: Monotype Imaging Inc. + Unique Name: Noto Serif Kannada Black; 20.0d1e2 (2.001); 2024-07-05 + Designer: Universal Thirst, Indian Type Foundry and the Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZapfDingbats.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZapfDingbats.ttf + Typefaces: + ZapfDingbatsITC: + Full Name: Zapf Dingbats + Family: Zapf Dingbats + Style: Обычный + Version: 13.0d1e2 + Unique Name: Zapf Dingbats; 13.0d1e2; 2017-06-15 + Copyright: (c) Copyright 1999-2000 as an unpublished work by Galapagos Design Group, Inc. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-ThinItalic.otf + Typefaces: + SFProText-ThinItalic: + Full Name: SF Pro Text Thin Italic + Family: SF Pro Text + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompactItalic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompactItalic.ttf + Typefaces: + .SFCompact-RegularItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Обычный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Средний курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Легкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Light Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Тонкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Ультралегкий курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Полужирный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Жирный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Тяжелый курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyItalicG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy Italic G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BlackItalic: + Full Name: .SF Compact + Family: .SF Compact + Style: Черный курсивный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black Italic; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HelveticaNeue.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/HelveticaNeue.ttc + Typefaces: + HelveticaNeue-Thin: + Full Name: Helvetica Neue Thin + Family: Helvetica Neue + Style: Узкий тонкий + Version: 20.4d1e2 + Vendor: Linotype GmbH + Unique Name: Helvetica Neue Thin; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2008 - 2009 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype GmbH. The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 1988, 1990, 1993 Adobe Systems. All Rights Reserved. This software is the property of Adobe Systems Incorporated and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Adobe. Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. + Description: The Helvetica Font Family is part of the Linotype Originals. Helvetica is one of the most famous and popular typefaces in the world. It lends an air of lucid efficiency to any typographic message with its clean, no-nonsense shapes. The original typeface was called Neue Haas Grotesk, and was designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the Helvetica family was expanded to include many different weights, but these were not as well coordinated with each other as they might have been. In 1983, D. Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it into a cohesive font family. At the beginning of the 21st Century, Linotype again released an updated design of Helvetica, the Helvetica World typeface family. This family is much smaller in terms of its number of fonts, but each font makes up for this in terms of language support. Helvetica World supports a number of languages and writing systems from all over the globe + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Medium: + Full Name: Helvetica Neue Medium + Family: Helvetica Neue + Style: Средний + Version: 20.4d1e2 + Unique Name: Helvetica Neue Medium; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Bold: + Full Name: Helvetica Neue Bold + Family: Helvetica Neue + Style: Жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Bold; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-UltraLight: + Full Name: Helvetica Neue UltraLight + Family: Helvetica Neue + Style: Сверхсветлый + Version: 20.4d1e2 + Unique Name: Helvetica Neue UltraLight; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-LightItalic: + Full Name: Helvetica Neue Light Italic + Family: Helvetica Neue + Style: Облегченный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Light Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Light: + Full Name: Helvetica Neue Light + Family: Helvetica Neue + Style: Светлый + Version: 20.4d1e2 + Unique Name: Helvetica Neue Light; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-UltraLightItalic: + Full Name: Helvetica Neue UltraLight Italic + Family: Helvetica Neue + Style: Сверхоблегченный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue UltraLight Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-CondensedBlack: + Full Name: Helvetica Neue Condensed Black + Family: Helvetica Neue + Style: Узкий насыщенный жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Condensed Black; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-Italic: + Full Name: Helvetica Neue Italic + Family: Helvetica Neue + Style: Курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-CondensedBold: + Full Name: Helvetica Neue Condensed Bold + Family: Helvetica Neue + Style: Узкий жирный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Condensed Bold; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-BoldItalic: + Full Name: Helvetica Neue Bold Italic + Family: Helvetica Neue + Style: Жирный курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Bold Italic; 20.4d1e2; 2025-02-03 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue: + Full Name: Helvetica Neue + Family: Helvetica Neue + Style: Обычный + Version: 20.4d1e2 + Unique Name: Helvetica Neue; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-MediumItalic: + Full Name: Helvetica Neue Medium Italic + Family: Helvetica Neue + Style: Средний курсивный + Version: 20.4d1e2 + Unique Name: Helvetica Neue Medium Italic; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Helvetica (Latin for Swiss) has the objective and functional style which was associated with Swiss typography in the 1950s and 1960s. It is perfect for international correspondence: no ornament, no emotion, just clear presentation of information. Helvetica is still one of the best selling sans-serif fonts. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HelveticaNeue-ThinItalic: + Full Name: Helvetica Neue Thin Italic + Family: Helvetica Neue + Style: Узкий тонкий курсивный + Version: 20.4d1e2 + Vendor: Linotype GmbH + Unique Name: Helvetica Neue Thin Italic; 20.4d1e2; 2025-02-03 + Designer: Linotype Design Studio + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted © 2008 - 2009 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype GmbH. The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 1988, 1990, 1993 Adobe Systems. All Rights Reserved. This software is the property of Adobe Systems Incorporated and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Adobe. Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. This typeface is original artwork of Linotype Design Studio. The design may be protected in certain jurisdictions. + Trademark: Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions in the name of Linotype Corp. or its licensee Linotype GmbH. + Description: The Helvetica Font Family is part of the Linotype Originals. Helvetica is one of the most famous and popular typefaces in the world. It lends an air of lucid efficiency to any typographic message with its clean, no-nonsense shapes. The original typeface was called Neue Haas Grotesk, and was designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the Helvetica family was expanded to include many different weights, but these were not as well coordinated with each other as they might have been. In 1983, D. Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it into a cohesive font family. At the beginning of the 21st Century, Linotype again released an updated design of Helvetica, the Helvetica World typeface family. This family is much smaller in terms of its number of fonts, but each font makes up for this in terms of language support. Helvetica World supports a number of languages and writing systems from all over the globe + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Luminari.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Luminari.ttf + Typefaces: + Luminari-Regular: + Full Name: Luminari + Family: Luminari + Style: Обычный + Version: 13.0d1e2 + Vendor: Canada Type + Unique Name: Luminari; 13.0d1e2; 2017-06-16 + Designer: Philip Bouwsma + Copyright: Copyright © 2008 Philip Bouwsma. Published by Canada Type. All rights reserved. + Trademark: Luminari is a trade mark of Canada Type. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kohinoor.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Kohinoor.ttc + Typefaces: + KohinoorDevanagari-Bold: + Full Name: Kohinoor Devanagari Bold + Family: Kohinoor Devanagari + Style: Жирный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Bold; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Light: + Full Name: Kohinoor Devanagari Light + Family: Kohinoor Devanagari + Style: Легкий + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Light; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Regular: + Full Name: Kohinoor Devanagari Regular + Family: Kohinoor Devanagari + Style: Обычный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Regular; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Medium: + Full Name: Kohinoor Devanagari Medium + Family: Kohinoor Devanagari + Style: Средний + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Medium; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KohinoorDevanagari-Semibold: + Full Name: Kohinoor Devanagari Semibold + Family: Kohinoor Devanagari + Style: Полужирный + Version: 20.0d1e4 + Vendor: Indian Type Foundry + Unique Name: Kohinoor Devanagari Semibold; 20.0d1e4; 2024-07-05 + Designer: Satya Rajpurohit + Copyright: Copyright 2010, 2014 Indian Type Foundry. All rights reserved. + Trademark: Kohinoor is a trademark of Indian Type Foundry. + Description: Kohinoor Devanagari is an elegant low contrast type family suitable for both body and display text in print and on screen. Designed between 2009 and 2014 by Satya Rajpurohit. OpenType production by Liang Hai. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Black.otf + Typefaces: + SFProDisplay-Black: + Full Name: SF Pro Display Black + Family: SF Pro Display + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansKannada.ttc + Typefaces: + NotoSansKannada-Medium: + Full Name: Noto Sans Kannada Medium + Family: Noto Sans Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Medium; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-ExtraLight: + Full Name: Noto Sans Kannada ExtraLight + Family: Noto Sans Kannada + Style: Сверхлегкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada ExtraLight; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Thin: + Full Name: Noto Sans Kannada Thin + Family: Noto Sans Kannada + Style: Тонкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Thin; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Regular: + Full Name: Noto Sans Kannada Regular + Family: Noto Sans Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Regular; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Bold: + Full Name: Noto Sans Kannada Bold + Family: Noto Sans Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Bold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-ExtraBold: + Full Name: Noto Sans Kannada ExtraBold + Family: Noto Sans Kannada + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada ExtraBold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Black: + Full Name: Noto Sans Kannada Black + Family: Noto Sans Kannada + Style: Черный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Black; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-SemiBold: + Full Name: Noto Sans Kannada SemiBold + Family: Noto Sans Kannada + Style: Полужирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada SemiBold; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansKannada-Light: + Full Name: Noto Sans Kannada Light + Family: Noto Sans Kannada + Style: Легкий + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Kannada Light; 20.0d1e2; 2024-07-02 + Designer: Jelle Bosma - Monotype Design Team + Copyright: Copyright 2018 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCamera.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCamera.ttf + Typefaces: + ..SFCamera-Regular: + Full Name: .SF Camera + Family: .SF Camera + Style: Обычный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Regular: + Full Name: .SF Camera + Family: .SF Camera + Style: Обычный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Medium: + Full Name: .SF Camera + Family: .SF Camera + Style: Средний + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Light: + Full Name: .SF Camera + Family: .SF Camera + Style: Легкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Thin: + Full Name: .SF Camera + Family: .SF Camera + Style: Тонкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Ultralight: + Full Name: .SF Camera + Family: .SF Camera + Style: Ультралегкий + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Semibold: + Full Name: .SF Camera + Family: .SF Camera + Style: Полужирный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Bold: + Full Name: .SF Camera + Family: .SF Camera + Style: Жирный + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCamera-Heavy: + Full Name: .SF Camera + Family: .SF Camera + Style: Тяжелый + Version: 19.0d0e3 + Vendor: Apple Inc. + Unique Name: .SF Camera; 19.0d0e3; 2023-04-11 + Designer: Apple Inc. + Copyright: © 2018-2023 Apple Inc. All rights reserved. + Trademark: .SF Camera is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSans.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSans.ttc + Typefaces: + PTSans-Regular: + Full Name: PT Sans + Family: PT Sans + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Caption: + Full Name: PT Sans Caption + Family: PT Sans Caption + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Caption; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Bold: + Full Name: PT Sans Bold + Family: PT Sans + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Italic: + Full Name: PT Sans Italic + Family: PT Sans + Style: Курсивный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Italic; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-BoldItalic: + Full Name: PT Sans Bold Italic + Family: PT Sans + Style: Жирный курсивный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Bold Italic; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-Narrow: + Full Name: PT Sans Narrow + Family: PT Sans Narrow + Style: Обычный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Narrow; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-NarrowBold: + Full Name: PT Sans Narrow Bold + Family: PT Sans Narrow + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Narrow Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSans-CaptionBold: + Full Name: PT Sans Caption Bold + Family: PT Sans Caption + Style: Жирный + Version: 13.0d3e2 + Vendor: ParaType Ltd + Unique Name: PT Sans Caption Bold; 13.0d3e2; 2017-06-30 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2009 ParaType Ltd. All rights reserved. + Trademark: PT Sans is a trademark of the ParaType Ltd. + Description: PT Sans is a type family of universal use. It consists of 8 styles: regular and bold weights with corresponding italics form a standard computer font family; two narrow styles (regular and bold) are intended for documents that require tight set; two caption styles (regular and bold) are for texts of small point sizes. The design combines traditional conservative appearance with modern trends of humanistic sans serif and characterized by enhanced legibility. These features beside conventional use in business applications and printed stuff made the fonts quite useable for direction and guide signs, schemes, screens of information kiosks and other objects of urban visual communications. + +The fonts next to standard Latin and Cyrillic character sets contain signs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2009 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design - Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + FahKwang.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/75aa8a3555ac606e1e0fe930fef4a1803105ae51.asset/AssetData/FahKwang.ttc + Typefaces: + Fahkwang-Bold: + Full Name: Fahkwang Bold + Family: Fahkwang + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Bold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-SemiBoldItalic: + Full Name: Fahkwang SemiBold Italic + Family: Fahkwang + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-SemiBoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-LightItalic: + Full Name: Fahkwang Light Italic + Family: Fahkwang + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-LightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Regular: + Full Name: Fahkwang Regular + Family: Fahkwang + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Regular + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Light: + Full Name: Fahkwang Light + Family: Fahkwang + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Light + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Italic: + Full Name: Fahkwang Italic + Family: Fahkwang + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Italic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-Medium: + Full Name: Fahkwang Medium + Family: Fahkwang + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-Medium + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-ExtraLight: + Full Name: Fahkwang ExtraLight + Family: Fahkwang + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-ExtraLight + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-SemiBold: + Full Name: Fahkwang SemiBold + Family: Fahkwang + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-SemiBold + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-MediumItalic: + Full Name: Fahkwang Medium Italic + Family: Fahkwang + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-MediumItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-BoldItalic: + Full Name: Fahkwang Bold Italic + Family: Fahkwang + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-BoldItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Fahkwang-ExtraLightItalic: + Full Name: Fahkwang ExtraLight Italic + Family: Fahkwang + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Fahkwang-ExtraLightItalic + Designer: Suppakit Chalermlarp | Katatrad Co.,Ltd. + Copyright: Copyright 2018 The Fahkwang Project Authors (https://github.com/cadsondemak/Fah-Kwang) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e13e9d74dd730ca10b36e625bd3b964013949a20.asset/AssetData/OctoberDevanagari.ttc + Typefaces: + OctoberDL-Bold: + Full Name: October Devanagari Bold + Family: October Devanagari + Style: Жирный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Bold; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Medium: + Full Name: October Devanagari Medium + Family: October Devanagari + Style: Средний + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Medium; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-ExtraLight: + Full Name: October Devanagari ExtraLight + Family: October Devanagari + Style: Сверхлегкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari ExtraLight; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Regular: + Full Name: October Devanagari Regular + Family: October Devanagari + Style: Обычный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Regular; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Heavy: + Full Name: October Devanagari Heavy + Family: October Devanagari + Style: Тяжелый + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Heavy; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Thin: + Full Name: October Devanagari Thin + Family: October Devanagari + Style: Тонкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Thin; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Black: + Full Name: October Devanagari Black + Family: October Devanagari + Style: Черный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Black; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Light: + Full Name: October Devanagari Light + Family: October Devanagari + Style: Легкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Light; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberDL-Hairline: + Full Name: October Devanagari Hairline + Family: October Devanagari + Style: С соединительными штрихами + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Devanagari Hairline; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir Next.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir Next.ttc + Typefaces: + AvenirNext-UltraLightItalic: + Full Name: Avenir Next Ultra Light Italic + Family: Avenir Next + Style: Ультралегкий курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Ultra Light Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-HeavyItalic: + Full Name: Avenir Next Heavy Italic + Family: Avenir Next + Style: Тяжелый курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Heavy Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Bold: + Full Name: Avenir Next Bold + Family: Avenir Next + Style: Жирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Medium: + Full Name: Avenir Next Medium + Family: Avenir Next + Style: Средний + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Medium; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-MediumItalic: + Full Name: Avenir Next Medium Italic + Family: Avenir Next + Style: Средний курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Medium Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Italic: + Full Name: Avenir Next Italic + Family: Avenir Next + Style: Курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-DemiBold: + Full Name: Avenir Next Demi Bold + Family: Avenir Next + Style: Полужирный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Demi Bold; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-DemiBoldItalic: + Full Name: Avenir Next Demi Bold Italic + Family: Avenir Next + Style: Полужирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Demi Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-BoldItalic: + Full Name: Avenir Next Bold Italic + Family: Avenir Next + Style: Жирный курсивный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Bold Italic; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Regular: + Full Name: Avenir Next Regular + Family: Avenir Next + Style: Обычный + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Regular; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-UltraLight: + Full Name: AvenirNext-UltraLight + Family: Avenir Next + Style: Ультралегкий + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Ultra Light; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AvenirNext-Heavy: + Full Name: Avenir Next Heavy + Family: Avenir Next + Style: Тяжелый + Version: 13.0d1e10 + Vendor: Linotype GmbH + Unique Name: Avenir Next Heavy; 13.0d1e10; 2017-06-30 + Designer: Adrian Frutiger, Akira Kobayashi + Copyright: Copyright © 2004 - 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH registered in the U.S. Patent and Trademark Office and may be registered in certain other jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. It includes new small caps, newly designed true italics, and a complete new range of condensed weights. Avenir Next is a versatile sans serif family, ready for large and complex projects from books to signage to advertising. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansNKo-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NotoSansNKo-Regular.ttf + Typefaces: + NotoSansNKo-Regular: + Full Name: Noto Sans NKo Regular + Family: Noto Sans NKo + Style: Обычный + Version: Version 2.004 + Vendor: Monotype Imaging Inc. + Unique Name: 2.004;GOOG;NotoSansNKo-Regular + Designer: Monotype Design Team + Copyright: Copyright 2022 The Noto Project Authors (https://github.com/notofonts/nko) + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi MN.ttc + Typefaces: + GurmukhiMN: + Full Name: Gurmukhi MN + Family: Gurmukhi MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi MN; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GurmukhiMN-Bold: + Full Name: Gurmukhi MN Bold + Family: Gurmukhi MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi MN Bold; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GeezaPro.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/GeezaPro.ttc + Typefaces: + GeezaPro-Bold: + Full Name: Geeza Pro Bold + Family: Geeza Pro + Style: Жирный + Version: 20.2d1e1 + Unique Name: Geeza Pro Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GeezaPro: + Full Name: Geeza Pro Regular + Family: Geeza Pro + Style: Обычный + Version: 20.2d1e1 + Unique Name: Geeza Pro Regular; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface: + Full Name: .Geeza Pro Interface Regular + Family: .Geeza Pro Interface + Style: Обычный + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Regular; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface-Light: + Full Name: .Geeza Pro Interface Light + Family: .Geeza Pro Interface + Style: Легкий + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Light; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProInterface-Bold: + Full Name: .Geeza Pro Interface Bold + Family: .Geeza Pro Interface + Style: Жирный + Version: 20.2d1e1 + Unique Name: .Geeza Pro Interface Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProPUA: + Full Name: .Geeza Pro PUA + Family: .Geeza Pro PUA + Style: Обычный + Version: 20.2d1e1 + Unique Name: .Geeza Pro PUA; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .GeezaProPUA-Bold: + Full Name: .Geeza Pro PUA Bold + Family: .Geeza Pro PUA + Style: Жирный + Version: 20.2d1e1 + Unique Name: .Geeza Pro PUA Bold; 20.2d1e1; 2024-09-25 + Copyright: Diwan Software Ltd. 1992-2009 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi.ttf + Typefaces: + MonotypeGurmukhi: + Full Name: Gurmukhi MT + Family: Gurmukhi MT + Style: Обычный + Version: 20.0d1e2 + Unique Name: Gurmukhi MT; 20.0d1e2; 2024-07-08 + Copyright: Copyright © Monotype Typography Ltd. 1996. All Rights reserved. + Trademark: Monotype Gurmukhi is a Trademark of Monotype Typography Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hei.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/62032b9b64a0e3a9121c50aeb2ed794e3e2c201f.asset/AssetData/Hei.ttf + Typefaces: + SIL-Hei-Med-Jian: + Full Name: Hei Regular + Family: Hei + Style: Обычный + Version: 13.0d1e4 + Unique Name: Hei Regular; 13.0d1e4; 2017-06-14 + Copyright: ˝Copyright Shanghai Ikarus Ltd. 1993 1994 1995 + Trademark: Shanghai Ikarus Ltd./URW Software & Type GmbH + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Bold.otf + Typefaces: + SFCompactDisplay-Bold: + Full Name: SF Compact Display Bold + Family: SF Compact Display + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mishafi Gold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Mishafi Gold.ttf + Typefaces: + DiwanMishafiGold: + Full Name: Mishafi Gold Regular + Family: Mishafi Gold + Style: Обычный + Version: 13.0d2e1 + Unique Name: Mishafi Gold Regular; 13.0d2e1; 2017-06-28 + Copyright: © 1998-2000 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-HeavyItalic.otf + Typefaces: + SFProText-HeavyItalic: + Full Name: SF Pro Text Heavy Italic + Family: SF Pro Text + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Shree714.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Shree714.ttc + Typefaces: + ShreeDev0714-Bold: + Full Name: Shree Devanagari 714 Bold + Family: Shree Devanagari 714 + Style: Жирный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Bold; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714-BoldItalic: + Full Name: Shree Devanagari 714 Bold Italic + Family: Shree Devanagari 714 + Style: Жирный курсивный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Bold Italic; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714: + Full Name: Shree Devanagari 714 + Family: Shree Devanagari 714 + Style: Обычный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ShreeDev0714-Italic: + Full Name: Shree Devanagari 714 Italic + Family: Shree Devanagari 714 + Style: Курсивный + Version: 20.0d1e2 + Unique Name: Shree Devanagari 714 Italic; 20.0d1e2; 2024-07-05 + Copyright: Copyright (c) 2000, Modular Infotech, Pune, INDIA. + Trademark: Shree-Font is a Trademark of Modular Infotech, Pune + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hiragino Sans GB.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Hiragino Sans GB.ttc + Typefaces: + HiraginoSansGB-W3: + Full Name: Hiragino Sans GB W3 + Family: Hiragino Sans GB + Style: W3 + Version: 13.0d2e3 + Vendor: Dainippon Screen Mfg. Co., Ltd. + Unique Name: Hiragino Sans GB W3; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraginoSansGB-W6: + Full Name: Hiragino Sans GB W6 + Family: Hiragino Sans GB + Style: W6 + Version: 13.0d2e3 + Vendor: Dainippon Screen Mfg. Co., Ltd. + Unique Name: Hiragino Sans GB W6; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of Dainippon Screen Mfg. Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraginoSansGBInterface-W3: + Full Name: .Hiragino Sans GB Interface W3 + Family: .Hiragino Sans GB Interface + Style: W3 + Version: 13.0d2e3 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Sans GB Interface W3; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraginoSansGBInterface-W6: + Full Name: .Hiragino Sans GB Interface W6 + Family: .Hiragino Sans GB Interface + Style: W6 + Version: 13.0d2e3 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Sans GB Interface W6; 13.0d2e3; 2017-06-23 + Designer: JIYUKOBO Ltd. + Copyright: ver3.20, Copyright © 2007-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AdelleSans.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7dbafe7918d68a94eef18bc79c7617198f768e86.asset/AssetData/AdelleSans.ttc + Typefaces: + AdelleSansDevanagari-Bold: + Full Name: Adelle Sans Devanagari Bold + Family: Adelle Sans Devanagari + Style: Жирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Bold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Thin: + Full Name: Adelle Sans Devanagari Thin + Family: Adelle Sans Devanagari + Style: Тонкий + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Thin; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Extrabold: + Full Name: Adelle Sans Devanagari Extrabold + Family: Adelle Sans Devanagari + Style: Сверхжирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Extrabold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Light: + Full Name: Adelle Sans Devanagari Light + Family: Adelle Sans Devanagari + Style: Легкий + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Light; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Heavy: + Full Name: Adelle Sans Devanagari Heavy + Family: Adelle Sans Devanagari + Style: Тяжелый + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Heavy; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Regular: + Full Name: Adelle Sans Devanagari Regular + Family: Adelle Sans Devanagari + Style: Обычный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Regular; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AdelleSansDevanagari-Semibold: + Full Name: Adelle Sans Devanagari Semibold + Family: Adelle Sans Devanagari + Style: Полужирный + Version: 20.0d1e3 + Vendor: TypeTogether + Unique Name: Adelle Sans Devanagari Semibold; 20.0d1e3; 2024-07-05 + Designer: Veronika Burian, José Scaglione + Copyright: Copyright © 2012 by TypeTogether. All rights reserved. + Trademark: Adelle and Adelle Sans Devanagari are a trademark of TypeTogether. + Description: Concept: Veronika Burian, José Scaglione (Latin & Devanagari) +Design: Veronika Burian (Latin & Devanagari), Erin McLaughlin (Devanagari), Pooja Saxena (Devanagari), José Scaglione (Latin & Devanagari), Vaibhav Singh (Devanagari) +Engineering: Joancarles Casasín, Pooja Saxena +Quality assurance: Azza Alameddine +Graphic design: Pooja Saxena, Elena Veguillas +Copywriting: Joshua Farmer +Consultancy on Devanagari: Fiona Ross, Vaibhav Singh + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Thin.otf + Typefaces: + SFProRounded-Thin: + Full Name: SF Pro Rounded Thin + Family: SF Pro Rounded + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-ThinItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-ThinItalic.otf + Typefaces: + SFProDisplay-ThinItalic: + Full Name: SF Pro Display Thin Italic + Family: SF Pro Display + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Thin Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + K2D.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7722fac06d2ccff23ed22b9ab921460b835e3e8c.asset/AssetData/K2D.ttc + Typefaces: + K2D-Bold: + Full Name: K2D Bold + Family: K2D + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Light: + Full Name: K2D Light + Family: K2D + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-SemiBoldItalic: + Full Name: K2D SemiBold Italic + Family: K2D + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-SemiBold: + Full Name: K2D SemiBold + Family: K2D + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraLight: + Full Name: K2D ExtraLight + Family: K2D + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Regular: + Full Name: K2D Regular + Family: K2D + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraBold: + Full Name: K2D ExtraBold + Family: K2D + Style: Сверхжирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-LightItalic: + Full Name: K2D Light Italic + Family: K2D + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Medium: + Full Name: K2D Medium + Family: K2D + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-MediumItalic: + Full Name: K2D Medium Italic + Family: K2D + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ThinItalic: + Full Name: K2D Thin Italic + Family: K2D + Style: Тонкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ThinItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Thin: + Full Name: K2D Thin + Family: K2D + Style: Тонкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Thin + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraBoldItalic: + Full Name: K2D ExtraBold Italic + Family: K2D + Style: Сверхжирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-Italic: + Full Name: K2D Italic + Family: K2D + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-BoldItalic: + Full Name: K2D Bold Italic + Family: K2D + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + K2D-ExtraLightItalic: + Full Name: K2D ExtraLight Italic + Family: K2D + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;K2D-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The K2D Project Authors (https://github.com/cadsondemak/K2D) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman.ttf + Typefaces: + TimesNewRomanPSMT: + Full Name: Times New Roman + Family: Times New Roman + Style: Обычный + Version: Version 5.01.4x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Regular:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaTamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d9994beb5bda5918100f3fc1623d687c7f7814ec.asset/AssetData/SamaTamil.ttc + Typefaces: + SamaTamil-Medium: + Full Name: Sama Tamil Medium + Family: Sama Tamil + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Medium; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-SemiBold: + Full Name: Sama Tamil SemiBold + Family: Sama Tamil + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil SemiBold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Regular: + Full Name: Sama Tamil Regular + Family: Sama Tamil + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Regular; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-ExtraBold: + Full Name: Sama Tamil ExtraBold + Family: Sama Tamil + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Book: + Full Name: Sama Tamil Book + Family: Sama Tamil + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Book; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaTamil-Bold: + Full Name: Sama Tamil Bold + Family: Sama Tamil + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Tamil Bold; 20.0d1e2; 2024-07-05 + Designer: Aadarsh Rajan + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Medium.otf + Typefaces: + SFProRounded-Medium: + Full Name: SF Pro Rounded Medium + Family: SF Pro Rounded + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleSDGothicNeo.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/AppleSDGothicNeo.ttc + Typefaces: + AppleSDGothicNeo-SemiBold: + Full Name: Apple SD Gothic Neo SemiBold + Family: Apple SD Gothic Neo + Style: Полужирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo SemiBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Regular: + Full Name: Apple SD Gothic Neo Regular + Family: Apple SD Gothic Neo + Style: Обычный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Regular; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Thin: + Full Name: Apple SD Gothic Neo Thin + Family: Apple SD Gothic Neo + Style: Тонкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Thin; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-UltraLight: + Full Name: Apple SD Gothic Neo UltraLight + Family: Apple SD Gothic Neo + Style: Ультралегкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo UltraLight; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-ExtraBold: + Full Name: Apple SD Gothic Neo ExtraBold + Family: Apple SD Gothic Neo + Style: Сверхжирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo ExtraBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Heavy: + Full Name: Apple SD Gothic Neo Heavy + Family: Apple SD Gothic Neo + Style: Тяжелый + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Heavy; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Light: + Full Name: Apple SD Gothic Neo Light + Family: Apple SD Gothic Neo + Style: Легкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Light; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Medium: + Full Name: Apple SD Gothic Neo Medium + Family: Apple SD Gothic Neo + Style: Средний + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Medium; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AppleSDGothicNeo-Bold: + Full Name: Apple SD Gothic Neo Bold + Family: Apple SD Gothic Neo + Style: Жирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: Apple SD Gothic Neo Bold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Regular: + Full Name: .Apple SD Gothic NeoI Regular + Family: .Apple SD Gothic NeoI + Style: Обычный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Regular; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Medium: + Full Name: .Apple SD Gothic NeoI Medium + Family: .Apple SD Gothic NeoI + Style: Средний + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Medium; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Light: + Full Name: .Apple SD Gothic NeoI Light + Family: .Apple SD Gothic NeoI + Style: Легкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Light; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-UltraLight: + Full Name: .Apple SD Gothic NeoI UltraLight + Family: .Apple SD Gothic NeoI + Style: Ультралегкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI UltraLight; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Thin: + Full Name: .Apple SD Gothic NeoI Thin + Family: .Apple SD Gothic NeoI + Style: Тонкий + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Thin; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-SemiBold: + Full Name: .Apple SD Gothic NeoI SemiBold + Family: .Apple SD Gothic NeoI + Style: Полужирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI SemiBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Bold: + Full Name: .Apple SD Gothic NeoI Bold + Family: .Apple SD Gothic NeoI + Style: Жирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Bold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-ExtraBold: + Full Name: .Apple SD Gothic NeoI ExtraBold + Family: .Apple SD Gothic NeoI + Style: Сверхжирный + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI ExtraBold; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleSDGothicNeoI-Heavy: + Full Name: .Apple SD Gothic NeoI Heavy + Family: .Apple SD Gothic NeoI + Style: Тяжелый + Version: 19.0d2e1 + Vendor: Sandoll Communications Inc. + Unique Name: .Apple SD Gothic NeoI Heavy; 19.0d2e1; 2023-05-24 + Designer: Sandoll Communications Inc. + Copyright: Copyright © 2014 Sandoll Communications Inc. All rights reserved. + Trademark: SDGothicNeo is a registered trademark of Sandoll Communications Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lantinghei.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f7f6b250e97c182e68ac53a2b359ec44548878b9.asset/AssetData/Lantinghei.ttc + Typefaces: + FZLTXHB--B51-0: + Full Name: Lantinghei TC Extralight + Family: Lantinghei TC + Style: Сверхлегкий + Version: 13.0d2e1 + Unique Name: Lantinghei TC Extralight; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTTHK--GBK1-0: + Full Name: Lantinghei SC Heavy + Family: Lantinghei SC + Style: Тяжелый + Version: 13.0d2e1 + Unique Name: Lantinghei SC Heavy; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTZHK--GBK1-0: + Full Name: Lantinghei SC Demibold + Family: Lantinghei SC + Style: Полужирный + Version: 13.0d2e1 + Unique Name: Lantinghei SC Demibold; 13.0d2e1; 2017-06-30 + Copyright: © 2009, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTTHB--B51-0: + Full Name: Lantinghei TC Heavy + Family: Lantinghei TC + Style: Тяжелый + Version: 13.0d2e1 + Unique Name: Lantinghei TC Heavy; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTZHB--B51-0: + Full Name: Lantinghei TC Demibold + Family: Lantinghei TC + Style: Полужирный + Version: 13.0d2e1 + Unique Name: Lantinghei TC Demibold; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + FZLTXHK--GBK1-0: + Full Name: Lantinghei SC Extralight + Family: Lantinghei SC + Style: Сверхлегкий + Version: 13.0d2e1 + Unique Name: Lantinghei SC Extralight; 13.0d2e1; 2017-06-30 + Copyright: © 2010, Beijing Founder Electronics Co.,Ltd. + Trademark: By Beijing Founder Electronics Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + WawaTC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3d7c99b85a518ffb479044c11185e47744b6448d.asset/AssetData/WawaTC-Regular.otf + Typefaces: + DFWaWaTC-W5: + Full Name: Wawati TC Regular + Family: Wawati TC + Style: Обычный + Version: 15.0d1e3 + Unique Name: Wawati TC Regular; 15.0d1e3; 2019-06-24 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. DynaComware Taiwan Inc. All rights reserved. + Trademark: DFWaWaTC Std W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhaiGujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e7c3a658f55aa2afc1a5d1f7b715cc6bcf997d2b.asset/AssetData/BalooBhaiGujarati.ttc + Typefaces: + BalooBhai2-Bold: + Full Name: Baloo Bhai 2 Bold + Family: Baloo Bhai 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-Regular: + Full Name: Baloo Bhai 2 Regular + Family: Baloo Bhai 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-Medium: + Full Name: Baloo Bhai 2 Medium + Family: Baloo Bhai 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-SemiBold: + Full Name: Baloo Bhai 2 SemiBold + Family: Baloo Bhai 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhai2-ExtraBold: + Full Name: Baloo Bhai 2 ExtraBold + Family: Baloo Bhai 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhai 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Supriya Tembe, Noopur Datye and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Chalkboard.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Chalkboard.ttc + Typefaces: + Chalkboard-Bold: + Full Name: Chalkboard Bold + Family: Chalkboard + Style: Жирный + Version: 13.0d1e2 + Unique Name: Chalkboard Bold; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-04 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Chalkboard: + Full Name: Chalkboard + Family: Chalkboard + Style: Обычный + Version: 13.0d1e2 + Unique Name: Chalkboard; 13.0d1e2; 2017-06-16 + Copyright: Copyright 2003-04 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W6.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W6.ttc + Typefaces: + HiraginoSans-W6: + Full Name: Hiragino Sans W6 + Family: Hiragino Sans + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W6; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W6: + Full Name: .Hiragino Kaku Gothic Interface W6 + Family: .Hiragino Kaku Gothic Interface + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W6; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFHebrew.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFHebrew.ttf + Typefaces: + .SFHebrew-Regular: + Full Name: .SF Hebrew Обычный + Family: .SF Hebrew + Style: Обычный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Medium: + Full Name: .SF Hebrew Средний + Family: .SF Hebrew + Style: Средний + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Light: + Full Name: .SF Hebrew Легкий + Family: .SF Hebrew + Style: Легкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Thin: + Full Name: .SF Hebrew Тонкий + Family: .SF Hebrew + Style: Тонкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Ultralight: + Full Name: .SF Hebrew Ультралегкий + Family: .SF Hebrew + Style: Ультралегкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Semibold: + Full Name: .SF Hebrew Полужирный + Family: .SF Hebrew + Style: Полужирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Bold: + Full Name: .SF Hebrew Жирный + Family: .SF Hebrew + Style: Жирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Heavy: + Full Name: .SF Hebrew Тяжелый + Family: .SF Hebrew + Style: Тяжелый + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrew-Black: + Full Name: .SF Hebrew Черный + Family: .SF Hebrew + Style: Черный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Keyboard.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Keyboard.ttf + Typefaces: + .Keyboard: + Full Name: .Keyboard + Family: .Keyboard + Style: Обычный + Version: 13.0d2e4 + Unique Name: .Keyboard; 13.0d2e4; 2017-07-26 + Copyright: Copyright © 1995-2007 by Apple Inc. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Waseem.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Waseem.ttc + Typefaces: + Waseem: + Full Name: Waseem Regular + Family: Waseem + Style: Обычный + Version: 13.0d1e2 + Unique Name: Waseem Regular; 13.0d1e2; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + WaseemLight: + Full Name: Waseem Light + Family: Waseem + Style: Легкий + Version: 13.0d1e2 + Unique Name: Waseem Light; 13.0d1e2; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. All rights reserved + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Thin.otf + Typefaces: + SFProDisplay-Thin: + Full Name: SF Pro Display Thin + Family: SF Pro Display + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Khmer MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Khmer MN.ttc + Typefaces: + KhmerMN: + Full Name: Khmer MN + Family: Khmer MN + Style: Обычный + Version: 14.0d1e1 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer MN; 14.0d1e1; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KhmerMN-Bold: + Full Name: Khmer MN Bold + Family: Khmer MN + Style: Жирный + Version: 14.0d1e1 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Khmer MN Bold; 14.0d1e1; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Khmer MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaKannada.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/810ba821bae9ea3677944089ed67a726a382c132.asset/AssetData/LavaKannada.ttc + Typefaces: + LavaKannada-Regular: + Full Name: Lava Kannada Regular + Family: Lava Kannada + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Regular; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Bold: + Full Name: Lava Kannada Bold + Family: Lava Kannada + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Bold; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Heavy: + Full Name: Lava Kannada Heavy + Family: Lava Kannada + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Heavy; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaKannada-Medium: + Full Name: Lava Kannada Medium + Family: Lava Kannada + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Kannada Medium; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2018 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Niramit.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/34fead973f6b219177a77839ad8f341551fc495f.asset/AssetData/Niramit.ttc + Typefaces: + Niramit-Light: + Full Name: Niramit Light + Family: Niramit + Style: Легкий + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Italic: + Full Name: Niramit Italic + Family: Niramit + Style: Курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-SemiBold: + Full Name: Niramit SemiBold + Family: Niramit + Style: Полужирный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Bold: + Full Name: Niramit Bold + Family: Niramit + Style: Жирный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-BoldItalic: + Full Name: Niramit Bold Italic + Family: Niramit + Style: Жирный курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-ExtraLight: + Full Name: Niramit ExtraLight + Family: Niramit + Style: Сверхлегкий + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-LightItalic: + Full Name: Niramit Light Italic + Family: Niramit + Style: Легкий курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-SemiBoldItalic: + Full Name: Niramit SemiBold Italic + Family: Niramit + Style: Полужирный курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-MediumItalic: + Full Name: Niramit Medium Italic + Family: Niramit + Style: Средний курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-ExtraLightItalic: + Full Name: Niramit ExtraLight Italic + Family: Niramit + Style: Сверхлегкий курсивный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Regular: + Full Name: Niramit Regular + Family: Niramit + Style: Обычный + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Niramit-Medium: + Full Name: Niramit Medium + Family: Niramit + Style: Средний + Version: Version 1.001; ttfautohint (v1.6) + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.001;CDK ;Niramit-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Niramit Project Authors (https://github.com/cadsondemak/Niramit) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Symbol.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Symbol.ttf + Typefaces: + Symbol: + Full Name: Symbol + Family: Symbol + Style: Обычный + Version: 13.0d2e2 + Unique Name: Symbol; 13.0d2e2; 2017-06-09 + Copyright: © 1990-99 Apple Computer Inc. © 1990-91 Bitstream Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + WawaSC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/18189590ed3a5f46cef20ed4d1cec2611dca13ff.asset/AssetData/WawaSC-Regular.otf + Typefaces: + DFWaWaSC-W5: + Full Name: Wawati SC Regular + Family: Wawati SC + Style: Обычный + Version: 13.0d1e2 + Unique Name: Wawati SC Regular; 13.0d1e2; 2017-06-09 + Designer: DynaComware Taiwan Inc. + Copyright: © 2012 DynaComware Taiwan Inc. All rights reserved. + Trademark: DFWaWaGB Std W5 is a trademark of DynaComware Taiwan Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/86e04ad2883186f533bf63f31040f8239ca3e0aa.asset/AssetData/TiroTelugu.ttc + Typefaces: + TiroTelugu: + Full Name: Tiro Telugu + Family: Tiro Telugu + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Telugu; 20.0d1e2; 2024-07-05 + Designer: Telugu: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Telugu is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroTelugu-Italic: + Full Name: Tiro Telugu Italic + Family: Tiro Telugu + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Telugu Italic; 20.0d1e2; 2024-07-05 + Designer: Telugu: John Hudson & Fiona Ross, assisted by Kaja Słojewska. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Telugu is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Thin.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Thin.otf + Typefaces: + SFCompactText-Thin: + Full Name: SF Compact Text Thin + Family: SF Compact Text + Style: Тонкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Thin; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TsukushiAMaruGothic.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d9a8a6ae726910080d90232eaf0edb06da712758.asset/AssetData/TsukushiAMaruGothic.ttc + Typefaces: + TsukuARdGothic-Bold: + Full Name: Tsukushi A Round Gothic Bold + Family: Tsukushi A Round Gothic + Style: Жирный + Version: 15.0d1e1 + Unique Name: Tsukushi A Round Gothic Bold; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi A Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TsukuARdGothic-Regular: + Full Name: Tsukushi A Round Gothic Regular + Family: Tsukushi A Round Gothic + Style: Обычный + Version: 15.0d1e1 + Unique Name: Tsukushi A Round Gothic Regular; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: Tsukushi A Round Gothic is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Al Nile.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Al Nile.ttc + Typefaces: + AlNile-Bold: + Full Name: Al Nile Bold + Family: Al Nile + Style: Жирный + Version: 13.0d2e2 + Unique Name: Al Nile Bold; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AlNile: + Full Name: Al Nile + Family: Al Nile + Style: Обычный + Version: 13.0d2e2 + Unique Name: Al Nile; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlNilePUA: + Full Name: .Al Nile PUA + Family: .Al Nile PUA + Style: Обычный + Version: 13.0d2e2 + Unique Name: .Al Nile PUA; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlNilePUA-Bold: + Full Name: .Al Nile PUA Bold + Family: .Al Nile PUA + Style: Жирный + Version: 13.0d2e2 + Unique Name: .Al Nile PUA Bold; 13.0d2e2; 2017-06-27 + Copyright: © 1993 Diwan Science and information Technology. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Regular.otf + Typefaces: + SFProDisplay-Regular: + Full Name: SF Pro Display Regular + Family: SF Pro Display + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Modak-Devanagari.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/929f76f5b8520c52c0f1ff7911b88d29860f8c49.asset/AssetData/Modak-Devanagari.ttf + Typefaces: + Modak: + Full Name: Modak + Family: Modak + Style: Обычный + Version: 20.0d1e2 (1.155) + Vendor: Ek Type + Unique Name: Modak; 20.0d1e2 (1.155); 2024-07-05 + Designer: Sarang Kulkarni, Maithili Shingre, Noopur Datye + Copyright: Copyright (c) 2014, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Ultralight.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Ultralight.otf + Typefaces: + SFProRounded-Ultralight: + Full Name: SF Pro Rounded Ultralight + Family: SF Pro Rounded + Style: Ультралегкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Ultralight; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Beirut.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Beirut.ttc + Typefaces: + Beirut: + Full Name: Beirut Regular + Family: Beirut + Style: Обычный + Version: 13.0d1e6 + Unique Name: Beirut Regular; 13.0d1e6; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .BeirutPUA: + Full Name: .Beirut PUA + Family: .Beirut PUA + Style: Обычный + Version: 13.0d1e6 + Unique Name: .Beirut PUA; 13.0d1e6; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Italic.ttf + Typefaces: + ArialNarrow-Italic: + Full Name: Arial Narrow Курсив + Family: Arial Narrow + Style: Курсив + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Italic : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DecoTypeNaskh.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DecoTypeNaskh.ttc + Typefaces: + DecoTypeNaskh: + Full Name: DecoType Naskh Regular + Family: DecoType Naskh + Style: Обычный + Version: 14.0d0e1 + Unique Name: DecoType Naskh Regular; 14.0d0e1; 2017-11-14 + Copyright: DecoType Professional Naskh Family of Fonts. Copyright 1992-2007 DecoType. All Rights Reserved. Created by Thomas Milo. + Trademark: DecoType Naskh is a trademark of DecoType. + Description: Copyright (c) 2007 by Thomas Milo. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DecoTypeNaskhPUA: + Full Name: .DecoType Naskh PUA + Family: .DecoType Naskh PUA + Style: Обычный + Version: 14.0d0e1 + Unique Name: .DecoType Naskh PUA; 14.0d0e1; 2017-11-14 + Copyright: DecoType Professional Naskh Family of Fonts. Copyright 1992-2007 DecoType. All Rights Reserved. Created by Thomas Milo. + Trademark: .DecoType Naskh PUA is a trademark of DecoType. + Description: Copyright (c) 2007 by Thomas Milo. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PingFangUI.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/PrivateFrameworks/FontServices.framework/Resources/Reserved/PingFangUI.ttc + Typefaces: + PingFangHK-Light: + Full Name: PingFang HK + Family: PingFang HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Thin: + Full Name: PingFang SC + Family: PingFang SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Light: + Full Name: PingFang SC + Family: PingFang SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Thin: + Full Name: PingFang TC + Family: PingFang TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Medium: + Full Name: PingFang SC + Family: PingFang SC + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Semibold: + Full Name: PingFang TC + Family: PingFang TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Semibold: + Full Name: PingFang SC + Family: PingFang SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Thin: + Full Name: PingFang HK + Family: PingFang HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Semibold: + Full Name: PingFang MO + Family: PingFang MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Ultralight: + Full Name: PingFang HK + Family: PingFang HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Medium: + Full Name: PingFang MO + Family: PingFang MO + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Ultralight: + Full Name: PingFang SC + Family: PingFang SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Regular: + Full Name: PingFang MO + Family: PingFang MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Thin: + Full Name: PingFang MO + Family: PingFang MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Medium: + Full Name: PingFang TC + Family: PingFang TC + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Light: + Full Name: PingFang MO + Family: PingFang MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangSC-Regular: + Full Name: PingFang SC + Family: PingFang SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Semibold: + Full Name: PingFang HK + Family: PingFang HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Ultralight: + Full Name: PingFang TC + Family: PingFang TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Medium: + Full Name: PingFang HK + Family: PingFang HK + Style: Средний + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Regular: + Full Name: PingFang TC + Family: PingFang TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangTC-Light: + Full Name: PingFang TC + Family: PingFang TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: 蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangHK-Regular: + Full Name: PingFang HK + Family: PingFang HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: 蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PingFangMO-Ultralight: + Full Name: PingFang MO + Family: PingFang MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: 蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Regular: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Medium: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Light: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Thin: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Ultralight: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Semibold: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Bold: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangHK-Heavy: + Full Name: .PingFang HK + Family: .PingFang HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Regular: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Medium: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Light: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Thin: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Ultralight: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Semibold: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Bold: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangMO-Heavy: + Full Name: .PingFang MO + Family: .PingFang MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Regular: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Medium: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Light: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Thin: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Ultralight: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Semibold: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Bold: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangSC-Heavy: + Full Name: .PingFang SC + Family: .PingFang SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Regular: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Medium: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Light: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Thin: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Ultralight: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Semibold: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Bold: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangTC-Heavy: + Full Name: .PingFang TC + Family: .PingFang TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Regular: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Default: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Medium: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Light: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Thin: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Ultralight: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Semibold: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Bold: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayHK-Heavy: + Full Name: .PingFang UI Display HK + Family: .PingFang UI Display HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Regular: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Default: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Medium: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Light: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Thin: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Ultralight: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Semibold: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Bold: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayMO-Heavy: + Full Name: .PingFang UI Display MO + Family: .PingFang UI Display MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Regular: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Default: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Medium: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Light: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Thin: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Ultralight: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Semibold: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Bold: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplaySC-Heavy: + Full Name: .PingFang UI Display SC + Family: .PingFang UI Display SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Regular: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Default: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Medium: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Light: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Thin: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Ultralight: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Semibold: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Bold: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIDisplayTC-Heavy: + Full Name: .PingFang UI Display TC + Family: .PingFang UI Display TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Regular: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Default: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Medium: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Light: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Thin: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Ultralight: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Semibold: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Bold: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextHK-Heavy: + Full Name: .PingFang UI Text HK + Family: .PingFang UI Text HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Regular: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Default: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Medium: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Light: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Thin: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Ultralight: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Semibold: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Bold: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextMO-Heavy: + Full Name: .PingFang UI Text MO + Family: .PingFang UI Text MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Regular: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Default: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Medium: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Light: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Thin: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Ultralight: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Semibold: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Bold: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextSC-Heavy: + Full Name: .PingFang UI Text SC + Family: .PingFang UI Text SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Regular: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Default: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Medium: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Light: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Thin: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Ultralight: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Semibold: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Bold: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUITextTC-Heavy: + Full Name: .PingFang UI Text TC + Family: .PingFang UI Text TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Regular: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Default: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Medium: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Light: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Thin: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Ultralight: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Semibold: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Bold: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayHK-Heavy: + Full Name: .PingFang UI Watch Display HK + Family: .PingFang UI Watch Display HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Regular: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Default: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Medium: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Light: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Thin: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Ultralight: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Semibold: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Bold: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayMO-Heavy: + Full Name: .PingFang UI Watch Display MO + Family: .PingFang UI Watch Display MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Regular: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Default: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Medium: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Light: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Thin: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Ultralight: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Semibold: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Bold: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplaySC-Heavy: + Full Name: .PingFang UI Watch Display SC + Family: .PingFang UI Watch Display SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Regular: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Default: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Medium: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Light: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Thin: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Ultralight: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Semibold: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Bold: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchDisplayTC-Heavy: + Full Name: .PingFang UI Watch Display TC + Family: .PingFang UI Watch Display TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Display-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Regular: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Default: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Medium: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Light: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Thin: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Ultralight: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Semibold: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Bold: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextHK-Heavy: + Full Name: .PingFang UI Watch Text HK + Family: .PingFang UI Watch Text HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Regular: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Default: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Medium: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Light: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Thin: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Ultralight: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Semibold: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Bold: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextMO-Heavy: + Full Name: .PingFang UI Watch Text MO + Family: .PingFang UI Watch Text MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Regular: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Default: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Medium: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Light: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Thin: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Ultralight: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Semibold: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Bold: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextSC-Heavy: + Full Name: .PingFang UI Watch Text SC + Family: .PingFang UI Watch Text SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Regular: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Default: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Default + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Medium: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Light: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Thin: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Ultralight: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Semibold: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Bold: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangUIWatchTextTC-Heavy: + Full Name: .PingFang UI Watch Text TC + Family: .PingFang UI Watch Text TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 UI Watch Text-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Regular: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Medium: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Light: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Thin: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Ultralight: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Semibold: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Bold: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchHK-Heavy: + Full Name: .PingFang Watch HK + Family: .PingFang Watch HK + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-港; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Regular: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Medium: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Light: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Thin: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Ultralight: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Semibold: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Bold: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchMO-Heavy: + Full Name: .PingFang Watch MO + Family: .PingFang Watch MO + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-澳; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Regular: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Medium: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Light: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Thin: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Ultralight: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Semibold: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Bold: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchSC-Heavy: + Full Name: .PingFang Watch SC + Family: .PingFang Watch SC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-簡; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Regular: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Обычный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Medium: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Средний + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Light: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Легкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Thin: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Тонкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Ultralight: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Ультралегкий + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Semibold: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Полужирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Bold: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Жирный + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .PingFangWatchTC-Heavy: + Full Name: .PingFang Watch TC + Family: .PingFang Watch TC + Style: Тяжелый + Version: 20.0d21e3 + Unique Name: .蘋方 Watch-繁; 20.0d21e3; 2024-07-24 + Copyright: © 2024 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia.ttf + Typefaces: + Georgia: + Full Name: Georgia + Family: Georgia + Style: Обычный + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charmonman.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e5b038333b21d35a7cab9653e3551c464452f70b.asset/AssetData/Charmonman.ttc + Typefaces: + Charmonman-Regular: + Full Name: Charmonman Regular + Family: Charmonman + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Charmonman-Regular + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Charmonman Project Authors (https://github.com/cadsondemak/Charmonman) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charmonman-Bold: + Full Name: Charmonman Bold + Family: Charmonman + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Charmonman-Bold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Charmonman Project Authors (https://github.com/cadsondemak/Charmonman) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Shobhika-Devanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/33d2d6330fcf6ef69138365cdbff55cda9338d25.asset/AssetData/Shobhika-Devanagari.ttc + Typefaces: + Shobhika-Bold: + Full Name: Shobhika Bold + Family: Shobhika + Style: Жирный + Version: 20.0d1e2 (1.040) + Vendor: IIT Bombay + Unique Name: Shobhika Bold; 20.0d1e2 (1.040); 2024-07-05 + Designer: IIT Bombay + Copyright: Copyright (c) 2016, Indian Institute of Technology Bombay. All rights reserved. + Trademark: Shobhika is copyrighted by IIT Bombay + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Shobhika-Regular: + Full Name: Shobhika Regular + Family: Shobhika + Style: Обычный + Version: 20.0d1e2 (1.040) + Vendor: IIT Bombay + Unique Name: Shobhika Regular; 20.0d1e2 (1.040); 2024-07-05 + Designer: IIT Bombay + Copyright: Copyright (c) 2016, Indian Institute of Technology Bombay. All rights reserved. + Trademark: Shobhika is copyrighted by IIT Bombay + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STFANGSO.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1821952872c81043711aab6910052b65da8edf2c.asset/AssetData/STFANGSO.ttf + Typefaces: + STFangsong: + Full Name: STFangsong + Family: STFangsong + Style: Обычный + Version: 17.0d1e4 + Unique Name: STFangsong; 17.0d1e4; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STFangsong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Italic.ttf + Typefaces: + SFPro-MediumItalic: + Full Name: SF Pro Средний курсивный + Family: SF Pro + Style: Средний курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-BlackItalic: + Full Name: SF Pro Черный курсивный + Family: SF Pro + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-ThinItalic: + Full Name: SF Pro Тонкий курсивный + Family: SF Pro + Style: Тонкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-RegularItalic: + Full Name: SF Pro Обычный курсивный + Family: SF Pro + Style: Обычный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-LightItalic: + Full Name: SF Pro Легкий курсивный + Family: SF Pro + Style: Легкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-SemiboldItalic: + Full Name: SF Pro Полужирный курсивный + Family: SF Pro + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-BoldItalic: + Full Name: SF Pro Жирный курсивный + Family: SF Pro + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-HeavyItalic: + Full Name: SF Pro Тяжелый курсивный + Family: SF Pro + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SFPro-UltralightItalic: + Full Name: SF Pro Ультралегкий курсивный + Family: SF Pro + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooTammuduTelugu.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/d205d9bccc1eea9c4867b7349d079f2f0b8f7e51.asset/AssetData/BalooTammuduTelugu.ttc + Typefaces: + BalooTammudu2-Bold: + Full Name: Baloo Tammudu 2 Bold + Family: Baloo Tammudu 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-SemiBold: + Full Name: Baloo Tammudu 2 SemiBold + Family: Baloo Tammudu 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-Medium: + Full Name: Baloo Tammudu 2 Medium + Family: Baloo Tammudu 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-ExtraBold: + Full Name: Baloo Tammudu 2 ExtraBold + Family: Baloo Tammudu 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTammudu2-Regular: + Full Name: Baloo Tammudu 2 Regular + Family: Baloo Tammudu 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tammudu 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Omkar Shende and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroMarathi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3b8143460bd19d854cbc733699697b0e2182e28e.asset/AssetData/TiroMarathi.ttc + Typefaces: + TiroDevaMarathi-Italic: + Full Name: Tiro Devanagari Marathi Italic + Family: Tiro Devanagari Marathi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Marathi Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Marathi and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaMarathi: + Full Name: Tiro Devanagari Marathi + Family: Tiro Devanagari Marathi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Marathi; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Marathi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + JainiDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4301d243b614c4710741b1fcb274605ee1c5f801.asset/AssetData/JainiDevanagari-Regular.ttf + Typefaces: + Jaini: + Full Name: Jaini + Family: Jaini + Style: Обычный + Version: 20.0d1e2 (1.001) + Vendor: Ek Type + Unique Name: Jaini; 20.0d1e2 (1.001); 2024-07-08 + Designer: Girish Dalvi, Maithili Shingre + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArmenian.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArmenian.ttf + Typefaces: + .SFArmenian-Regular: + Full Name: .SF Armenian Обычный + Family: .SF Armenian + Style: Обычный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Medium: + Full Name: .SF Armenian Средний + Family: .SF Armenian + Style: Средний + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Light: + Full Name: .SF Armenian Легкий + Family: .SF Armenian + Style: Легкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Thin: + Full Name: .SF Armenian Тонкий + Family: .SF Armenian + Style: Тонкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Ultralight: + Full Name: .SF Armenian Ультралегкий + Family: .SF Armenian + Style: Ультралегкий + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Semibold: + Full Name: .SF Armenian Полужирный + Family: .SF Armenian + Style: Полужирный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Bold: + Full Name: .SF Armenian Жирный + Family: .SF Armenian + Style: Жирный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Heavy: + Full Name: .SF Armenian Тяжелый + Family: .SF Armenian + Style: Тяжелый + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArmenian-Black: + Full Name: .SF Armenian Черный + Family: .SF Armenian + Style: Черный + Version: 19.0d7e2 + Vendor: Apple Inc. + Unique Name: .SF Armenian; 19.0d7e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-BoldItalic.otf + Typefaces: + SFCompactText-BoldItalic: + Full Name: SF Compact Text Bold Italic + Family: SF Compact Text + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArialHB.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ArialHB.ttc + Typefaces: + ArialHebrewScholar-Light: + Full Name: Arial Hebrew Scholar Light + Family: Arial Hebrew Scholar + Style: Светлый + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrewScholar-Bold: + Full Name: Arial Hebrew Scholar Bold + Family: Arial Hebrew Scholar + Style: Жирный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrewScholar: + Full Name: Arial Hebrew Scholar + Family: Arial Hebrew Scholar + Style: Обычный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Scholar; 13.0d1e1; 2017-06-17 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Arial ® Trademark of The Monotype Corporation registered in the US Pat & TM off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew-Light: + Full Name: Arial Hebrew Light + Family: Arial Hebrew + Style: Светлый + Version: 13.0d1e1 + Unique Name: Arial Hebrew Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew-Bold: + Full Name: Arial Hebrew Bold + Family: Arial Hebrew + Style: Жирный + Version: 13.0d1e1 + Unique Name: Arial Hebrew Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial ® is a Trademark of The Monotype Corporation registered in the US Pat & TM Off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArialHebrew: + Full Name: Arial Hebrew + Family: Arial Hebrew + Style: Обычный + Version: 13.0d1e1 + Unique Name: Arial Hebrew; 13.0d1e1; 2017-06-17 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Arial ® Trademark of The Monotype Corporation registered in the US Pat & TM off. and elsewhere. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface: + Full Name: .Arial Hebrew Desk Interface + Family: .Arial Hebrew Desk Interface + Style: Обычный + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface; 13.0d1e1; 2017-06-17 + Copyright: Typeface © Monotype Typography ltd. Data © Monotype Typography ltd, Type Solutions Inc 1990-1993. All rights reserved. + Trademark: Arial‭ ‬‮)‬‭ ‬Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface-Light: + Full Name: ‭.‬Arial Hebrew Desk Interface Light + Family: ‭.‬Arial Hebrew Desk Interface + Style: Легкий + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface Light; 13.0d1e1; 2017-06-17 + Copyright: Copyright‭ ‬‮(‬‭ ‬Data 1993‭ ‬Monotype Typography ltd‭. / ‬Type Solutions Inc‭. ‬1993‭ ‬All rights reserved‭.‬ + Trademark: Arial‭ ‬‮)‬‭ ‬is a Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM Off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ArialHebrewDeskInterface-Bold: + Full Name: .Arial Hebrew Desk Interface Bold + Family: .Arial Hebrew Desk Interface + Style: Жирный + Version: 13.0d1e1 + Unique Name: .Arial Hebrew Desk Interface Bold; 13.0d1e1; 2017-06-17 + Copyright: Copyright © Data 1993 Monotype Typography ltd. / Type Solutions Inc. 1993 All rights reserved. + Trademark: Arial‭ ‬‮)‬‭ ‬is a Trademark of The Monotype Corporation registered in the US Pat‭ ‬&‭ ‬TM Off‭. ‬and elsewhere‭.‬ + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-UltralightItalic.otf + Typefaces: + SFCompactText-UltralightItalic: + Full Name: SF Compact Text Ultralight Italic + Family: SF Compact Text + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kaiti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54a2ad3dac6cac875ad675d7d273dc425010a877.asset/AssetData/Kaiti.ttc + Typefaces: + STKaitiSC-Regular: + Full Name: Kaiti SC Regular + Family: Kaiti SC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Kaiti SC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Regular: + Full Name: Kaiti TC Regular + Family: Kaiti TC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Kaiti TC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Black: + Full Name: Kaiti TC Black + Family: Kaiti TC + Style: Черный + Version: 17.0d1e2 + Unique Name: Kaiti TC Black; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiTC-Bold: + Full Name: Kaiti TC Bold + Family: Kaiti TC + Style: Жирный + Version: 17.0d1e2 + Unique Name: Kaiti TC Bold; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiSC-Bold: + Full Name: Kaiti SC Bold + Family: Kaiti SC + Style: Жирный + Version: 17.0d1e2 + Unique Name: Kaiti SC Bold; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaitiSC-Black: + Full Name: Kaiti SC Black + Family: Kaiti SC + Style: Черный + Version: 17.0d1e2 + Unique Name: Kaiti SC Black; 17.0d1e2; 2021-06-23 + Copyright: © 2012-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STKaiti: + Full Name: STKaiti + Family: STKaiti + Style: Обычный + Version: 17.0d1e2 + Unique Name: STKaiti; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STKaiti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Klee.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f110a45f1759f86c645cfd2f47baba57aa50056e.asset/AssetData/Klee.ttc + Typefaces: + Klee-Demibold: + Full Name: Klee Demibold + Family: Klee + Style: Полужирный + Version: 15.0d1e1 + Unique Name: Klee Demibold; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: KleePro is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Klee-Medium: + Full Name: Klee Medium + Family: Klee + Style: Средний + Version: 15.0d1e1 + Unique Name: Klee Medium; 15.0d1e1; 2019-07-30 + Designer: Fontworks Inc. フォントワークス + Copyright: Copyright © 2015 Fontworks Inc. All Rights Reserved. + Trademark: KleePro is a trademark of Fontworks Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaMalar-Tamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/84dc35c2215942fdbb9d6f3154ba0131f833809f.asset/AssetData/MuktaMalar-Tamil.ttc + Typefaces: + MuktaMalar-Light: + Full Name: Mukta Malar Light + Family: Mukta Malar + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-SemiBold: + Full Name: Mukta Malar SemiBold + Family: Mukta Malar + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-ExtraLight: + Full Name: Mukta Malar ExtraLight + Family: Mukta Malar + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-ExtraBold: + Full Name: Mukta Malar ExtraBold + Family: Mukta Malar + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Regular: + Full Name: Mukta Malar Regular + Family: Mukta Malar + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Bold: + Full Name: Mukta Malar Bold + Family: Mukta Malar + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMalar-Medium: + Full Name: Mukta Malar Medium + Family: Mukta Malar + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Malar Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Aadarsh Rajan, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNS.ttf + Typefaces: + .SFNS-Regular: + Full Name: Системный шрифт Обычный + Family: Системный шрифт + Style: Обычный + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG1: + Full Name: Системный шрифт Regular G1 + Family: Системный шрифт + Style: Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG2: + Full Name: Системный шрифт Regular G2 + Family: Системный шрифт + Style: Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG3: + Full Name: Системный шрифт Regular G3 + Family: Системный шрифт + Style: Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-RegularG4: + Full Name: Системный шрифт Regular G4 + Family: Системный шрифт + Style: Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegular: + Full Name: Системный шрифт Semi Expanded Regular + Family: Системный шрифт + Style: Semi Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG1: + Full Name: Системный шрифт Semi Expanded Regular G1 + Family: Системный шрифт + Style: Semi Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG2: + Full Name: Системный шрифт Semi Expanded Regular G2 + Family: Системный шрифт + Style: Semi Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG3: + Full Name: Системный шрифт Semi Expanded Regular G3 + Family: Системный шрифт + Style: Semi Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedRegularG4: + Full Name: Системный шрифт Semi Expanded Regular G4 + Family: Системный шрифт + Style: Semi Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegular: + Full Name: Системный шрифт Semi Condensed Regular + Family: Системный шрифт + Style: Semi Condensed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG1: + Full Name: Системный шрифт Semi Condensed Regular G1 + Family: Системный шрифт + Style: Semi Condensed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG2: + Full Name: Системный шрифт Semi Condensed Regular G2 + Family: Системный шрифт + Style: Semi Condensed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG3: + Full Name: Системный шрифт Semi Condensed Regular G3 + Family: Системный шрифт + Style: Semi Condensed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedRegularG4: + Full Name: Системный шрифт Semi Condensed Regular G4 + Family: Системный шрифт + Style: Semi Condensed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Medium: + Full Name: Системный шрифт Medium + Family: Системный шрифт + Style: Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG1: + Full Name: Системный шрифт Medium G1 + Family: Системный шрифт + Style: Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG2: + Full Name: Системный шрифт Medium G2 + Family: Системный шрифт + Style: Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG3: + Full Name: Системный шрифт Medium G3 + Family: Системный шрифт + Style: Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-MediumG4: + Full Name: Системный шрифт Medium G4 + Family: Системный шрифт + Style: Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMedium: + Full Name: Системный шрифт Semi Expanded Medium + Family: Системный шрифт + Style: Semi Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG1: + Full Name: Системный шрифт Semi Expanded Medium G1 + Family: Системный шрифт + Style: Semi Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG2: + Full Name: Системный шрифт Semi Expanded Medium G2 + Family: Системный шрифт + Style: Semi Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG3: + Full Name: Системный шрифт Semi Expanded Medium G3 + Family: Системный шрифт + Style: Semi Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedMediumG4: + Full Name: Системный шрифт Semi Expanded Medium G4 + Family: Системный шрифт + Style: Semi Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMedium: + Full Name: Системный шрифт Semi Condensed Medium + Family: Системный шрифт + Style: Semi Condensed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG1: + Full Name: Системный шрифт Semi Condensed Medium G1 + Family: Системный шрифт + Style: Semi Condensed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG2: + Full Name: Системный шрифт Semi Condensed Medium G2 + Family: Системный шрифт + Style: Semi Condensed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG3: + Full Name: Системный шрифт Semi Condensed Medium G3 + Family: Системный шрифт + Style: Semi Condensed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedMediumG4: + Full Name: Системный шрифт Semi Condensed Medium G4 + Family: Системный шрифт + Style: Semi Condensed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Light: + Full Name: Системный шрифт Light + Family: Системный шрифт + Style: Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG1: + Full Name: Системный шрифт Light G1 + Family: Системный шрифт + Style: Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG2: + Full Name: Системный шрифт Light G2 + Family: Системный шрифт + Style: Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG3: + Full Name: Системный шрифт Light G3 + Family: Системный шрифт + Style: Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-LightG4: + Full Name: Системный шрифт Light G4 + Family: Системный шрифт + Style: Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLight: + Full Name: Системный шрифт Semi Expanded Light + Family: Системный шрифт + Style: Semi Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG1: + Full Name: Системный шрифт Semi Expanded Light G1 + Family: Системный шрифт + Style: Semi Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG2: + Full Name: Системный шрифт Semi Expanded Light G2 + Family: Системный шрифт + Style: Semi Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG3: + Full Name: Системный шрифт Semi Expanded Light G3 + Family: Системный шрифт + Style: Semi Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedLightG4: + Full Name: Системный шрифт Semi Expanded Light G4 + Family: Системный шрифт + Style: Semi Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLight: + Full Name: Системный шрифт Semi Condensed Light + Family: Системный шрифт + Style: Semi Condensed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG1: + Full Name: Системный шрифт Semi Condensed Light G1 + Family: Системный шрифт + Style: Semi Condensed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG2: + Full Name: Системный шрифт Semi Condensed Light G2 + Family: Системный шрифт + Style: Semi Condensed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG3: + Full Name: Системный шрифт Semi Condensed Light G3 + Family: Системный шрифт + Style: Semi Condensed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedLightG4: + Full Name: Системный шрифт Semi Condensed Light G4 + Family: Системный шрифт + Style: Semi Condensed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Thin: + Full Name: Системный шрифт Thin + Family: Системный шрифт + Style: Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG1: + Full Name: Системный шрифт Thin G1 + Family: Системный шрифт + Style: Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG2: + Full Name: Системный шрифт Thin G2 + Family: Системный шрифт + Style: Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG3: + Full Name: Системный шрифт Thin G3 + Family: Системный шрифт + Style: Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ThinG4: + Full Name: Системный шрифт Thin G4 + Family: Системный шрифт + Style: Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThin: + Full Name: Системный шрифт Semi Expanded Thin + Family: Системный шрифт + Style: Semi Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG1: + Full Name: Системный шрифт Semi Expanded Thin G1 + Family: Системный шрифт + Style: Semi Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG2: + Full Name: Системный шрифт Semi Expanded Thin G2 + Family: Системный шрифт + Style: Semi Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG3: + Full Name: Системный шрифт Semi Expanded Thin G3 + Family: Системный шрифт + Style: Semi Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedThinG4: + Full Name: Системный шрифт Semi Expanded Thin G4 + Family: Системный шрифт + Style: Semi Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThin: + Full Name: Системный шрифт Semi Condensed Thin + Family: Системный шрифт + Style: Semi Condensed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG1: + Full Name: Системный шрифт Semi Condensed Thin G1 + Family: Системный шрифт + Style: Semi Condensed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG2: + Full Name: Системный шрифт Semi Condensed Thin G2 + Family: Системный шрифт + Style: Semi Condensed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG3: + Full Name: Системный шрифт Semi Condensed Thin G3 + Family: Системный шрифт + Style: Semi Condensed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedThinG4: + Full Name: Системный шрифт Semi Condensed Thin G4 + Family: Системный шрифт + Style: Semi Condensed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Ultralight: + Full Name: Системный шрифт Ultralight + Family: Системный шрифт + Style: Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG1: + Full Name: Системный шрифт Ultralight G1 + Family: Системный шрифт + Style: Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG2: + Full Name: Системный шрифт Ultralight G2 + Family: Системный шрифт + Style: Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG3: + Full Name: Системный шрифт Ultralight G3 + Family: Системный шрифт + Style: Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltralightG4: + Full Name: Системный шрифт Ultralight G4 + Family: Системный шрифт + Style: Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralight: + Full Name: Системный шрифт Semi Expanded Ultralight + Family: Системный шрифт + Style: Semi Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG1: + Full Name: Системный шрифт Semi Expanded Ultralight G1 + Family: Системный шрифт + Style: Semi Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG2: + Full Name: Системный шрифт Semi Expanded Ultralight G2 + Family: Системный шрифт + Style: Semi Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG3: + Full Name: Системный шрифт Semi Expanded Ultralight G3 + Family: Системный шрифт + Style: Semi Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedUltralightG4: + Full Name: Системный шрифт Semi Expanded Ultralight G4 + Family: Системный шрифт + Style: Semi Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralight: + Full Name: Системный шрифт Semi Condensed Ultralight + Family: Системный шрифт + Style: Semi Condensed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG1: + Full Name: Системный шрифт Semi Condensed Ultralight G1 + Family: Системный шрифт + Style: Semi Condensed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG2: + Full Name: Системный шрифт Semi Condensed Ultralight G2 + Family: Системный шрифт + Style: Semi Condensed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG3: + Full Name: Системный шрифт Semi Condensed Ultralight G3 + Family: Системный шрифт + Style: Semi Condensed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedUltralightG4: + Full Name: Системный шрифт Semi Condensed Ultralight G4 + Family: Системный шрифт + Style: Semi Condensed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Semibold: + Full Name: Системный шрифт Semibold + Family: Системный шрифт + Style: Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG1: + Full Name: Системный шрифт Semibold G1 + Family: Системный шрифт + Style: Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG2: + Full Name: Системный шрифт Semibold G2 + Family: Системный шрифт + Style: Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG3: + Full Name: Системный шрифт Semibold G3 + Family: Системный шрифт + Style: Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiboldG4: + Full Name: Системный шрифт Semibold G4 + Family: Системный шрифт + Style: Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemibold: + Full Name: Системный шрифт Semi Expanded Semibold + Family: Системный шрифт + Style: Semi Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG1: + Full Name: Системный шрифт Semi Expanded Semibold G1 + Family: Системный шрифт + Style: Semi Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG2: + Full Name: Системный шрифт Semi Expanded Semibold G2 + Family: Системный шрифт + Style: Semi Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG3: + Full Name: Системный шрифт Semi Expanded Semibold G3 + Family: Системный шрифт + Style: Semi Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedSemiboldG4: + Full Name: Системный шрифт Semi Expanded Semibold G4 + Family: Системный шрифт + Style: Semi Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemibold: + Full Name: Системный шрифт Semi Condensed Semibold + Family: Системный шрифт + Style: Semi Condensed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG1: + Full Name: Системный шрифт Semi Condensed Semibold G1 + Family: Системный шрифт + Style: Semi Condensed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG2: + Full Name: Системный шрифт Semi Condensed Semibold G2 + Family: Системный шрифт + Style: Semi Condensed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG3: + Full Name: Системный шрифт Semi Condensed Semibold G3 + Family: Системный шрифт + Style: Semi Condensed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedSemiboldG4: + Full Name: Системный шрифт Semi Condensed Semibold G4 + Family: Системный шрифт + Style: Semi Condensed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Bold: + Full Name: Системный шрифт Bold + Family: Системный шрифт + Style: Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG1: + Full Name: Системный шрифт Bold G1 + Family: Системный шрифт + Style: Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG2: + Full Name: Системный шрифт Bold G2 + Family: Системный шрифт + Style: Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG3: + Full Name: Системный шрифт Bold G3 + Family: Системный шрифт + Style: Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-BoldG4: + Full Name: Системный шрифт Bold G4 + Family: Системный шрифт + Style: Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBold: + Full Name: Системный шрифт Semi Expanded Bold + Family: Системный шрифт + Style: Semi Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG1: + Full Name: Системный шрифт Semi Expanded Bold G1 + Family: Системный шрифт + Style: Semi Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG2: + Full Name: Системный шрифт Semi Expanded Bold G2 + Family: Системный шрифт + Style: Semi Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG3: + Full Name: Системный шрифт Semi Expanded Bold G3 + Family: Системный шрифт + Style: Semi Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBoldG4: + Full Name: Системный шрифт Semi Expanded Bold G4 + Family: Системный шрифт + Style: Semi Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBold: + Full Name: Системный шрифт Semi Condensed Bold + Family: Системный шрифт + Style: Semi Condensed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG1: + Full Name: Системный шрифт Semi Condensed Bold G1 + Family: Системный шрифт + Style: Semi Condensed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG2: + Full Name: Системный шрифт Semi Condensed Bold G2 + Family: Системный шрифт + Style: Semi Condensed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG3: + Full Name: Системный шрифт Semi Condensed Bold G3 + Family: Системный шрифт + Style: Semi Condensed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBoldG4: + Full Name: Системный шрифт Semi Condensed Bold G4 + Family: Системный шрифт + Style: Semi Condensed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Heavy: + Full Name: Системный шрифт Heavy + Family: Системный шрифт + Style: Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG1: + Full Name: Системный шрифт Heavy G1 + Family: Системный шрифт + Style: Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG2: + Full Name: Системный шрифт Heavy G2 + Family: Системный шрифт + Style: Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG3: + Full Name: Системный шрифт Heavy G3 + Family: Системный шрифт + Style: Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-HeavyG4: + Full Name: Системный шрифт Heavy G4 + Family: Системный шрифт + Style: Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavy: + Full Name: Системный шрифт Semi Expanded Heavy + Family: Системный шрифт + Style: Semi Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG1: + Full Name: Системный шрифт Semi Expanded Heavy G1 + Family: Системный шрифт + Style: Semi Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG2: + Full Name: Системный шрифт Semi Expanded Heavy G2 + Family: Системный шрифт + Style: Semi Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG3: + Full Name: Системный шрифт Semi Expanded Heavy G3 + Family: Системный шрифт + Style: Semi Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedHeavyG4: + Full Name: Системный шрифт Semi Expanded Heavy G4 + Family: Системный шрифт + Style: Semi Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavy: + Full Name: Системный шрифт Semi Condensed Heavy + Family: Системный шрифт + Style: Semi Condensed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG1: + Full Name: Системный шрифт Semi Condensed Heavy G1 + Family: Системный шрифт + Style: Semi Condensed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG2: + Full Name: Системный шрифт Semi Condensed Heavy G2 + Family: Системный шрифт + Style: Semi Condensed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG3: + Full Name: Системный шрифт Semi Condensed Heavy G3 + Family: Системный шрифт + Style: Semi Condensed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedHeavyG4: + Full Name: Системный шрифт Semi Condensed Heavy G4 + Family: Системный шрифт + Style: Semi Condensed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-Black: + Full Name: Системный шрифт Black + Family: Системный шрифт + Style: Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiExpandedBlack: + Full Name: Системный шрифт Semi Expanded Black + Family: Системный шрифт + Style: Semi Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-SemiCondensedBlack: + Full Name: Системный шрифт Semi Condensed Black + Family: Системный шрифт + Style: Semi Condensed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegular: + Full Name: Системный шрифт Expanded Regular + Family: Системный шрифт + Style: Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG1: + Full Name: Системный шрифт Expanded Regular G1 + Family: Системный шрифт + Style: Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG2: + Full Name: Системный шрифт Expanded Regular G2 + Family: Системный шрифт + Style: Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG3: + Full Name: Системный шрифт Expanded Regular G3 + Family: Системный шрифт + Style: Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedRegularG4: + Full Name: Системный шрифт Expanded Regular G4 + Family: Системный шрифт + Style: Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegular: + Full Name: Системный шрифт Extra Expanded Regular + Family: Системный шрифт + Style: Extra Expanded Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG1: + Full Name: Системный шрифт Extra Expanded Regular G1 + Family: Системный шрифт + Style: Extra Expanded Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG2: + Full Name: Системный шрифт Extra Expanded Regular G2 + Family: Системный шрифт + Style: Extra Expanded Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG3: + Full Name: Системный шрифт Extra Expanded Regular G3 + Family: Системный шрифт + Style: Extra Expanded Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedRegularG4: + Full Name: Системный шрифт Extra Expanded Regular G4 + Family: Системный шрифт + Style: Extra Expanded Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMedium: + Full Name: Системный шрифт Expanded Medium + Family: Системный шрифт + Style: Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG1: + Full Name: Системный шрифт Expanded Medium G1 + Family: Системный шрифт + Style: Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG2: + Full Name: Системный шрифт Expanded Medium G2 + Family: Системный шрифт + Style: Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG3: + Full Name: Системный шрифт Expanded Medium G3 + Family: Системный шрифт + Style: Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedMediumG4: + Full Name: Системный шрифт Expanded Medium G4 + Family: Системный шрифт + Style: Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMedium: + Full Name: Системный шрифт Extra Expanded Medium + Family: Системный шрифт + Style: Extra Expanded Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG1: + Full Name: Системный шрифт Extra Expanded Medium G1 + Family: Системный шрифт + Style: Extra Expanded Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG2: + Full Name: Системный шрифт Extra Expanded Medium G2 + Family: Системный шрифт + Style: Extra Expanded Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG3: + Full Name: Системный шрифт Extra Expanded Medium G3 + Family: Системный шрифт + Style: Extra Expanded Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedMediumG4: + Full Name: Системный шрифт Extra Expanded Medium G4 + Family: Системный шрифт + Style: Extra Expanded Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLight: + Full Name: Системный шрифт Expanded Light + Family: Системный шрифт + Style: Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG1: + Full Name: Системный шрифт Expanded Light G1 + Family: Системный шрифт + Style: Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG2: + Full Name: Системный шрифт Expanded Light G2 + Family: Системный шрифт + Style: Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG3: + Full Name: Системный шрифт Expanded Light G3 + Family: Системный шрифт + Style: Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedLightG4: + Full Name: Системный шрифт Expanded Light G4 + Family: Системный шрифт + Style: Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLight: + Full Name: Системный шрифт Extra Expanded Light + Family: Системный шрифт + Style: Extra Expanded Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG1: + Full Name: Системный шрифт Extra Expanded Light G1 + Family: Системный шрифт + Style: Extra Expanded Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG2: + Full Name: Системный шрифт Extra Expanded Light G2 + Family: Системный шрифт + Style: Extra Expanded Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG3: + Full Name: Системный шрифт Extra Expanded Light G3 + Family: Системный шрифт + Style: Extra Expanded Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedLightG4: + Full Name: Системный шрифт Extra Expanded Light G4 + Family: Системный шрифт + Style: Extra Expanded Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThin: + Full Name: Системный шрифт Expanded Thin + Family: Системный шрифт + Style: Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG1: + Full Name: Системный шрифт Expanded Thin G1 + Family: Системный шрифт + Style: Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG2: + Full Name: Системный шрифт Expanded Thin G2 + Family: Системный шрифт + Style: Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG3: + Full Name: Системный шрифт Expanded Thin G3 + Family: Системный шрифт + Style: Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedThinG4: + Full Name: Системный шрифт Expanded Thin G4 + Family: Системный шрифт + Style: Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThin: + Full Name: Системный шрифт Extra Expanded Thin + Family: Системный шрифт + Style: Extra Expanded Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG1: + Full Name: Системный шрифт Extra Expanded Thin G1 + Family: Системный шрифт + Style: Extra Expanded Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG2: + Full Name: Системный шрифт Extra Expanded Thin G2 + Family: Системный шрифт + Style: Extra Expanded Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG3: + Full Name: Системный шрифт Extra Expanded Thin G3 + Family: Системный шрифт + Style: Extra Expanded Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedThinG4: + Full Name: Системный шрифт Extra Expanded Thin G4 + Family: Системный шрифт + Style: Extra Expanded Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralight: + Full Name: Системный шрифт Expanded Ultralight + Family: Системный шрифт + Style: Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG1: + Full Name: Системный шрифт Expanded Ultralight G1 + Family: Системный шрифт + Style: Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG2: + Full Name: Системный шрифт Expanded Ultralight G2 + Family: Системный шрифт + Style: Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG3: + Full Name: Системный шрифт Expanded Ultralight G3 + Family: Системный шрифт + Style: Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedUltralightG4: + Full Name: Системный шрифт Expanded Ultralight G4 + Family: Системный шрифт + Style: Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralight: + Full Name: Системный шрифт Extra Expanded Ultralight + Family: Системный шрифт + Style: Extra Expanded Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG1: + Full Name: Системный шрифт Extra Expanded Ultralight G1 + Family: Системный шрифт + Style: Extra Expanded Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG2: + Full Name: Системный шрифт Extra Expanded Ultralight G2 + Family: Системный шрифт + Style: Extra Expanded Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG3: + Full Name: Системный шрифт Extra Expanded Ultralight G3 + Family: Системный шрифт + Style: Extra Expanded Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedUltralightG4: + Full Name: Системный шрифт Extra Expanded Ultralight G4 + Family: Системный шрифт + Style: Extra Expanded Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemibold: + Full Name: Системный шрифт Expanded Semibold + Family: Системный шрифт + Style: Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG1: + Full Name: Системный шрифт Expanded Semibold G1 + Family: Системный шрифт + Style: Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG2: + Full Name: Системный шрифт Expanded Semibold G2 + Family: Системный шрифт + Style: Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG3: + Full Name: Системный шрифт Expanded Semibold G3 + Family: Системный шрифт + Style: Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedSemiboldG4: + Full Name: Системный шрифт Expanded Semibold G4 + Family: Системный шрифт + Style: Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemibold: + Full Name: Системный шрифт Extra Expanded Semibold + Family: Системный шрифт + Style: Extra Expanded Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG1: + Full Name: Системный шрифт Extra Expanded Semibold G1 + Family: Системный шрифт + Style: Extra Expanded Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG2: + Full Name: Системный шрифт Extra Expanded Semibold G2 + Family: Системный шрифт + Style: Extra Expanded Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG3: + Full Name: Системный шрифт Extra Expanded Semibold G3 + Family: Системный шрифт + Style: Extra Expanded Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedSemiboldG4: + Full Name: Системный шрифт Extra Expanded Semibold G4 + Family: Системный шрифт + Style: Extra Expanded Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBold: + Full Name: Системный шрифт Expanded Bold + Family: Системный шрифт + Style: Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG1: + Full Name: Системный шрифт Expanded Bold G1 + Family: Системный шрифт + Style: Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG2: + Full Name: Системный шрифт Expanded Bold G2 + Family: Системный шрифт + Style: Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG3: + Full Name: Системный шрифт Expanded Bold G3 + Family: Системный шрифт + Style: Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBoldG4: + Full Name: Системный шрифт Expanded Bold G4 + Family: Системный шрифт + Style: Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBold: + Full Name: Системный шрифт Extra Expanded Bold + Family: Системный шрифт + Style: Extra Expanded Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG1: + Full Name: Системный шрифт Extra Expanded Bold G1 + Family: Системный шрифт + Style: Extra Expanded Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG2: + Full Name: Системный шрифт Extra Expanded Bold G2 + Family: Системный шрифт + Style: Extra Expanded Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG3: + Full Name: Системный шрифт Extra Expanded Bold G3 + Family: Системный шрифт + Style: Extra Expanded Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBoldG4: + Full Name: Системный шрифт Extra Expanded Bold G4 + Family: Системный шрифт + Style: Extra Expanded Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavy: + Full Name: Системный шрифт Expanded Heavy + Family: Системный шрифт + Style: Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG1: + Full Name: Системный шрифт Expanded Heavy G1 + Family: Системный шрифт + Style: Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG2: + Full Name: Системный шрифт Expanded Heavy G2 + Family: Системный шрифт + Style: Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG3: + Full Name: Системный шрифт Expanded Heavy G3 + Family: Системный шрифт + Style: Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedHeavyG4: + Full Name: Системный шрифт Expanded Heavy G4 + Family: Системный шрифт + Style: Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavy: + Full Name: Системный шрифт Extra Expanded Heavy + Family: Системный шрифт + Style: Extra Expanded Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG1: + Full Name: Системный шрифт Extra Expanded Heavy G1 + Family: Системный шрифт + Style: Extra Expanded Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG2: + Full Name: Системный шрифт Extra Expanded Heavy G2 + Family: Системный шрифт + Style: Extra Expanded Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG3: + Full Name: Системный шрифт Extra Expanded Heavy G3 + Family: Системный шрифт + Style: Extra Expanded Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedHeavyG4: + Full Name: Системный шрифт Extra Expanded Heavy G4 + Family: Системный шрифт + Style: Extra Expanded Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExpandedBlack: + Full Name: Системный шрифт Expanded Black + Family: Системный шрифт + Style: Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraExpandedBlack: + Full Name: Системный шрифт Extra Expanded Black + Family: Системный шрифт + Style: Extra Expanded Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegular: + Full Name: Системный шрифт Condensed Regular + Family: Системный шрифт + Style: Condensed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG1: + Full Name: Системный шрифт Condensed Regular G1 + Family: Системный шрифт + Style: Condensed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG2: + Full Name: Системный шрифт Condensed Regular G2 + Family: Системный шрифт + Style: Condensed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG3: + Full Name: Системный шрифт Condensed Regular G3 + Family: Системный шрифт + Style: Condensed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedRegularG4: + Full Name: Системный шрифт Condensed Regular G4 + Family: Системный шрифт + Style: Condensed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegular: + Full Name: Системный шрифт Compressed Regular + Family: Системный шрифт + Style: Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG1: + Full Name: Системный шрифт Compressed Regular G1 + Family: Системный шрифт + Style: Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG2: + Full Name: Системный шрифт Compressed Regular G2 + Family: Системный шрифт + Style: Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG3: + Full Name: Системный шрифт Compressed Regular G3 + Family: Системный шрифт + Style: Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedRegularG4: + Full Name: Системный шрифт Compressed Regular G4 + Family: Системный шрифт + Style: Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegular: + Full Name: Системный шрифт Extra Compressed Regular + Family: Системный шрифт + Style: Extra Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG1: + Full Name: Системный шрифт Extra Compressed Regular G1 + Family: Системный шрифт + Style: Extra Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG2: + Full Name: Системный шрифт Extra Compressed Regular G2 + Family: Системный шрифт + Style: Extra Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG3: + Full Name: Системный шрифт Extra Compressed Regular G3 + Family: Системный шрифт + Style: Extra Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedRegularG4: + Full Name: Системный шрифт Extra Compressed Regular G4 + Family: Системный шрифт + Style: Extra Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegular: + Full Name: Системный шрифт Ultra Compressed Regular + Family: Системный шрифт + Style: Ultra Compressed Regular + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG1: + Full Name: Системный шрифт Ultra Compressed Regular G1 + Family: Системный шрифт + Style: Ultra Compressed Regular G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG2: + Full Name: Системный шрифт Ultra Compressed Regular G2 + Family: Системный шрифт + Style: Ultra Compressed Regular G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG3: + Full Name: Системный шрифт Ultra Compressed Regular G3 + Family: Системный шрифт + Style: Ultra Compressed Regular G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedRegularG4: + Full Name: Системный шрифт Ultra Compressed Regular G4 + Family: Системный шрифт + Style: Ultra Compressed Regular G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMedium: + Full Name: Системный шрифт Condensed Medium + Family: Системный шрифт + Style: Condensed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG1: + Full Name: Системный шрифт Condensed Medium G1 + Family: Системный шрифт + Style: Condensed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG2: + Full Name: Системный шрифт Condensed Medium G2 + Family: Системный шрифт + Style: Condensed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG3: + Full Name: Системный шрифт Condensed Medium G3 + Family: Системный шрифт + Style: Condensed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedMediumG4: + Full Name: Системный шрифт Condensed Medium G4 + Family: Системный шрифт + Style: Condensed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMedium: + Full Name: Системный шрифт Compressed Medium + Family: Системный шрифт + Style: Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG1: + Full Name: Системный шрифт Compressed Medium G1 + Family: Системный шрифт + Style: Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG2: + Full Name: Системный шрифт Compressed Medium G2 + Family: Системный шрифт + Style: Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG3: + Full Name: Системный шрифт Compressed Medium G3 + Family: Системный шрифт + Style: Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedMediumG4: + Full Name: Системный шрифт Compressed Medium G4 + Family: Системный шрифт + Style: Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMedium: + Full Name: Системный шрифт Extra Compressed Medium + Family: Системный шрифт + Style: Extra Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG1: + Full Name: Системный шрифт Extra Compressed Medium G1 + Family: Системный шрифт + Style: Extra Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG2: + Full Name: Системный шрифт Extra Compressed Medium G2 + Family: Системный шрифт + Style: Extra Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG3: + Full Name: Системный шрифт Extra Compressed Medium G3 + Family: Системный шрифт + Style: Extra Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedMediumG4: + Full Name: Системный шрифт Extra Compressed Medium G4 + Family: Системный шрифт + Style: Extra Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMedium: + Full Name: Системный шрифт Ultra Compressed Medium + Family: Системный шрифт + Style: Ultra Compressed Medium + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG1: + Full Name: Системный шрифт Ultra Compressed Medium G1 + Family: Системный шрифт + Style: Ultra Compressed Medium G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG2: + Full Name: Системный шрифт Ultra Compressed Medium G2 + Family: Системный шрифт + Style: Ultra Compressed Medium G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG3: + Full Name: Системный шрифт Ultra Compressed Medium G3 + Family: Системный шрифт + Style: Ultra Compressed Medium G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedMediumG4: + Full Name: Системный шрифт Ultra Compressed Medium G4 + Family: Системный шрифт + Style: Ultra Compressed Medium G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLight: + Full Name: Системный шрифт Condensed Light + Family: Системный шрифт + Style: Condensed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG1: + Full Name: Системный шрифт Condensed Light G1 + Family: Системный шрифт + Style: Condensed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG2: + Full Name: Системный шрифт Condensed Light G2 + Family: Системный шрифт + Style: Condensed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG3: + Full Name: Системный шрифт Condensed Light G3 + Family: Системный шрифт + Style: Condensed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedLightG4: + Full Name: Системный шрифт Condensed Light G4 + Family: Системный шрифт + Style: Condensed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLight: + Full Name: Системный шрифт Compressed Light + Family: Системный шрифт + Style: Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG1: + Full Name: Системный шрифт Compressed Light G1 + Family: Системный шрифт + Style: Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG2: + Full Name: Системный шрифт Compressed Light G2 + Family: Системный шрифт + Style: Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG3: + Full Name: Системный шрифт Compressed Light G3 + Family: Системный шрифт + Style: Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedLightG4: + Full Name: Системный шрифт Compressed Light G4 + Family: Системный шрифт + Style: Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLight: + Full Name: Системный шрифт Extra Compressed Light + Family: Системный шрифт + Style: Extra Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG1: + Full Name: Системный шрифт Extra Compressed Light G1 + Family: Системный шрифт + Style: Extra Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG2: + Full Name: Системный шрифт Extra Compressed Light G2 + Family: Системный шрифт + Style: Extra Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG3: + Full Name: Системный шрифт Extra Compressed Light G3 + Family: Системный шрифт + Style: Extra Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedLightG4: + Full Name: Системный шрифт Extra Compressed Light G4 + Family: Системный шрифт + Style: Extra Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLight: + Full Name: Системный шрифт Ultra Compressed Light + Family: Системный шрифт + Style: Ultra Compressed Light + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG1: + Full Name: Системный шрифт Ultra Compressed Light G1 + Family: Системный шрифт + Style: Ultra Compressed Light G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG2: + Full Name: Системный шрифт Ultra Compressed Light G2 + Family: Системный шрифт + Style: Ultra Compressed Light G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG3: + Full Name: Системный шрифт Ultra Compressed Light G3 + Family: Системный шрифт + Style: Ultra Compressed Light G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedLightG4: + Full Name: Системный шрифт Ultra Compressed Light G4 + Family: Системный шрифт + Style: Ultra Compressed Light G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThin: + Full Name: Системный шрифт Condensed Thin + Family: Системный шрифт + Style: Condensed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG1: + Full Name: Системный шрифт Condensed Thin G1 + Family: Системный шрифт + Style: Condensed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG2: + Full Name: Системный шрифт Condensed Thin G2 + Family: Системный шрифт + Style: Condensed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG3: + Full Name: Системный шрифт Condensed Thin G3 + Family: Системный шрифт + Style: Condensed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedThinG4: + Full Name: Системный шрифт Condensed Thin G4 + Family: Системный шрифт + Style: Condensed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThin: + Full Name: Системный шрифт Compressed Thin + Family: Системный шрифт + Style: Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG1: + Full Name: Системный шрифт Compressed Thin G1 + Family: Системный шрифт + Style: Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG2: + Full Name: Системный шрифт Compressed Thin G2 + Family: Системный шрифт + Style: Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG3: + Full Name: Системный шрифт Compressed Thin G3 + Family: Системный шрифт + Style: Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedThinG4: + Full Name: Системный шрифт Compressed Thin G4 + Family: Системный шрифт + Style: Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThin: + Full Name: Системный шрифт Extra Compressed Thin + Family: Системный шрифт + Style: Extra Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG1: + Full Name: Системный шрифт Extra Compressed Thin G1 + Family: Системный шрифт + Style: Extra Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG2: + Full Name: Системный шрифт Extra Compressed Thin G2 + Family: Системный шрифт + Style: Extra Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG3: + Full Name: Системный шрифт Extra Compressed Thin G3 + Family: Системный шрифт + Style: Extra Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedThinG4: + Full Name: Системный шрифт Extra Compressed Thin G4 + Family: Системный шрифт + Style: Extra Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThin: + Full Name: Системный шрифт Ultra Compressed Thin + Family: Системный шрифт + Style: Ultra Compressed Thin + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG1: + Full Name: Системный шрифт Ultra Compressed Thin G1 + Family: Системный шрифт + Style: Ultra Compressed Thin G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG2: + Full Name: Системный шрифт Ultra Compressed Thin G2 + Family: Системный шрифт + Style: Ultra Compressed Thin G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG3: + Full Name: Системный шрифт Ultra Compressed Thin G3 + Family: Системный шрифт + Style: Ultra Compressed Thin G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedThinG4: + Full Name: Системный шрифт Ultra Compressed Thin G4 + Family: Системный шрифт + Style: Ultra Compressed Thin G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralight: + Full Name: Системный шрифт Condensed Ultralight + Family: Системный шрифт + Style: Condensed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG1: + Full Name: Системный шрифт Condensed Ultralight G1 + Family: Системный шрифт + Style: Condensed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG2: + Full Name: Системный шрифт Condensed Ultralight G2 + Family: Системный шрифт + Style: Condensed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG3: + Full Name: Системный шрифт Condensed Ultralight G3 + Family: Системный шрифт + Style: Condensed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedUltralightG4: + Full Name: Системный шрифт Condensed Ultralight G4 + Family: Системный шрифт + Style: Condensed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralight: + Full Name: Системный шрифт Compressed Ultralight + Family: Системный шрифт + Style: Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG1: + Full Name: Системный шрифт Compressed Ultralight G1 + Family: Системный шрифт + Style: Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG2: + Full Name: Системный шрифт Compressed Ultralight G2 + Family: Системный шрифт + Style: Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG3: + Full Name: Системный шрифт Compressed Ultralight G3 + Family: Системный шрифт + Style: Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedUltralightG4: + Full Name: Системный шрифт Compressed Ultralight G4 + Family: Системный шрифт + Style: Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralight: + Full Name: Системный шрифт Extra Compressed Ultralight + Family: Системный шрифт + Style: Extra Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG1: + Full Name: Системный шрифт Extra Compressed Ultralight G1 + Family: Системный шрифт + Style: Extra Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG2: + Full Name: Системный шрифт Extra Compressed Ultralight G2 + Family: Системный шрифт + Style: Extra Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG3: + Full Name: Системный шрифт Extra Compressed Ultralight G3 + Family: Системный шрифт + Style: Extra Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedUltralightG4: + Full Name: Системный шрифт Extra Compressed Ultralight G4 + Family: Системный шрифт + Style: Extra Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralight: + Full Name: Системный шрифт Ultra Compressed Ultralight + Family: Системный шрифт + Style: Ultra Compressed Ultralight + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG1: + Full Name: Системный шрифт Ultra Compressed Ultralight G1 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG2: + Full Name: Системный шрифт Ultra Compressed Ultralight G2 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG3: + Full Name: Системный шрифт Ultra Compressed Ultralight G3 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedUltralightG4: + Full Name: Системный шрифт Ultra Compressed Ultralight G4 + Family: Системный шрифт + Style: Ultra Compressed Ultralight G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemibold: + Full Name: Системный шрифт Condensed Semibold + Family: Системный шрифт + Style: Condensed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG1: + Full Name: Системный шрифт Condensed Semibold G1 + Family: Системный шрифт + Style: Condensed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG2: + Full Name: Системный шрифт Condensed Semibold G2 + Family: Системный шрифт + Style: Condensed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG3: + Full Name: Системный шрифт Condensed Semibold G3 + Family: Системный шрифт + Style: Condensed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedSemiboldG4: + Full Name: Системный шрифт Condensed Semibold G4 + Family: Системный шрифт + Style: Condensed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemibold: + Full Name: Системный шрифт Compressed Semibold + Family: Системный шрифт + Style: Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG1: + Full Name: Системный шрифт Compressed Semibold G1 + Family: Системный шрифт + Style: Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG2: + Full Name: Системный шрифт Compressed Semibold G2 + Family: Системный шрифт + Style: Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG3: + Full Name: Системный шрифт Compressed Semibold G3 + Family: Системный шрифт + Style: Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedSemiboldG4: + Full Name: Системный шрифт Compressed Semibold G4 + Family: Системный шрифт + Style: Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemibold: + Full Name: Системный шрифт Extra Compressed Semibold + Family: Системный шрифт + Style: Extra Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG1: + Full Name: Системный шрифт Extra Compressed Semibold G1 + Family: Системный шрифт + Style: Extra Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG2: + Full Name: Системный шрифт Extra Compressed Semibold G2 + Family: Системный шрифт + Style: Extra Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG3: + Full Name: Системный шрифт Extra Compressed Semibold G3 + Family: Системный шрифт + Style: Extra Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedSemiboldG4: + Full Name: Системный шрифт Extra Compressed Semibold G4 + Family: Системный шрифт + Style: Extra Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemibold: + Full Name: Системный шрифт Ultra Compressed Semibold + Family: Системный шрифт + Style: Ultra Compressed Semibold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG1: + Full Name: Системный шрифт Ultra Compressed Semibold G1 + Family: Системный шрифт + Style: Ultra Compressed Semibold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG2: + Full Name: Системный шрифт Ultra Compressed Semibold G2 + Family: Системный шрифт + Style: Ultra Compressed Semibold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG3: + Full Name: Системный шрифт Ultra Compressed Semibold G3 + Family: Системный шрифт + Style: Ultra Compressed Semibold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedSemiboldG4: + Full Name: Системный шрифт Ultra Compressed Semibold G4 + Family: Системный шрифт + Style: Ultra Compressed Semibold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBold: + Full Name: Системный шрифт Condensed Bold + Family: Системный шрифт + Style: Condensed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG1: + Full Name: Системный шрифт Condensed Bold G1 + Family: Системный шрифт + Style: Condensed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG2: + Full Name: Системный шрифт Condensed Bold G2 + Family: Системный шрифт + Style: Condensed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG3: + Full Name: Системный шрифт Condensed Bold G3 + Family: Системный шрифт + Style: Condensed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBoldG4: + Full Name: Системный шрифт Condensed Bold G4 + Family: Системный шрифт + Style: Condensed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBold: + Full Name: Системный шрифт Compressed Bold + Family: Системный шрифт + Style: Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG1: + Full Name: Системный шрифт Compressed Bold G1 + Family: Системный шрифт + Style: Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG2: + Full Name: Системный шрифт Compressed Bold G2 + Family: Системный шрифт + Style: Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG3: + Full Name: Системный шрифт Compressed Bold G3 + Family: Системный шрифт + Style: Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBoldG4: + Full Name: Системный шрифт Compressed Bold G4 + Family: Системный шрифт + Style: Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBold: + Full Name: Системный шрифт Extra Compressed Bold + Family: Системный шрифт + Style: Extra Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG1: + Full Name: Системный шрифт Extra Compressed Bold G1 + Family: Системный шрифт + Style: Extra Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG2: + Full Name: Системный шрифт Extra Compressed Bold G2 + Family: Системный шрифт + Style: Extra Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG3: + Full Name: Системный шрифт Extra Compressed Bold G3 + Family: Системный шрифт + Style: Extra Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBoldG4: + Full Name: Системный шрифт Extra Compressed Bold G4 + Family: Системный шрифт + Style: Extra Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBold: + Full Name: Системный шрифт Ultra Compressed Bold + Family: Системный шрифт + Style: Ultra Compressed Bold + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG1: + Full Name: Системный шрифт Ultra Compressed Bold G1 + Family: Системный шрифт + Style: Ultra Compressed Bold G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG2: + Full Name: Системный шрифт Ultra Compressed Bold G2 + Family: Системный шрифт + Style: Ultra Compressed Bold G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG3: + Full Name: Системный шрифт Ultra Compressed Bold G3 + Family: Системный шрифт + Style: Ultra Compressed Bold G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBoldG4: + Full Name: Системный шрифт Ultra Compressed Bold G4 + Family: Системный шрифт + Style: Ultra Compressed Bold G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavy: + Full Name: Системный шрифт Condensed Heavy + Family: Системный шрифт + Style: Condensed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG1: + Full Name: Системный шрифт Condensed Heavy G1 + Family: Системный шрифт + Style: Condensed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG2: + Full Name: Системный шрифт Condensed Heavy G2 + Family: Системный шрифт + Style: Condensed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG3: + Full Name: Системный шрифт Condensed Heavy G3 + Family: Системный шрифт + Style: Condensed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedHeavyG4: + Full Name: Системный шрифт Condensed Heavy G4 + Family: Системный шрифт + Style: Condensed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavy: + Full Name: Системный шрифт Compressed Heavy + Family: Системный шрифт + Style: Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG1: + Full Name: Системный шрифт Compressed Heavy G1 + Family: Системный шрифт + Style: Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG2: + Full Name: Системный шрифт Compressed Heavy G2 + Family: Системный шрифт + Style: Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG3: + Full Name: Системный шрифт Compressed Heavy G3 + Family: Системный шрифт + Style: Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedHeavyG4: + Full Name: Системный шрифт Compressed Heavy G4 + Family: Системный шрифт + Style: Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavy: + Full Name: Системный шрифт Extra Compressed Heavy + Family: Системный шрифт + Style: Extra Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG1: + Full Name: Системный шрифт Extra Compressed Heavy G1 + Family: Системный шрифт + Style: Extra Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG2: + Full Name: Системный шрифт Extra Compressed Heavy G2 + Family: Системный шрифт + Style: Extra Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG3: + Full Name: Системный шрифт Extra Compressed Heavy G3 + Family: Системный шрифт + Style: Extra Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedHeavyG4: + Full Name: Системный шрифт Extra Compressed Heavy G4 + Family: Системный шрифт + Style: Extra Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavy: + Full Name: Системный шрифт Ultra Compressed Heavy + Family: Системный шрифт + Style: Ultra Compressed Heavy + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG1: + Full Name: Системный шрифт Ultra Compressed Heavy G1 + Family: Системный шрифт + Style: Ultra Compressed Heavy G1 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG2: + Full Name: Системный шрифт Ultra Compressed Heavy G2 + Family: Системный шрифт + Style: Ultra Compressed Heavy G2 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG3: + Full Name: Системный шрифт Ultra Compressed Heavy G3 + Family: Системный шрифт + Style: Ultra Compressed Heavy G3 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedHeavyG4: + Full Name: Системный шрифт Ultra Compressed Heavy G4 + Family: Системный шрифт + Style: Ultra Compressed Heavy G4 + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CondensedBlack: + Full Name: Системный шрифт Condensed Black + Family: Системный шрифт + Style: Condensed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-CompressedBlack: + Full Name: Системный шрифт Compressed Black + Family: Системный шрифт + Style: Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-ExtraCompressedBlack: + Full Name: Системный шрифт Extra Compressed Black + Family: Системный шрифт + Style: Extra Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNS-UltraCompressedBlack: + Full Name: Системный шрифт Ultra Compressed Black + Family: Системный шрифт + Style: Ultra Compressed Black + Version: 20.0d5e1 + Vendor: Apple Inc. + Unique Name: .SF NS; 20.0d5e1; 2024-04-04 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baoli.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9d5450ee93f17da1eacfa01b5e7b598f9e2dda2b.asset/AssetData/Baoli.ttc + Typefaces: + STBaoliSC-Regular: + Full Name: Baoli SC Regular + Family: Baoli SC + Style: Обычный + Version: 17.0d1e1 + Unique Name: Baoli SC Regular; 17.0d1e1; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STBaoliTC-Regular: + Full Name: Baoli TC Regular + Family: Baoli TC + Style: Обычный + Version: 17.0d1e1 + Unique Name: Baoli TC Regular; 17.0d1e1; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72 OS.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72 OS.ttc + Typefaces: + BodoniSvtyTwoOSITCTT-Book: + Full Name: Bodoni 72 Oldstyle Book + Family: Bodoni 72 Oldstyle + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoOSITCTT-Bold: + Full Name: Bodoni 72 Oldstyle Bold + Family: Bodoni 72 Oldstyle + Style: Жирный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Bold; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoOSITCTT-BookIt: + Full Name: Bodoni 72 Oldstyle Book Italic + Family: Bodoni 72 Oldstyle + Style: Книжный курсивный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Oldstyle Book Italic; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Webdings.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Webdings.ttf + Typefaces: + Webdings: + Full Name: Webdings + Family: Webdings + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Webdings + Designer: V.Connare,S.Lightfoot,I.Patterson,G.Wade + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Webdings is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Description: Designed in 1997 as a collaborative work between Microsoft's Vincent Connare and top Monotype designers Sue Lightfoot, Ian Patterson and Geraldine Wade. The images are intended for web designers who wish to include live fonts as a fast way of rendering graphics. Webdings is the latest member of Microsoft's Webfonts. Design coordination by Vincent Connare. Image designs by Vincent Connare, Ian Patterson, Sue Lightfoot and Geraldine Wade. Web and design consultation by Simon Daniels. TrueType hinting by Vincent Connare. Completed April 29, 1997. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Herculanum.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Herculanum.ttf + Typefaces: + Herculanum: + Full Name: Herculanum + Family: Herculanum + Style: Обычный + Version: 13.0d1e2 + Unique Name: Herculanum; 13.0d1e2; 2017-06-07 + Copyright: Copyright (c) 1981, 1982, Linotype Library GmbH. + Trademark: "Herculanum" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: Herculanum is a work + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFNSMono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFNSMono.ttf + Typefaces: + .SFNSMono-Regular: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Обычный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Medium: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Средний + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Light: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Легкий + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Semibold: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Полужирный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Bold: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Жирный + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFNSMono-Heavy: + Full Name: .SF NS Mono Light + Family: .SF NS Mono + Style: Тяжелый + Version: 16.0d2e1 + Vendor: Apple Inc. + Unique Name: .SF NS Mono Light; 16.0d2e1; 2020-06-30 + Designer: Apple Inc. + Copyright: Copyright (c) 2016-2019 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooTammaKannada.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1a2df7b90a562a91041e811b280251582bee7666.asset/AssetData/BalooTammaKannada.ttc + Typefaces: + BalooTamma2-Medium: + Full Name: Baloo Tamma 2 Medium + Family: Baloo Tamma 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-Bold: + Full Name: Baloo Tamma 2 Bold + Family: Baloo Tamma 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-SemiBold: + Full Name: Baloo Tamma 2 SemiBold + Family: Baloo Tamma 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-Regular: + Full Name: Baloo Tamma 2 Regular + Family: Baloo Tamma 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooTamma2-ExtraBold: + Full Name: Baloo Tamma 2 ExtraBold + Family: Baloo Tamma 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Tamma 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Divya Kowshik, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Rockwell.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Rockwell.ttc + Typefaces: + Rockwell-Italic: + Full Name: Rockwell Italic + Family: Rockwell + Style: Курсивный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell Italic; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-Bold: + Full Name: Rockwell-Bold + Family: Rockwell + Style: Жирный + Version: 13.0d2e1 + Unique Name: Rockwell Bold; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-BoldItalic: + Full Name: Rockwell Bold Italic + Family: Rockwell + Style: Жирный курсивный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell Bold Italic; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © Copyright 1989, 1990, 2002, 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Rockwell-Regular: + Full Name: Rockwell + Family: Rockwell + Style: Обычный + Version: 13.0d2e1 + Vendor: Monotype Imaging Inc. + Unique Name: Rockwell; 13.0d2e1; 2017-11-28 + Designer: Monotype Design Office + Copyright: © 2014 The Monotype Corporation. All Rights Reserved. + Trademark: Rockwell is a trademark of The Monotype Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SukhumvitSet.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SukhumvitSet.ttc + Typefaces: + SukhumvitSet-Thin: + Full Name: SukhumvitSet-Thin + Family: Sukhumvit Set + Style: Тонкий + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Thin; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Light: + Full Name: SukhumvitSet-Light + Family: Sukhumvit Set + Style: Легкий + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Light; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Medium: + Full Name: SukhumvitSet-Medium + Family: Sukhumvit Set + Style: Средний + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Medium; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Text: + Full Name: SukhumvitSet-Text + Family: Sukhumvit Set + Style: Text + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Text; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-Bold: + Full Name: SukhumvitSet-Bold + Family: Sukhumvit Set + Style: Жирный + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Bold; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SukhumvitSet-SemiBold: + Full Name: SukhumvitSet-SemiBold + Family: Sukhumvit Set + Style: Полужирный + Version: 17.0d1e2 + Unique Name: Sukhumvit Set Semi Bold; 17.0d1e2; 2021-07-13 + Designer: Anuthin Wongsunkakon + Copyright: Copyright © 2009, 2013 Cadson Demak Co. Ltd., Thailand. All Rights Reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-BlackItalic.otf + Typefaces: + SFProText-BlackItalic: + Full Name: SF Pro Text Black Italic + Family: SF Pro Text + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Diwan Thuluth.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Diwan Thuluth.ttf + Typefaces: + DiwanThuluth: + Full Name: Diwan Thuluth Regular + Family: Diwan Thuluth + Style: Обычный + Version: 13.0d1e5 + Unique Name: Diwan Thuluth Regular; 13.0d1e5; 2017-06-13 + Copyright: © 2001 Diwan Software Ltd. All rights reserved. Programmed by Anmar Sabeeh & Abu Hassan. + Trademark: Diwan Thuluth + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sinhala MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sinhala MN.ttc + Typefaces: + SinhalaMN-Bold: + Full Name: Sinhala MN Bold + Family: Sinhala MN + Style: Жирный + Version: 14.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Sinhala MN Bold; 14.0d1e1; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SinhalaMN: + Full Name: Sinhala MN + Family: Sinhala MN + Style: Обычный + Version: 14.0d1e1 + Vendor: Muthu Nedumaran + Unique Name: Sinhala MN; 14.0d1e1; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSerifCaption.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSerifCaption.ttc + Typefaces: + PTSerif-Caption: + Full Name: PT Serif Caption + Family: PT Serif Caption + Style: Обычный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Caption; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-CaptionItalic: + Full Name: PT Serif Caption Italic + Family: PT Serif Caption + Style: Курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Caption Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LingWaiSC-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e2c331b942cb338404a160a97a7cd6e8a31428e8.asset/AssetData/LingWaiSC-Medium.otf + Typefaces: + MLingWaiMedium-SC: + Full Name: LingWai SC Medium + Family: LingWai SC + Style: Средний + Version: 13.0d1e3 + Unique Name: LingWai SC Medium; 13.0d1e3; 2017-06-29 + Copyright: (C) Copyright 1991-2012 Monotype Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Semibold.otf + Typefaces: + SFProText-Semibold: + Full Name: SF Pro Text Semibold + Family: SF Pro Text + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni Ornaments.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni Ornaments.ttf + Typefaces: + BodoniOrnamentsITCTT: + Full Name: Bodoni Ornaments + Family: Bodoni Ornaments + Style: Обычный + Version: 13.0d2e1 + Unique Name: Bodoni Ornaments; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1995-1997 International Typeface Corporation All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooThambiTamil.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bedcbd3525748738e31b0b1e6ec9faa8c24dd127.asset/AssetData/BalooThambiTamil.ttc + Typefaces: + BalooThambi2-Regular: + Full Name: Baloo Thambi 2 Regular + Family: Baloo Thambi 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-Medium: + Full Name: Baloo Thambi 2 Medium + Family: Baloo Thambi 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-Bold: + Full Name: Baloo Thambi 2 Bold + Family: Baloo Thambi 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-SemiBold: + Full Name: Baloo Thambi 2 SemiBold + Family: Baloo Thambi 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooThambi2-ExtraBold: + Full Name: Baloo Thambi 2 ExtraBold + Family: Baloo Thambi 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Thambi 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Aadarsh Rajan and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleLiGothic-Medium.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/de97612eef4e3cf8ee8e5c0ebd6fd879bbecd23a.asset/AssetData/AppleLiGothic-Medium.ttf + Typefaces: + LiGothicMed: + Full Name: Apple LiGothic Medium + Family: Apple LiGothic + Style: Средний + Version: 13.0d2e6 + Unique Name: Apple LiGothic Medium; 13.0d2e6; 2017-06-06 + Copyright: Apple Computer, Inc. 1992-1998 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Color Emoji.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Color Emoji.ttc + Typefaces: + AppleColorEmoji: + Full Name: Apple Color Emoji + Family: Apple Color Emoji + Style: Обычный + Version: 20.4d5e1 + Unique Name: Apple Color Emoji; 20.4d5e1; 2025-02-26 + Copyright: © 2011-2025 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AppleColorEmojiUI: + Full Name: .Apple Color Emoji UI + Family: .Apple Color Emoji UI + Style: Обычный + Version: 20.4d5e1 + Unique Name: .Apple Color Emoji UI; 20.4d5e1; 2025-02-26 + Copyright: © 2011-2025 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuppySC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/96af7ec9e88d5dae450d3162213f92a7b1129430.asset/AssetData/YuppySC-Regular.otf + Typefaces: + YuppySC-Regular: + Full Name: Yuppy SC Regular + Family: Yuppy SC + Style: Обычный + Version: 13.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Yuppy SC Regular; 13.0d1e1; 2017-06-09 + Copyright: © 2003, 2005, 2009 Monotype Imaging Hong Kong Ltd. and Monotype Imaging Inc. All rights reserved. + Trademark: Yuppy is a trademark of Monotype Imaging Inc. and may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Medium.otf + Typefaces: + SFCompactRounded-Medium: + Full Name: SF Compact Rounded Medium + Family: SF Compact Rounded + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hiragino_Sans_TC.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6399f76cec1305304074ba7f587e5763133bb541.asset/AssetData/Hiragino_Sans_TC.ttc + Typefaces: + HiraginoSansTC-W3: + Full Name: Hiragino Sans TC W3 + Family: Hiragino Sans TC + Style: W3 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans TC W3; 20.0d1e1; 2024-04-02 + Designer: JIYUKOBO Ltd. + Copyright: ver3.12, Copyright © 2007-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HiraginoSansTC-W6: + Full Name: Hiragino Sans TC W6 + Family: Hiragino Sans TC + Style: W6 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans TC W6; 20.0d1e1; 2024-04-02 + Designer: JIYUKOBO Ltd. + Copyright: ver3.12, Copyright © 2007-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Regular.otf + Typefaces: + SFCompactDisplay-Regular: + Full Name: SF Compact Display Regular + Family: SF Compact Display + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Black.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Black.otf + Typefaces: + SFCompactText-Black: + Full Name: SF Compact Text Black + Family: SF Compact Text + Style: Черный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Black; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Osaka.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a3f9a9e35bdf3babe03b2fd162051306fad439d6.asset/AssetData/Osaka.ttf + Typefaces: + Osaka: + Full Name: Osaka + Family: Osaka + Style: Обычный + Version: 16.0d1e2 + Unique Name: Osaka; 16.0d1e2; 2020-04-21 + Copyright: ver J-6.1d3e1, © 1990-2008 Apple Inc. + Trademark: HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-UltralightItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-UltralightItalic.otf + Typefaces: + SFProDisplay-UltralightItalic: + Full Name: SF Pro Display Ultralight Italic + Family: SF Pro Display + Style: Ультралегкий курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Ultralight Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Mali.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9d609221be9203a6d0e55f5117ff76246f4200a7.asset/AssetData/Mali.ttc + Typefaces: + Mali-Italic: + Full Name: Mali Italic + Family: Mali + Style: Курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Italic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-MediumItalic: + Full Name: Mali Medium Italic + Family: Mali + Style: Средний курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-MediumItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-SemiBoldItalic: + Full Name: Mali SemiBold Italic + Family: Mali + Style: Полужирный курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-SemiBoldItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-SemiBold: + Full Name: Mali SemiBold + Family: Mali + Style: Полужирный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-SemiBold + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Regular: + Full Name: Mali Regular + Family: Mali + Style: Обычный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Regular + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Medium: + Full Name: Mali Medium + Family: Mali + Style: Средний + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Medium + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-BoldItalic: + Full Name: Mali Bold Italic + Family: Mali + Style: Жирный курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-BoldItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Bold: + Full Name: Mali Bold + Family: Mali + Style: Жирный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Bold + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-ExtraLight: + Full Name: Mali ExtraLight + Family: Mali + Style: Сверхлегкий + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-ExtraLight + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-Light: + Full Name: Mali Light + Family: Mali + Style: Легкий + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-Light + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-ExtraLightItalic: + Full Name: Mali ExtraLight Italic + Family: Mali + Style: Сверхлегкий курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-ExtraLightItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Mali-LightItalic: + Full Name: Mali Light Italic + Family: Mali + Style: Легкий курсивный + Version: Version 1.010 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.010;CDK ;Mali-LightItalic + Designer: Kitiyaporn Chalermlarp | Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Mali Project Authors (https://github.com/cadsondemak/Mali) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Savoye LET.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Savoye LET.ttc + Typefaces: + SavoyeLetPlain: + Full Name: Savoye LET Plain:1.0 + Family: Savoye LET + Style: Простой + Version: 13.0d2e4 + Unique Name: Savoye LET Plain:1.0; 13.0d2e4; 2017-06-30 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SavoyeLetPlainCC: + Full Name: Savoye LET Plain CC.:1.0 + Family: .Savoye LET CC. + Style: Простой + Version: 13.0d2e4 + Unique Name: Savoye LET Plain CC.:1.0; 13.0d2e4; 2017-06-30 + Copyright: Copyright © 1990 Esselte Letraset, Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gurmukhi Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gurmukhi Sangam MN.ttc + Typefaces: + GurmukhiSangamMN-Bold: + Full Name: Gurmukhi Sangam MN Bold + Family: Gurmukhi Sangam MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi Sangam MN Bold; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi Sangam MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GurmukhiSangamMN: + Full Name: Gurmukhi Sangam MN + Family: Gurmukhi Sangam MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Gurmukhi Sangam MN; 20.0d1e3; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Gurmukhi Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2011 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Krub.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/229d50d9c2cfb69a5a71be23225ae80f26257cc2.asset/AssetData/Krub.ttc + Typefaces: + Krub-Italic: + Full Name: Krub Italic + Family: Krub + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Italic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-LightItalic: + Full Name: Krub Light Italic + Family: Krub + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-LightItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-SemiBoldItalic: + Full Name: Krub SemiBold Italic + Family: Krub + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-SemiBoldItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Bold: + Full Name: Krub Bold + Family: Krub + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Bold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-BoldItalic: + Full Name: Krub Bold Italic + Family: Krub + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-BoldItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-SemiBold: + Full Name: Krub SemiBold + Family: Krub + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-SemiBold + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Regular: + Full Name: Krub Regular + Family: Krub + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Regular + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-ExtraLightItalic: + Full Name: Krub ExtraLight Italic + Family: Krub + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-ExtraLightItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-ExtraLight: + Full Name: Krub ExtraLight + Family: Krub + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-ExtraLight + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Medium: + Full Name: Krub Medium + Family: Krub + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Medium + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-Light: + Full Name: Krub Light + Family: Krub + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-Light + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Krub-MediumItalic: + Full Name: Krub Medium Italic + Family: Krub + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;Krub-MediumItalic + Designer: Ekaluck Peanpanawate + Copyright: Copyright 2018 The Krub Project Authors (https://github.com/cadsondemak/Krub) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Light.otf + Typefaces: + SFCompactRounded-Light: + Full Name: SF Compact Rounded Light + Family: SF Compact Rounded + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W7.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W7.ttc + Typefaces: + HiraginoSans-W7: + Full Name: Hiragino Sans W7 + Family: Hiragino Sans + Style: W7 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W7; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W7: + Full Name: .Hiragino Kaku Gothic Interface W7 + Family: .Hiragino Kaku Gothic Interface + Style: W7 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W7; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.00, Copyright (c) 1993-2007 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial.ttf + Typefaces: + ArialMT: + Full Name: Arial + Family: Arial + Style: Обычный + Version: Version 5.01.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Regular:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Rounded-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Rounded-Semibold.otf + Typefaces: + SFCompactRounded-Semibold: + Full Name: SF Compact Rounded Semibold + Family: SF Compact Rounded + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Rounded Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Devanagari Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Devanagari Sangam MN.ttc + Typefaces: + DevanagariSangamMN-Bold: + Full Name: Devanagari Sangam MN Bold + Family: Devanagari Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Devanagari Sangam MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Devanagari Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DevanagariSangamMN: + Full Name: Devanagari Sangam MN + Family: Devanagari Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Devanagari Sangam MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Devanagari Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baloo-Devanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/412e5de315cf6611597b15c5687e881623084628.asset/AssetData/Baloo-Devanagari.ttc + Typefaces: + Baloo2-Regular: + Full Name: Baloo 2 Regular + Family: Baloo 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-Medium: + Full Name: Baloo 2 Medium + Family: Baloo 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-SemiBold: + Full Name: Baloo 2 SemiBold + Family: Baloo 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-Bold: + Full Name: Baloo 2 Bold + Family: Baloo 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Baloo2-ExtraBold: + Full Name: Baloo 2 ExtraBold + Family: Baloo 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Sarang Kulkarni and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Bold.otf + Typefaces: + SFCompactText-Bold: + Full Name: SF Compact Text Bold + Family: SF Compact Text + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HeadlineA.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/de4b2bad515a67ab2d11e39fd896b1e189252a43.asset/AssetData/HeadlineA.ttf + Typefaces: + JCHEadA: + Full Name: HeadLineA Regular + Family: HeadLineA + Style: Обычный + Version: 13.0d3e1 + Unique Name: HeadLineA Regular; 13.0d3e1; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: HeadLineA is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TamilSangam-MN-MA.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/088556b12f81edf3f4279c7e32dfb5a9895d2aa9.asset/AssetData/TamilSangam-MN-MA.ttc + Typefaces: + GranthaSangamMN-Black: + Full Name: Grantha Sangam MN Black + Family: Grantha Sangam MN + Style: Черный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Black; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Medium: + Full Name: Tamil Sangam MN Medium + Family: Tamil Sangam MN + Style: Средний + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Medium; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Demibold: + Full Name: Tamil Sangam MN Demibold + Family: Tamil Sangam MN + Style: Полужирный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Demibold; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-DemiBold: + Full Name: Grantha Sangam MN DemiBold + Family: Grantha Sangam MN + Style: Полужирный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN DemiBold; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Black: + Full Name: Tamil Sangam MN Black + Family: Tamil Sangam MN + Style: Черный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Black; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Light: + Full Name: Tamil Sangam MN Light + Family: Tamil Sangam MN + Style: Легкий + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Light; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Medium: + Full Name: Grantha Sangam MN Medium + Family: Grantha Sangam MN + Style: Средний + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Medium; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Light: + Full Name: Grantha Sangam MN Light + Family: Grantha Sangam MN + Style: Легкий + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Light; 20.0d1e5; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Bold.ttf + Typefaces: + ArialNarrow-Bold: + Full Name: Arial Narrow Полужирный + Family: Arial Narrow + Style: Полужирный + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Bold : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS Bold Italic.ttf + Typefaces: + Trebuchet-BoldItalic: + Full Name: Trebuchet MS Полужирный Курсив + Family: Trebuchet MS + Style: Полужирный Курсив + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet Bold Italic + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaGurmukhi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a315fce407dcd8102062f824a2b039d34361a140.asset/AssetData/SamaGurmukhi.ttc + Typefaces: + SamaGurmukhi-Book: + Full Name: Sama Gurmukhi Book + Family: Sama Gurmukhi + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Book; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Bold: + Full Name: Sama Gurmukhi Bold + Family: Sama Gurmukhi + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Bold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-ExtraBold: + Full Name: Sama Gurmukhi ExtraBold + Family: Sama Gurmukhi + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Medium: + Full Name: Sama Gurmukhi Medium + Family: Sama Gurmukhi + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Medium; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-Regular: + Full Name: Sama Gurmukhi Regular + Family: Sama Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi Regular; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGurmukhi-SemiBold: + Full Name: Sama Gurmukhi SemiBold + Family: Sama Gurmukhi + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gurmukhi SemiBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaMahee.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/MuktaMahee.ttc + Typefaces: + MuktaMahee-Medium: + Full Name: MuktaMahee Medium + Family: Mukta Mahee + Style: Средний + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Medium; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-SemiBold: + Full Name: MuktaMahee SemiBold + Family: Mukta Mahee + Style: Полужирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee SemiBold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-ExtraBold: + Full Name: MuktaMahee ExtraBold + Family: Mukta Mahee + Style: Сверхжирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee ExtraBold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Regular: + Full Name: MuktaMahee Regular + Family: Mukta Mahee + Style: Обычный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Regular; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Bold: + Full Name: MuktaMahee Bold + Family: Mukta Mahee + Style: Жирный + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Bold; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-Light: + Full Name: MuktaMahee Light + Family: Mukta Mahee + Style: Легкий + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee Light; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaMahee-ExtraLight: + Full Name: MuktaMahee ExtraLight + Family: Mukta Mahee + Style: Сверхлегкий + Version: 20.2d1e1 + Vendor: Ek Type + Unique Name: MuktaMahee ExtraLight; 20.2d1e1; 2024-10-24 + Designer: Shuchita Grover, Noopur Datye, Girish Dalvi, Yashodeep Gholap + Copyright: Copyright (c) 2017, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ADTNumeric.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ADTNumeric.ttc + Typefaces: + .SFSoftNumeric-Regular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-RegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Обычный G4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Medium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Средний + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-MediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: MediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Light: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Легкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-LightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: LightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Thin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Тонкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Ultralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Ультралегкий + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Semibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Полужирный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Bold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-BoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Жирный G4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Heavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Тяжелый + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-HeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: HeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-Black: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: Черный + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-SemiCondensedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: SemiCondensedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraExpandedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraExpandedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegular: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegular + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedRegularG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedRegularG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMedium: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMedium + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedMediumG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedMediumG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedLightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedLightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThin: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThin + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedThinG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedThinG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralight: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralight + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedUltralightG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedUltralightG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemibold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemibold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedSemiboldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedSemiboldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBold: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBold + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBoldG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBoldG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavy: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavy + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG1: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG1 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG2: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG2 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG3: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG3 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedHeavyG4: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedHeavyG4 + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CondensedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CondensedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-CompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: CompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-ExtraCompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: ExtraCompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFSoftNumeric-UltraCompressedBlack: + Full Name: .SF Soft Numeric + Family: .SF Soft Numeric + Style: UltraCompressedBlack + Version: Version 20.4d1e1 + Vendor: Apple Inc. + Unique Name: .SF Soft Numeric; 20.4d1e1; 2025-02-04 + Designer: Apple Inc. + Copyright: © 2015-2022 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DIN Condensed Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DIN Condensed Bold.ttf + Typefaces: + DINCondensed-Bold: + Full Name: DIN Condensed Bold + Family: DIN Condensed + Style: Жирный + Version: 14.0d1e1 + Unique Name: DIN Condensed Bold; 14.0d1e1; 2018-05-22 + Designer: Linotype Staff + Copyright: Copyright © 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved. + Trademark: DINSchrift + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ChakraPetch.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/54476f0fabbd6ca1ab2a0c4d19219232acfe366c.asset/AssetData/ChakraPetch.ttc + Typefaces: + ChakraPetch-Italic: + Full Name: Chakra Petch Italic + Family: Chakra Petch + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-BoldItalic: + Full Name: Chakra Petch Bold Italic + Family: Chakra Petch + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Light: + Full Name: Chakra Petch Light + Family: Chakra Petch + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Regular: + Full Name: Chakra Petch Regular + Family: Chakra Petch + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Bold: + Full Name: Chakra Petch Bold + Family: Chakra Petch + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-ExtraLightItalic: + Full Name: Chakra Petch ExtraLight Italic + Family: Chakra Petch + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-MediumItalic: + Full Name: Chakra Petch Medium Italic + Family: Chakra Petch + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-Medium: + Full Name: Chakra Petch Medium + Family: Chakra Petch + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-SemiBold: + Full Name: Chakra Petch SemiBold + Family: Chakra Petch + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-SemiBoldItalic: + Full Name: Chakra Petch SemiBold Italic + Family: Chakra Petch + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-ExtraLight: + Full Name: Chakra Petch ExtraLight + Family: Chakra Petch + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ChakraPetch-LightItalic: + Full Name: Chakra Petch Light Italic + Family: Chakra Petch + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;ChakraPetch-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Chakra Petch Project Authors (https://github.com/m4rc1e/Chakra-Petch.git) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sinhala Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sinhala Sangam MN.ttc + Typefaces: + SinhalaSangamMN: + Full Name: Sinhala Sangam MN + Family: Sinhala Sangam MN + Style: Обычный + Version: 14.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Sinhala Sangam MN; 14.0d1e2; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SinhalaSangamMN-Bold: + Full Name: Sinhala Sangam MN Bold + Family: Sinhala Sangam MN + Style: Жирный + Version: 14.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Sinhala Sangam MN Bold; 14.0d1e2; 2018-02-25 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Sinhala Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SignPainter.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SignPainter.ttc + Typefaces: + SignPainter-HouseScript: + Full Name: SignPainter-HouseScript + Family: SignPainter + Style: HouseScript + Version: 14.0d1e1 + Vendor: Sign Painter House Script - House Industries/Brand Design Co. Inc + Unique Name: SignPainter-HouseScript; 14.0d1e1; 2018-01-16 + Designer: House Industries + Copyright: (C)1999 House Industries/Brand Design Co., Inc. + Trademark: SignPainter-HouseScript is a trademark of House Industries/Brand Design Co., Inc. + Description: Part of the Sign Painter Font Kit from House Industries + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SignPainter-HouseScriptSemibold: + Full Name: SignPainter-HouseScript Semibold + Family: SignPainter + Style: HouseScript Semibold + Version: 14.0d1e1 + Vendor: Sign Painter House Script - House Industries/Brand Design Co. Inc + Unique Name: SignPainter-HouseScript Semibold; 14.0d1e1; 2018-01-16 + Designer: House Industries + Copyright: (C)1999 House Industries/Brand Design Co., Inc. + Trademark: SignPainter-HouseScript is a trademark of House Industries/Brand Design Co., Inc. + Description: Part of the Sign Painter Font Kit from House Industries + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Light.otf + Typefaces: + SFCompactText-Light: + Full Name: SF Compact Text Light + Family: SF Compact Text + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Heavy.otf + Typefaces: + SFProText-Heavy: + Full Name: SF Pro Text Heavy + Family: SF Pro Text + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFArabicRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFArabicRounded.ttf + Typefaces: + .SFArabicRounded-Regular: + Full Name: .SF Arabic Rounded Обычный + Family: .SF Arabic Rounded + Style: Обычный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Medium: + Full Name: .SF Arabic Rounded Средний + Family: .SF Arabic Rounded + Style: Средний + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Light: + Full Name: .SF Arabic Rounded Легкий + Family: .SF Arabic Rounded + Style: Легкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Thin: + Full Name: .SF Arabic Rounded Тонкий + Family: .SF Arabic Rounded + Style: Тонкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Ultralight: + Full Name: .SF Arabic Rounded Ультралегкий + Family: .SF Arabic Rounded + Style: Ультралегкий + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Semibold: + Full Name: .SF Arabic Rounded Полужирный + Family: .SF Arabic Rounded + Style: Полужирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Bold: + Full Name: .SF Arabic Rounded Жирный + Family: .SF Arabic Rounded + Style: Жирный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Heavy: + Full Name: .SF Arabic Rounded Тяжелый + Family: .SF Arabic Rounded + Style: Тяжелый + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFArabicRounded-Black: + Full Name: .SF Arabic Rounded Черный + Family: .SF Arabic Rounded + Style: Черный + Version: 20.0d1e1 + Vendor: Apple Inc. + Unique Name: .SF Arabic Rounded; 20.0d1e1; 2024-03-12 + Designer: Apple Inc. + Copyright: Copyright (c) 2024 Apple Inc. All rights reserved. + Trademark: Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroBangla.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a560b5e8f63af91685b27c087e9bb7df6a4a3902.asset/AssetData/TiroBangla.ttc + Typefaces: + TiroBangla-Italic: + Full Name: Tiro Bangla Italic + Family: Tiro Bangla + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Bangla Italic; 20.0d1e2; 2024-07-05 + Designer: Bangla: John Hudson & Fiona Ross, assisted by Neelakash Kshetrimayum. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Bangla is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroBangla: + Full Name: Tiro Bangla + Family: Tiro Bangla + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Bangla; 20.0d1e2; 2024-07-05 + Designer: Bangla: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Bangla is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Comic Sans MS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Comic Sans MS.ttf + Typefaces: + ComicSansMS: + Full Name: Comic Sans MS + Family: Comic Sans MS + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Comic Sans + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All rights reserved. + Description: Designed by Microsoft's Vincent Connare, this is a face based on the lettering from comic magazines. This casual but legible face has proved very popular with a wide variety of people. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W0.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W0.ttc + Typefaces: + HiraginoSans-W0: + Full Name: Hiragino Sans W0 + Family: Hiragino Sans + Style: W0 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W0; 20.0d1e1; 2024-01-26 + Designer: Yokokaku, Kunihiko Okano and JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 2014-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W0: + Full Name: .Hiragino Kaku Gothic Interface W0 + Family: .Hiragino Kaku Gothic Interface + Style: W0 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W0; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 2014 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SimSong.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/857d6c90171c328a4892c1492291d34e401d7f25.asset/AssetData/SimSong.ttc + Typefaces: + SimSong-Regular: + Full Name: SimSong Regular + Family: SimSong + Style: Обычный + Version: 16.0d3e1 + Unique Name: 簡宋 標準體; 16.0d3e1; 2020-06-04 + Copyright: Copyright © 2019 DynaComware Inc. All rights reserved. + Trademark: SimSong is a trademark of DynaComware Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SimSong-Bold: + Full Name: SimSong Bold + Family: SimSong + Style: Жирный + Version: 16.0d3e1 + Unique Name: 簡宋 粗體; 16.0d3e1; 2020-06-04 + Copyright: Copyright © 2019 DynaComware Inc. All rights reserved. + Trademark: SimSong is a trademark of DynaComware Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-SemiboldItalic.otf + Typefaces: + SFProText-SemiboldItalic: + Full Name: SF Pro Text Semibold Italic + Family: SF Pro Text + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Trebuchet MS.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Trebuchet MS.ttf + Typefaces: + TrebuchetMS: + Full Name: Trebuchet MS + Family: Trebuchet MS + Style: Обычный + Version: Version 5.00x + Vendor: Microsoft Corporation + Unique Name: Microsoft Trebuchet + Designer: Vincent Connare + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Description: Trebuchet, designed by Vincent Connare in 1996, is a humanist sans serif designed for easy screen readability. Trebuchet takes its inspiration from the sans serifs of the 1930s which had large x heights and round features intended to promote readability on signs. The typeface name is credited to a puzzle heard at Microsoft, where the question was asked, "could you build a Trebuchet (a form of medieval catapult) to launch a person from the main campus to the consumer campus, and how?" The Trebuchet fonts are intended to be the vehicle that fires your messages across the Internet. "Launch your message with a Trebuchet page". + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bodoni 72.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bodoni 72.ttc + Typefaces: + BodoniSvtyTwoITCTT-Book: + Full Name: Bodoni 72 Book + Family: Bodoni 72 + Style: Книжный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Book; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoITCTT-Bold: + Full Name: Bodoni 72 Bold + Family: Bodoni 72 + Style: Жирный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Bold; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BodoniSvtyTwoITCTT-BookIta: + Full Name: Bodoni 72 Book Italic + Family: Bodoni 72 + Style: Книжный курсивный + Version: 13.0d2e1 + Unique Name: Bodoni 72 Book Italic; 13.0d2e1; 2017-07-12 + Copyright: Copyright © 1997 International Typeface Corporation. All rights reserved. + Trademark: ITC Bodoni is a trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LavaTelugu.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/11640094b5edf37d3e1ba1ef7794a5605a0491aa.asset/AssetData/LavaTelugu.ttc + Typefaces: + LavaTelugu-Medium: + Full Name: Lava Telugu Medium + Family: Lava Telugu + Style: Средний + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Medium; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Bold: + Full Name: Lava Telugu Bold + Family: Lava Telugu + Style: Жирный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Bold; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Regular: + Full Name: Lava Telugu Regular + Family: Lava Telugu + Style: Обычный + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Regular; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LavaTelugu-Heavy: + Full Name: Lava Telugu Heavy + Family: Lava Telugu + Style: Тяжелый + Version: 20.0d1e2 + Vendor: Typotheque.com + Unique Name: Lava Telugu Heavy; 20.0d1e2; 2024-07-05 + Designer: Ramakrishna Saiteja / Peter Bilak + Copyright: © 2012 - 2019 Typotheque.com All rights reserved + Trademark: Lava is a registered trademark of Typotheque.com in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Medium.otf + Typefaces: + SFCompactDisplay-Medium: + Full Name: SF Compact Display Medium + Family: SF Compact Display + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kailasa.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kailasa.ttc + Typefaces: + Kailasa-Bold: + Full Name: Kailasa Bold + Family: Kailasa + Style: Жирный + Version: 16.0d1e1 + Vendor: Steve Hartwell & Shojiro Nomura + Unique Name: Kailasa Bold; 16.0d1e1; 2020-07-06 + Designer: Yoichi Fukuda, Steve Hartwell & Shojiro Nomura + Copyright: Copyright © Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Kailasa: + Full Name: Kailasa Regular + Family: Kailasa + Style: Обычный + Version: 16.0d1e1 + Vendor: Steve Hartwell & Shojiro Nomura + Unique Name: Kailasa Regular; 16.0d1e1; 2020-07-06 + Designer: Yoichi Fukuda, Steve Hartwell & Shojiro Nomura + Copyright: Copyright © Otani University Shin Buddhist Research Institute, 2006. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Monaco.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Monaco.ttf + Typefaces: + Monaco: + Full Name: Monaco + Family: Monaco + Style: Обычный + Version: 17.0d1e5 + Unique Name: Monaco; 17.0d1e5; 2020-09-21 + Copyright: © 1990-2008 Apple Inc. © 1990-97 Type Solutions Inc. © 1990-97 The Font Bureau Inc. TrueType outline design of Monaco typeface created by Kris Holmes and Charles Bigelow. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZitherIndiaNarrow.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZitherIndiaNarrow.otf + Typefaces: + .ZitherIndiaNarrow-Regular: + Full Name: .Zither India Narrow Обычный + Family: .Zither India Narrow + Style: Обычный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Medium: + Full Name: .Zither India Narrow Средний + Family: .Zither India Narrow + Style: Средний + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Light: + Full Name: .Zither India Narrow Легкий + Family: .Zither India Narrow + Style: Легкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Thin: + Full Name: .Zither India Narrow Тонкий + Family: .Zither India Narrow + Style: Тонкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Ultralight: + Full Name: .Zither India Narrow Ультралегкий + Family: .Zither India Narrow + Style: Ультралегкий + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Semibold: + Full Name: .Zither India Narrow Полужирный + Family: .Zither India Narrow + Style: Полужирный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Bold: + Full Name: .Zither India Narrow Жирный + Family: .Zither India Narrow + Style: Жирный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Heavy: + Full Name: .Zither India Narrow Тяжелый + Family: .Zither India Narrow + Style: Тяжелый + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndiaNarrow-Black: + Full Name: .Zither India Narrow Черный + Family: .Zither India Narrow + Style: Черный + Version: 20.4d7e1 + Vendor: Typotheque + Unique Name: .Zither India Narrow Regular; 20.4d7e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Tamil: ஆதர்ஷ் ராஜன் (Aadarsh Rajan), Malayalam: मैथिली शिंगरे (Maithili Shingre) + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-RegularItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-RegularItalic.otf + Typefaces: + SFCompactText-Italic: + Full Name: SF Compact Text Italic + Family: SF Compact Text + Style: Курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OsakaMono.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0818d874bf1d0e24a1fe62e79f407717792c5ee1.asset/AssetData/OsakaMono.ttf + Typefaces: + Osaka-Mono: + Full Name: Osaka-Mono + Family: Osaka + Style: Regular-Mono + Version: 16.0d1e2 + Unique Name: Osaka-Mono; 16.0d1e2; 2020-04-21 + Copyright: © 1990-2008 Apple Inc. + Trademark: HeiseiKakuGothic is a typeface developed under the license agreement with JSA Font Development and Promotion Center + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baghdad.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Baghdad.ttc + Typefaces: + Baghdad: + Full Name: Baghdad Regular + Family: Baghdad + Style: Обычный + Version: 13.0d1e5 + Unique Name: Baghdad Regular; 13.0d1e5; 2017-06-13 + Copyright: Baghdad designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .BaghdadPUA: + Full Name: .Baghdad PUA + Family: .Baghdad PUA + Style: Обычный + Version: 13.0d1e5 + Unique Name: .Baghdad PUA; 13.0d1e5; 2017-06-13 + Copyright: Baghdad designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Charm.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f40f0181bac46ce79e53d040ad5075b8221f78e1.asset/AssetData/Charm.ttc + Typefaces: + Charm-Bold: + Full Name: Charm Bold + Family: Charm + Style: Жирный + Version: Version 1.002 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.002;CDK ;Charm-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Charm Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Charm-Regular: + Full Name: Charm Regular + Family: Charm + Style: Обычный + Version: Version 1.002 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.002;CDK ;Charm-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 The Charm Project Authors (https://github.com/cadsondemak/Sarabun) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Bold.otf + Typefaces: + SFProText-Bold: + Full Name: SF Pro Text Bold + Family: SF Pro Text + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PTSerif.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PTSerif.ttc + Typefaces: + PTSerif-Italic: + Full Name: PT Serif Italic + Family: PT Serif + Style: Курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-Bold: + Full Name: PT Serif Bold + Family: PT Serif + Style: Жирный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Bold; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-BoldItalic: + Full Name: PT Serif Bold Italic + Family: PT Serif + Style: Жирный курсивный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif Bold Italic; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PTSerif-Regular: + Full Name: PT Serif + Family: PT Serif + Style: Обычный + Version: 13.0d2e1 + Vendor: ParaType Ltd + Unique Name: PT Serif; 13.0d2e1; 2017-06-29 + Designer: A.Korolkova, O.Umpeleva, V.Yefimov + Copyright: Copyright © 2010 ParaType Ltd. All rights reserved. + Trademark: PT Serif is a trademark of the ParaType Ltd. + Description: PT Serif is a universal type family designed for use together with PT Sans released earlier. PT Serif coordinates with PT Sans on metrics, proportions, weights and design. It consists of six styles: regular and bold weights with corresponding italics form a standard computer font family; two caption styles (regular and italic) are for texts of small point sizes. The letterforms are distinguished by large x-height, modest stroke contrast, robust wedge-like serifs, and triangular terminals. Due to these features the face can be qualified as matched to modern trends of type design and of enhanced legibility. Mentioned characteristics beside conventional use in business applications and printed stuff make the fonts quite useable for advertising and display typography. +Each font next to standard Latin and Cyrillic character sets contains alphabet glyphs of title languages of the national republics of Russian Federation and support the most of the languages of neighboring countries. The fonts were developed and released by ParaType in 2010 with financial support from Federal Agency of Print and Mass Communications of Russian Federation. Design -- Alexandra Korolkova with assistance of Olga Umpeleva and supervision of Vladimir Yefimov. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Raanana.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Raanana.ttc + Typefaces: + Raanana: + Full Name: Raanana + Family: Raanana + Style: Обычный + Version: 14.0d1e14 + Vendor: Apple Computer, Inc. + Unique Name: Raanana; 14.0d1e14; 2020-10-14 + Copyright: © Apple, Inc. 1991-1995 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + RaananaBold: + Full Name: Raanana Bold + Family: Raanana + Style: Жирный + Version: 14.0d1e14 + Vendor: Apple Computer, Inc. + Unique Name: Raanana Bold; 14.0d1e14; 2020-10-14 + Copyright: © Apple, Inc. 1992-1995 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaDevanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fbd4792c7c114cd4daf3bcb562324ca2cf4cb4f5.asset/AssetData/SamaDevanagari.ttc + Typefaces: + SamaDevanagari-Bold: + Full Name: Sama Devanagari Bold + Family: Sama Devanagari + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Bold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Medium: + Full Name: Sama Devanagari Medium + Family: Sama Devanagari + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Medium; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Regular: + Full Name: Sama Devanagari Regular + Family: Sama Devanagari + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Regular; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-ExtraBold: + Full Name: Sama Devanagari ExtraBold + Family: Sama Devanagari + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-SemiBold: + Full Name: Sama Devanagari SemiBold + Family: Sama Devanagari + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari SemiBold; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaDevanagari-Book: + Full Name: Sama Devanagari Book + Family: Sama Devanagari + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Devanagari Book; 20.0d1e2; 2024-07-05 + Designer: Noopur Datye and Divya Kowshik + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SamaGujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/67b92e6fd405724daed25cbdce52b35d4c413cd6.asset/AssetData/SamaGujarati.ttc + Typefaces: + SamaGujarati-Regular: + Full Name: Sama Gujarati Regular + Family: Sama Gujarati + Style: Обычный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Regular; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-SemiBold: + Full Name: Sama Gujarati SemiBold + Family: Sama Gujarati + Style: Полужирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati SemiBold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Book: + Full Name: Sama Gujarati Book + Family: Sama Gujarati + Style: Книжный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Book; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Bold: + Full Name: Sama Gujarati Bold + Family: Sama Gujarati + Style: Жирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Bold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-Medium: + Full Name: Sama Gujarati Medium + Family: Sama Gujarati + Style: Средний + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati Medium; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SamaGujarati-ExtraBold: + Full Name: Sama Gujarati ExtraBold + Family: Sama Gujarati + Style: Сверхжирный + Version: 20.0d1e2 + Vendor: Ek Type + Unique Name: Sama Gujarati ExtraBold; 20.0d1e2; 2024-07-05 + Designer: Mrunmayee Ghaisas and Noopur Datye + Copyright: Copyright (c) 2019, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AmericanTypewriter.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/AmericanTypewriter.ttc + Typefaces: + AmericanTypewriter-Condensed: + Full Name: American Typewriter Condensed + Family: American Typewriter + Style: Сжатый + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed; 16.0d2e4; 2020-07-06 + Copyright: Digitized Data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Light: + Full Name: American Typewriter Light + Family: American Typewriter + Style: Легкий + Version: 16.0d2e4 + Unique Name: American Typewriter Light; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-CondensedLight: + Full Name: American Typewriter Condensed Light + Family: American Typewriter + Style: Сжатый легкий + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed Light; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter: + Full Name: American Typewriter + Family: American Typewriter + Style: Обычный + Version: 16.0d2e4 + Unique Name: American Typewriter; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Semibold: + Full Name: American Typewriter Semibold + Family: American Typewriter + Style: Полужирный + Version: 16.0d2e4 + Unique Name: American Typewriter Semibold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-Bold: + Full Name: American Typewriter Bold + Family: American Typewriter + Style: Жирный + Version: 16.0d2e4 + Unique Name: American Typewriter Bold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + AmericanTypewriter-CondensedBold: + Full Name: American Typewriter Condensed Bold + Family: American Typewriter + Style: Сжатый жирный + Version: 16.0d2e4 + Unique Name: American Typewriter Condensed Bold; 16.0d2e4; 2020-07-06 + Copyright: Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is a registered trademark of International Typeface Corporation. + Trademark: ITC American Typewriter is a registered trademark of International Typeface Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Wingdings 2.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Wingdings 2.ttf + Typefaces: + Wingdings2: + Full Name: Wingdings 2 + Family: Wingdings 2 + Style: Обычный + Version: Version 1.55x + Unique Name: Wingdings 2 + Copyright: Wingdings 2 designed by Bigelow & Holmes Inc. for Microsoft Corporation. Copyright © 1992 Microsoft Corporation. Pat. Pend. All Rights Reserved. © 1990-1991 Type Solutions, Inc. All Rights Reserved. + Trademark: Wingdings is a trademark of Microsoft Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Medium.otf + Typefaces: + SFCompactText-Medium: + Full Name: SF Compact Text Medium + Family: SF Compact Text + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana.ttf + Typefaces: + Verdana: + Full Name: Verdana + Family: Verdana + Style: Обычный + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Regular:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroGurmukhi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/71af7d8a6612b05ff4da8daa889313789969c8c9.asset/AssetData/TiroGurmukhi.ttc + Typefaces: + TiroGurmukhi-Italic: + Full Name: Tiro Gurmukhi Italic + Family: Tiro Gurmukhi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Gurmukhi Italic; 20.0d1e2; 2024-07-05 + Designer: Gurmukhi: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Gurmukhi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroGurmukhi: + Full Name: Tiro Gurmukhi + Family: Tiro Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Gurmukhi; 20.0d1e2; 2024-07-05 + Designer: Gurmukhi: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Gurmukhi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + HelveLTMM: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/HelveLTMM + Typefaces: + HelveticaLTMM: + Full Name: .Helvetica LT MM + Family: .Helvetica LT MM + Style: Обычный + Version: 1,006 + Unique Name: .Helvetica LT MM + Copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted (c) 1988, 1990, 1991, 2002-2004 Linotype Library GmbH, www.linotype.com. All rights reserved. This software is the + Trademark: Helvetica is a trademark of Heidelberger Druckmaschinen AG which may be registered in certain jurisdictions, exclusively licensed through Linotype Library GmbH, a whplly owned subsidiary of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Bold.otf + Typefaces: + SFProRounded-Bold: + Full Name: SF Pro Rounded Bold + Family: SF Pro Rounded + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Times New Roman Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Times New Roman Bold.ttf + Typefaces: + TimesNewRomanPS-BoldMT: + Full Name: Times New Roman Полужирный + Family: Times New Roman + Style: Полужирный + Version: Version 5.01.4x + Vendor: The Monotype Corporation + Unique Name: Monotype:Times New Roman Bold:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Stanley Morison, Victor Lardent 1932 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Times New Roman is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SnellRoundhand.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/SnellRoundhand.ttc + Typefaces: + SnellRoundhand: + Full Name: Snell Roundhand + Family: Snell Roundhand + Style: Обычный + Version: 15.0d1e1 + Unique Name: Snell Roundhand; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a Trademark of Linotype AG and/or its subsidiaries + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SnellRoundhand-Black: + Full Name: Snell Roundhand Black + Family: Snell Roundhand + Style: Черный + Version: 15.0d1e1 + Unique Name: Snell Roundhand Black; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a trademark of Linotype AG and/or its subsidiaries. + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + SnellRoundhand-Bold: + Full Name: Snell Roundhand Bold + Family: Snell Roundhand + Style: Жирный + Version: 15.0d1e1 + Unique Name: Snell Roundhand Bold; 15.0d1e1; 2019-04-22 + Copyright: Copyright © 1981, 1990 Linotype AG + Trademark: Snell Roundhand is a trademark of Linotype AG and/or its subsidiaries. + Description: The digitally encoded machine readable outline data for producing the Typefaces licensed to you is copyrighted (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Krungthep.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Krungthep.ttf + Typefaces: + Krungthep: + Full Name: Krungthep + Family: Krungthep + Style: Обычный + Version: 14.0d1e1 + Unique Name: Krungthep; 14.0d1e1; 2017-11-02 + Copyright: © 1992-2003 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Al Tarikh.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Al Tarikh.ttc + Typefaces: + AlTarikh: + Full Name: Al Tarikh Regular + Family: Al Tarikh + Style: Обычный + Version: 13.0d2e1 + Unique Name: Al Tarikh Regular; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .AlTarikhPUA: + Full Name: .Al Tarikh PUA + Family: .Al Tarikh PUA + Style: Обычный + Version: 13.0d2e1 + Unique Name: .Al Tarikh PUA; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hoefler Text.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Hoefler Text.ttc + Typefaces: + HoeflerText-Italic: + Full Name: Hoefler Text Italic + Family: Hoefler Text + Style: Курсивный + Version: 14.0d1e2 + Vendor: Apple Inc. + Unique Name: Hoefler Text Italic; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-Black: + Full Name: Hoefler Text Black + Family: Hoefler Text + Style: Насыщенный жирный + Version: 14.0d1e2 + Unique Name: Hoefler Text Black; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-BlackItalic: + Full Name: Hoefler Text Black Italic + Family: Hoefler Text + Style: Жирный курсивный + Version: 14.0d1e2 + Unique Name: Hoefler Text Black Italic; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + HoeflerText-Regular: + Full Name: Hoefler Text + Family: Hoefler Text + Style: Обычный + Version: 14.0d1e2 + Unique Name: Hoefler Text; 14.0d1e2; 2018-01-19 + Copyright: © 1992-2007 Apple Inc. + Trademark: Hoefler Text is a trademark of Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhainaOdia.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/01be3235e91dfd6261c811482ac3853dfad0bb14.asset/AssetData/BalooBhainaOdia.ttc + Typefaces: + BalooBhaina2-Bold: + Full Name: Baloo Bhaina 2 Bold + Family: Baloo Bhaina 2 + Style: Жирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Bold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-SemiBold: + Full Name: Baloo Bhaina 2 SemiBold + Family: Baloo Bhaina 2 + Style: Полужирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 SemiBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-ExtraBold: + Full Name: Baloo Bhaina 2 ExtraBold + Family: Baloo Bhaina 2 + Style: Сверхжирный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 ExtraBold; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-Regular: + Full Name: Baloo Bhaina 2 Regular + Family: Baloo Bhaina 2 + Style: Обычный + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Regular; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooBhaina2-Medium: + Full Name: Baloo Bhaina 2 Medium + Family: Baloo Bhaina 2 + Style: Средний + Version: 20.0d1e3 (1.640) + Vendor: Ek Type + Unique Name: Baloo Bhaina 2 Medium; 20.0d1e3 (1.640); 2024-07-08 + Designer: Yesha Goshar, Manish Minz, Shuchita Grover and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + YuppyTC-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/e28431125242b9a298de3296370abdab4a7e8666.asset/AssetData/YuppyTC-Regular.otf + Typefaces: + YuppyTC-Regular: + Full Name: Yuppy TC Regular + Family: Yuppy TC + Style: Обычный + Version: 13.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Yuppy TC Regular; 13.0d1e1; 2017-06-09 + Copyright: © 1991-2008 China Type Design Ltd. Monotype Imaging Inc. All rights reserved. + Trademark: Yuppy is a trademark of Monotype Imaging Inc. and Trademark Office and may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Geneva.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Geneva.ttf + Typefaces: + Geneva: + Full Name: Geneva + Family: Geneva + Style: Обычный + Version: 17.0d2e1 + Unique Name: Geneva; 17.0d2e1; 2020-12-12 + Copyright: © 1990-2016 Apple Inc. © 1990-98 Type Solutions Inc. © 1990-98 The Font Bureau Inc. TrueType outline design of Geneva typeface created by Kris Holmes and Charles Bigelow. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LiHeiPro.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/3a9dbc8ddc8b85f43055a28fb5d551e905d43de2.asset/AssetData/LiHeiPro.ttf + Typefaces: + LiHeiPro: + Full Name: LiHei Pro + Family: LiHei Pro + Style: Средний + Version: 17.0d1e2 + Unique Name: LiHei Pro; 17.0d1e2; 2021-06-23 + Copyright: (c) Copyright DynaComware Corp. 2003 + Trademark: Trademark by DynaComware Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-BlackItalic.otf + Typefaces: + SFProDisplay-BlackItalic: + Full Name: SF Pro Display Black Italic + Family: SF Pro Display + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Medium.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Medium.otf + Typefaces: + SFProDisplay-Medium: + Full Name: SF Pro Display Medium + Family: SF Pro Display + Style: Средний + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Medium; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Silom.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Silom.ttf + Typefaces: + Silom: + Full Name: Silom + Family: Silom + Style: Обычный + Version: 14.0d1e1 + Unique Name: Silom; 14.0d1e1; 2017-11-02 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Light.otf + Typefaces: + SFCompactDisplay-Light: + Full Name: SF Compact Display Light + Family: SF Compact Display + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Libian.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/7278ac2566252649b05c5a2b07c7d45be59f47c5.asset/AssetData/Libian.ttc + Typefaces: + STLibianSC-Regular: + Full Name: Libian SC Regular + Family: Libian SC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Libian SC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STLibianTC-Regular: + Full Name: Libian TC Regular + Family: Libian TC + Style: Обычный + Version: 17.0d1e2 + Unique Name: Libian TC Regular; 17.0d1e2; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFHebrewRounded.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFHebrewRounded.ttf + Typefaces: + .SFHebrewRounded-Regular: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Обычный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Medium: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Средний + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Light: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Легкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Thin: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Тонкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Ultralight: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Ультралегкий + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Semibold: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Полужирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Bold: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Жирный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Heavy: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Тяжелый + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFHebrewRounded-Black: + Full Name: .SF Hebrew Rounded + Family: .SF Hebrew Rounded + Style: Черный + Version: 19.2d1e1 + Vendor: Apple Inc. + Unique Name: .SF Hebrew Rounded; 19.2d1e1; 2023-10-26 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Maku-Devanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/dd7563f21769eb637432ba6b3d5309200eb6773e.asset/AssetData/Maku-Devanagari.ttc + Typefaces: + Maku-Bold: + Full Name: Maku Bold + Family: Maku + Style: Жирный + Version: 20.0d1e2 + Vendor: Mota Italic + Unique Name: Maku Bold; 20.0d1e2; 2024-07-05 + Designer: Kimya Gandhi and Rob Keller + Copyright: Copyright © 2017, 2019 by Kimya Gandhi. All rights reserved. + Trademark: Maku is a trademark of Mota Italic. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Maku-Regular: + Full Name: Maku Regular + Family: Maku + Style: Обычный + Version: 20.0d1e2 + Vendor: Mota Italic + Unique Name: Maku Regular; 20.0d1e2; 2024-07-05 + Designer: Kimya Gandhi and Rob Keller + Copyright: Copyright © 2017, 2019 by Kimya Gandhi. All rights reserved. + Trademark: Maku is a trademark of Mota Italic. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-HeavyItalic.otf + Typefaces: + SFCompactText-HeavyItalic: + Full Name: SF Compact Text Heavy Italic + Family: SF Compact Text + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New.ttf + Typefaces: + CourierNewPSMT: + Full Name: Courier New + Family: Courier New + Style: Обычный + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Avenir.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Avenir.ttc + Typefaces: + Avenir-Heavy: + Full Name: Avenir Heavy + Family: Avenir + Style: Тяжелый + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Heavy; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-LightOblique: + Full Name: Avenir Light Oblique + Family: Avenir + Style: Легкий наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Light Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-BlackOblique: + Full Name: Avenir Black Oblique + Family: Avenir + Style: Черный наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Black Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Light: + Full Name: Avenir Light + Family: Avenir + Style: Легкий + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Light; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Book: + Full Name: Avenir Book + Family: Avenir + Style: Книжный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Book; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Oblique: + Full Name: Avenir Oblique + Family: Avenir + Style: Наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-MediumOblique: + Full Name: Avenir Medium Oblique + Family: Avenir + Style: Средний наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Medium Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-HeavyOblique: + Full Name: Avenir Heavy Oblique + Family: Avenir + Style: Тяжелый наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Heavy Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Black: + Full Name: Avenir Black + Family: Avenir + Style: Черный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Black; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-BookOblique: + Full Name: Avenir Book Oblique + Family: Avenir + Style: Книжный наклонный + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Book Oblique; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Roman: + Full Name: Avenir Roman + Family: Avenir + Style: Латинский + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Roman; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Linotype GmbH and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Avenir-Medium: + Full Name: Avenir Medium + Family: Avenir + Style: Средний + Version: 13.0d3e1 + Vendor: Linotype GmbH + Unique Name: Avenir Medium; 13.0d3e1; 2017-06-26 + Designer: Adrian Frutiger + Copyright: Copyright© 2007 Linotype GmbH, www.linotype.com. All rights reserved. + Trademark: Avenir is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be registered in certain jurisdictions. + Description: Adrian Frutiger designed Avenir in 1988, after years of having an interest in sans serif typefaces. In an interview with Linotype, he said he felt an obligation to design a linear sans in the tradition of Erbar and Futura, but to also make use of the experience and stylistic developments of the twentieth century. The word Avenir means 'future' in French and hints that the typeface owes some of its interpretation to Futura. But unlike Futura, Avenir is not purely geometric; it has vertical strokes that are thicker than the horizontals, an "o" that is not a perfect circle, and shortened ascenders. These nuances aid in legibility and give Avenir a harmonious and sensible appearance for both texts and headlines. In 2004 Adrian Frutiger and the type director of Linotype GmbH Akira Kobayashi reworked the Avenir and created the Avenir Next for the Platinum Collection. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Pinpoint 6 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Pinpoint 6 Dot.ttf + Typefaces: + AppleBraille-Pinpoint6Dot: + Full Name: Apple Braille Pinpoint 6 Dot + Family: Apple Braille + Style: Pinpoint 6 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Pinpoint 6 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Pinpoint 8 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Pinpoint 8 Dot.ttf + Typefaces: + AppleBraille-Pinpoint8Dot: + Full Name: Apple Braille Pinpoint 8 Dot + Family: Apple Braille + Style: Pinpoint 8 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Pinpoint 8 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCompressedTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/17c994707700838ad3c3202029b621fb85a81b0c.asset/AssetData/OctoberCompressedTamil.ttc + Typefaces: + OctoberCompressedTL-Regular: + Full Name: October Compressed Tamil Regular + Family: October Compressed Tamil + Style: Обычный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Regular; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-ExtraLight: + Full Name: October Compressed Tamil ExtraLight + Family: October Compressed Tamil + Style: Сверхлегкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil ExtraLight; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Hairline: + Full Name: October Compressed Tamil Hairline + Family: October Compressed Tamil + Style: С соединительными штрихами + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Hairline; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Thin: + Full Name: October Compressed Tamil Thin + Family: October Compressed Tamil + Style: Тонкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Thin; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Medium: + Full Name: October Compressed Tamil Medium + Family: October Compressed Tamil + Style: Средний + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Medium; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Bold: + Full Name: October Compressed Tamil Bold + Family: October Compressed Tamil + Style: Жирный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Bold; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Light: + Full Name: October Compressed Tamil Light + Family: October Compressed Tamil + Style: Легкий + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Light; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Black: + Full Name: October Compressed Tamil Black + Family: October Compressed Tamil + Style: Черный + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Black; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedTL-Heavy: + Full Name: October Compressed Tamil Heavy + Family: October Compressed Tamil + Style: Тяжелый + Version: 15.0d1e6 + Vendor: Typotheque + Unique Name: October Compressed Tamil Heavy; 15.0d1e6; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Lao Sangam MN.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Lao Sangam MN.ttf + Typefaces: + LaoSangamMN: + Full Name: Lao Sangam MN + Family: Lao Sangam MN + Style: Обычный + Version: 14.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Lao Sangam MN; 14.0d1e6; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Lao Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Italic.ttf + Typefaces: + Verdana-Italic: + Full Name: Verdana Курсив + Family: Verdana + Style: Курсив + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Italic:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Telugu Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Telugu Sangam MN.ttc + Typefaces: + TeluguSangamMN: + Full Name: Telugu Sangam MN + Family: Telugu Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Telugu Sangam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Telugu Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TeluguSangamMN-Bold: + Full Name: Telugu Sangam MN Bold + Family: Telugu Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Telugu Sangam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Trademark: Telugu Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W8.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W8.ttc + Typefaces: + HiraginoSans-W8: + Full Name: Hiragino Sans W8 + Family: Hiragino Sans + Style: W8 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W8; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W8: + Full Name: .Hiragino Kaku Gothic Interface W8 + Family: .Hiragino Kaku Gothic Interface + Style: W8 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W8; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Bangla Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Bangla Sangam MN.ttc + Typefaces: + BanglaSangamMN: + Full Name: Bangla Sangam MN + Family: Bangla Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla Sangam MN; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BanglaSangamMN-Bold: + Full Name: Bangla Sangam MN Bold + Family: Bangla Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Bangla Sangam MN Bold; 20.0d1e2; 2024-07-09 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Trademark: Bangla Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2003 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille.ttf + Typefaces: + AppleBraille: + Full Name: Apple Braille + Family: Apple Braille + Style: Обычный + Version: 13.0d2e27 + Unique Name: Apple Braille; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Bold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Bold.otf + Typefaces: + SFProDisplay-Bold: + Full Name: SF Pro Display Bold + Family: SF Pro Display + Style: Жирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Bold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Myanmar Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Myanmar Sangam MN.ttc + Typefaces: + MyanmarSangamMN: + Full Name: Myanmar Sangam MN + Family: Myanmar Sangam MN + Style: Обычный + Version: 14.0d1e8 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar Sangam MN; 14.0d1e8; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MyanmarSangamMN-Bold: + Full Name: Myanmar Sangam MN Bold + Family: Myanmar Sangam MN + Style: Жирный + Version: 14.0d1e8 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Myanmar Sangam MN Bold; 14.0d1e8; 2018-02-27 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Myanmar MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2010 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kyokasho.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5b843781be7f58151ada774942a0eaa9ec79bd57.asset/AssetData/Kyokasho.ttc + Typefaces: + YuKyo_Yoko-Bold: + Full Name: YuKyokasho Yoko Bold + Family: YuKyokasho Yoko + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Yoko Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo-Medium: + Full Name: YuKyokasho Medium + Family: YuKyokasho + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo-Bold: + Full Name: YuKyokasho Bold + Family: YuKyokasho + Style: Жирный + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Bold; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + YuKyo_Yoko-Medium: + Full Name: YuKyokasho Yoko Medium + Family: YuKyokasho Yoko + Style: Средний + Version: 17.0d1e1 + Vendor: JIYUKOBO Ltd. + Unique Name: YuKyokasho Yoko Medium; 17.0d1e1; 2021-06-22 + Designer: JIYUKOBO Ltd. + Copyright: Copyright © 2020 JIYUKOBO Ltd. All Rights Reserved. + Trademark: Yu Type Library is a registered trademark of JIYUKOBO Ltd. registered in Japan. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Damascus.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Damascus.ttc + Typefaces: + DamascusBold: + Full Name: Damascus Bold + Family: Damascus + Style: Жирный + Version: 20.0d1e2 + Unique Name: Damascus Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Damascus: + Full Name: Damascus Regular + Family: Damascus + Style: Обычный + Version: 20.0d1e2 + Unique Name: Damascus Regular; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusMedium: + Full Name: Damascus Medium + Family: Damascus + Style: Средний + Version: 20.0d1e2 + Unique Name: Damascus Medium; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusSemiBold: + Full Name: Damascus Semi Bold + Family: Damascus + Style: Полужирный + Version: 20.0d1e2 + Unique Name: Damascus Semi Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + DamascusLight: + Full Name: Damascus Light + Family: Damascus + Style: Легкий + Version: 20.0d1e2 + Unique Name: Damascus Light; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUA: + Full Name: .Damascus PUA + Family: .Damascus PUA + Style: Обычный + Version: 20.0d1e2 + Unique Name: .Damascus PUA; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUAMedium: + Full Name: .Damascus PUA Medium + Family: .Damascus PUA + Style: Средний + Version: 20.0d1e2 + Unique Name: .Damascus PUA Medium; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUALight: + Full Name: .Damascus PUA Light + Family: .Damascus PUA + Style: Легкий + Version: 20.0d1e2 + Unique Name: .Damascus PUA Light; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUASemiBold: + Full Name: .Damascus PUA Semi Bold + Family: .Damascus PUA + Style: Полужирный + Version: 20.0d1e2 + Unique Name: .Damascus PUA Semi Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DamascusPUABold: + Full Name: .Damascus PUA Bold + Family: .Damascus PUA + Style: Жирный + Version: 20.0d1e2 + Unique Name: .Damascus PUA Bold; 20.0d1e2; 2024-07-05 + Copyright: Diwan Software Ltd. 1987-2012 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Narrow Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Narrow Bold Italic.ttf + Typefaces: + ArialNarrow-BoldItalic: + Full Name: Arial Narrow Полужирный Курсив + Family: Arial Narrow + Style: Полужирный Курсив + Version: Version 2.38.1x + Vendor: The Monotype Corporation + Unique Name: Arial Narrow Bold Italic : 2007 + Designer: Robin Nicholas, Patricia Saunders + Copyright: © 2007 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Description: Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Bold Italic.ttf + Typefaces: + CourierNewPS-BoldItalicMT: + Full Name: Courier New Полужирный Курсив + Family: Courier New + Style: Полужирный Курсив + Version: Version 5.00x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Bold Italic:version 3.10 (Microsoft) + Designer: Howard Kettler + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + CJKSymbolsFallback.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/CJKSymbolsFallback.ttc + Typefaces: + .CJKSymbolsFallbackHK-Regular: + Full Name: .CJK Symbols Fallback HK Обычный + Family: .CJK Symbols Fallback HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Medium: + Full Name: .CJK Symbols Fallback HK Средний + Family: .CJK Symbols Fallback HK + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Light: + Full Name: .CJK Symbols Fallback HK Легкий + Family: .CJK Symbols Fallback HK + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Thin: + Full Name: .CJK Symbols Fallback HK Обычный + Family: .CJK Symbols Fallback HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Semibold: + Full Name: .CJK Symbols Fallback HK Полужирный + Family: .CJK Symbols Fallback HK + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Bold: + Full Name: .CJK Symbols Fallback HK Жирный + Family: .CJK Symbols Fallback HK + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackHK-Heavy: + Full Name: .CJK Symbols Fallback HK Тяжелый + Family: .CJK Symbols Fallback HK + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Regular: + Full Name: .CJK Symbols Fallback MO Обычный + Family: .CJK Symbols Fallback MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Medium: + Full Name: .CJK Symbols Fallback MO Средний + Family: .CJK Symbols Fallback MO + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Light: + Full Name: .CJK Symbols Fallback MO Легкий + Family: .CJK Symbols Fallback MO + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Thin: + Full Name: .CJK Symbols Fallback MO Обычный + Family: .CJK Symbols Fallback MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Semibold: + Full Name: .CJK Symbols Fallback MO Полужирный + Family: .CJK Symbols Fallback MO + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Bold: + Full Name: .CJK Symbols Fallback MO Жирный + Family: .CJK Symbols Fallback MO + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackMO-Heavy: + Full Name: .CJK Symbols Fallback MO Тяжелый + Family: .CJK Symbols Fallback MO + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Regular: + Full Name: .CJK Symbols Fallback SC Обычный + Family: .CJK Symbols Fallback SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Medium: + Full Name: .CJK Symbols Fallback SC Средний + Family: .CJK Symbols Fallback SC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Light: + Full Name: .CJK Symbols Fallback SC Легкий + Family: .CJK Symbols Fallback SC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Thin: + Full Name: .CJK Symbols Fallback SC Обычный + Family: .CJK Symbols Fallback SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Semibold: + Full Name: .CJK Symbols Fallback SC Полужирный + Family: .CJK Symbols Fallback SC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Bold: + Full Name: .CJK Symbols Fallback SC Жирный + Family: .CJK Symbols Fallback SC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackSC-Heavy: + Full Name: .CJK Symbols Fallback SC Тяжелый + Family: .CJK Symbols Fallback SC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Regular: + Full Name: .CJK Symbols Fallback TC Обычный + Family: .CJK Symbols Fallback TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Medium: + Full Name: .CJK Symbols Fallback TC Средний + Family: .CJK Symbols Fallback TC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Light: + Full Name: .CJK Symbols Fallback TC Легкий + Family: .CJK Symbols Fallback TC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Thin: + Full Name: .CJK Symbols Fallback TC Обычный + Family: .CJK Symbols Fallback TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Semibold: + Full Name: .CJK Symbols Fallback TC Полужирный + Family: .CJK Symbols Fallback TC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Bold: + Full Name: .CJK Symbols Fallback TC Жирный + Family: .CJK Symbols Fallback TC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackTC-Heavy: + Full Name: .CJK Symbols Fallback TC Тяжелый + Family: .CJK Symbols Fallback TC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Regular: + Full Name: .CJK Symbols Fallback Watch HK Обычный + Family: .CJK Symbols Fallback Watch HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Medium: + Full Name: .CJK Symbols Fallback Watch HK Средний + Family: .CJK Symbols Fallback Watch HK + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Light: + Full Name: .CJK Symbols Fallback Watch HK Легкий + Family: .CJK Symbols Fallback Watch HK + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Thin: + Full Name: .CJK Symbols Fallback Watch HK Обычный + Family: .CJK Symbols Fallback Watch HK + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Semibold: + Full Name: .CJK Symbols Fallback Watch HK Полужирный + Family: .CJK Symbols Fallback Watch HK + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Bold: + Full Name: .CJK Symbols Fallback Watch HK Жирный + Family: .CJK Symbols Fallback Watch HK + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchHK-Heavy: + Full Name: .CJK Symbols Fallback Watch HK Тяжелый + Family: .CJK Symbols Fallback Watch HK + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch HK Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Regular: + Full Name: .CJK Symbols Fallback Watch MO Обычный + Family: .CJK Symbols Fallback Watch MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Medium: + Full Name: .CJK Symbols Fallback Watch MO Средний + Family: .CJK Symbols Fallback Watch MO + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Light: + Full Name: .CJK Symbols Fallback Watch MO Легкий + Family: .CJK Symbols Fallback Watch MO + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Thin: + Full Name: .CJK Symbols Fallback Watch MO Обычный + Family: .CJK Symbols Fallback Watch MO + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Semibold: + Full Name: .CJK Symbols Fallback Watch MO Полужирный + Family: .CJK Symbols Fallback Watch MO + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Bold: + Full Name: .CJK Symbols Fallback Watch MO Жирный + Family: .CJK Symbols Fallback Watch MO + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchMO-Heavy: + Full Name: .CJK Symbols Fallback Watch MO Тяжелый + Family: .CJK Symbols Fallback Watch MO + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch MO Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Regular: + Full Name: .CJK Symbols Fallback Watch SC Обычный + Family: .CJK Symbols Fallback Watch SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Medium: + Full Name: .CJK Symbols Fallback Watch SC Средний + Family: .CJK Symbols Fallback Watch SC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Light: + Full Name: .CJK Symbols Fallback Watch SC Легкий + Family: .CJK Symbols Fallback Watch SC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Thin: + Full Name: .CJK Symbols Fallback Watch SC Обычный + Family: .CJK Symbols Fallback Watch SC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Semibold: + Full Name: .CJK Symbols Fallback Watch SC Полужирный + Family: .CJK Symbols Fallback Watch SC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Bold: + Full Name: .CJK Symbols Fallback Watch SC Жирный + Family: .CJK Symbols Fallback Watch SC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchSC-Heavy: + Full Name: .CJK Symbols Fallback Watch SC Тяжелый + Family: .CJK Symbols Fallback Watch SC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch SC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Regular: + Full Name: .CJK Symbols Fallback Watch TC Обычный + Family: .CJK Symbols Fallback Watch TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Medium: + Full Name: .CJK Symbols Fallback Watch TC Средний + Family: .CJK Symbols Fallback Watch TC + Style: Средний + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Light: + Full Name: .CJK Symbols Fallback Watch TC Легкий + Family: .CJK Symbols Fallback Watch TC + Style: Легкий + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Thin: + Full Name: .CJK Symbols Fallback Watch TC Обычный + Family: .CJK Symbols Fallback Watch TC + Style: Обычный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Semibold: + Full Name: .CJK Symbols Fallback Watch TC Полужирный + Family: .CJK Symbols Fallback Watch TC + Style: Полужирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Bold: + Full Name: .CJK Symbols Fallback Watch TC Жирный + Family: .CJK Symbols Fallback Watch TC + Style: Жирный + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .CJKSymbolsFallbackWatchTC-Heavy: + Full Name: .CJK Symbols Fallback Watch TC Тяжелый + Family: .CJK Symbols Fallback Watch TC + Style: Тяжелый + Version: 20.0d11e2 + Unique Name: .CJK Symbols Fallback Watch TC Thin; 20.0d11e2; 2024-06-18 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberTamil.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0021f10c176530a735946770945ace69fc82bba7.asset/AssetData/OctoberTamil.ttc + Typefaces: + OctoberTL-Regular: + Full Name: October Tamil Regular + Family: October Tamil + Style: Обычный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Regular; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-ExtraLight: + Full Name: October Tamil ExtraLight + Family: October Tamil + Style: Сверхлегкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil ExtraLight; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Black: + Full Name: October Tamil Black + Family: October Tamil + Style: Черный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Black; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Bold: + Full Name: October Tamil Bold + Family: October Tamil + Style: Жирный + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Bold; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Hairline: + Full Name: October Tamil Hairline + Family: October Tamil + Style: С соединительными штрихами + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Hairline; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Light: + Full Name: October Tamil Light + Family: October Tamil + Style: Легкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Light; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Thin: + Full Name: October Tamil Thin + Family: October Tamil + Style: Тонкий + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Thin; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Medium: + Full Name: October Tamil Medium + Family: October Tamil + Style: Средний + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Medium; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberTL-Heavy: + Full Name: October Tamil Heavy + Family: October Tamil + Style: Тяжелый + Version: 15.0d1e7 + Vendor: Typotheque + Unique Name: October Tamil Heavy; 15.0d1e7; 2020-03-05 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Oriya MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Oriya MN.ttc + Typefaces: + OriyaMN-Bold: + Full Name: Oriya MN Bold + Family: Oriya MN + Style: Жирный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Oriya MN Bold; 20.0d1e3; 2024-07-18 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Oriya MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OriyaMN: + Full Name: Oriya MN + Family: Oriya MN + Style: Обычный + Version: 20.0d1e3 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Oriya MN; 20.0d1e3; 2024-07-18 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Oriya MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-HeavyItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-HeavyItalic.otf + Typefaces: + SFProDisplay-HeavyItalic: + Full Name: SF Pro Display Heavy Italic + Family: SF Pro Display + Style: Тяжелый курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Heavy Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Menlo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Menlo.ttc + Typefaces: + Menlo-BoldItalic: + Full Name: Menlo Bold Italic + Family: Menlo + Style: Жирный курсивный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Bold Italic; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Italic: + Full Name: Menlo Italic + Family: Menlo + Style: Курсивный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Italic; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Bold: + Full Name: Menlo Bold + Family: Menlo + Style: Жирный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Bold; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Menlo-Regular: + Full Name: Menlo Regular + Family: Menlo + Style: Обычный + Version: 17.0d1e1 + Vendor: Bitstream + Unique Name: Menlo Regular; 17.0d1e1; 2021-02-10 + Designer: Jim Lyles + Copyright: Copyright © 2009 Apple Inc. Copyright © 2006 by Tavmjong Bah. Copyright © 2003 by Bitstream, Inc. All Rights Reserved. + Trademark: Menlo is a Trademark of Apple Inc. + Description: Menlo is based upon the Open Source font Bitstream Vera and the public domain font Deja Vu. Bitstream Vera is a trademark of Bitstream, Inc., designed by Jim Lyles. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumScript.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6f4c91728bb824d6960725ec479c355eab7eeba8.asset/AssetData/NanumScript.ttc + Typefaces: + NanumPen: + Full Name: Nanum Pen Script + Family: Nanum Pen Script + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: Nanum Pen Script; 13.0d1e3; 2017-06-14 + Designer: Doo-yul Kwak; Hyunghwan Choi; Nicolas Noh; + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumPen is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumBrush: + Full Name: Nanum Brush Script + Family: Nanum Brush Script + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: Nanum Brush Script; 13.0d1e3; 2017-06-14 + Designer: Kwak Doo-yul; Nicolas Noh; + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumBrush is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMHannaAir-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/12cc699be28fb04f3e3c4969a0378a87b920b174.asset/AssetData/BMHannaAir-Regular.otf + Typefaces: + BMHANNAAirOTF: + Full Name: BM HANNA Air OTF + Family: BM Hanna Air + Style: Обычный + Version: 18.0d1e6 + Vendor: Sandoll Communications Inc. + Unique Name: BM HANNA Air OTF; 18.0d1e6; 2022-09-27 + Designer: Woowa Brothers : Cheoljun Lim; Soyoung Lee; Taehyun Cha; Byungsun Park; Minjin Kim; Hyesun Chae; Myungsoo Han; Bongjin Kim; & Sandoll : Jooyeon Kang; Jinhee Kim; Dokyung Lee; + Copyright: Copyright © 2018 WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BM HANNA Air-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMKirangHaerang-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/cd59971ded42add9070aa2172265ba7fcf8d9327.asset/AssetData/BMKirangHaerang-Regular.otf + Typefaces: + BMKIRANGHAERANG-OTF: + Full Name: BM KIRANGHAERANG OTF + Family: BM Kirang Haerang + Style: Обычный + Version: 14.0d1e3 + Vendor: Sandoll Communications Inc. + Unique Name: BM KIRANGHAERANG OTF; 14.0d1e3; 2022-09-27 + Designer: Bongjin Kim; Myungsoo Han; Namu Lee; Hyesun Chae; Soyoung Lee; Dokyung Lee; Chorong Kim; Juseong Park; Sang-a Kim; + Copyright: Copyright © 2017, WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BMKIRANGHAERANG-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ArimaKoshi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6fe206600409e98dcd3e18af1427806070d0150f.asset/AssetData/ArimaKoshi.ttc + Typefaces: + ArimaKoshi-Medium: + Full Name: ArimaKoshi-Medium + Family: Arima Koshi + Style: Средний + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Medium + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Regular: + Full Name: ArimaKoshi-Regular + Family: Arima Koshi + Style: Обычный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Regular + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Black: + Full Name: ArimaKoshi-Black + Family: Arima Koshi + Style: Черный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Black + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Thin: + Full Name: ArimaKoshi-Thin + Family: Arima Koshi + Style: Тонкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Thin + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-ExtraBold: + Full Name: ArimaKoshi-ExtraBold + Family: Arima Koshi + Style: Сверхжирный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-ExtraBold + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-ExtraLight: + Full Name: ArimaKoshi-ExtraLight + Family: Arima Koshi + Style: Сверхлегкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-ExtraLight + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Light: + Full Name: ArimaKoshi-Light + Family: Arima Koshi + Style: Легкий + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Light + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + ArimaKoshi-Bold: + Full Name: Arima Koshi Bold + Family: Arima Koshi + Style: Жирный + Version: Version 1.019;PS 001.019;hotconv 1.0.88;makeotf.lib2.5.64775 + Vendor: NDISCOVER + Unique Name: 1.019;NDIS;ArimaKoshi-Bold + Designer: Joana Correia and Natanael Gama + Copyright: Copyright 2015 The Arima Project Authors (info@ndiscovered.com) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Yuanti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/b86e58f38fd21e9782e70a104676f1655e72ebab.asset/AssetData/Yuanti.ttc + Typefaces: + STYuanti-TC-Regular: + Full Name: Yuanti TC Regular + Family: Yuanti TC + Style: Обычный + Version: 17.0d1e4 + Unique Name: Yuanti TC Regular; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-TC-Light: + Full Name: Yuanti TC Light + Family: Yuanti TC + Style: Легкий + Version: 17.0d1e4 + Unique Name: Yuanti TC Light; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Bold: + Full Name: Yuanti SC Bold + Family: Yuanti SC + Style: Жирный + Version: 17.0d1e4 + Unique Name: Yuanti SC Bold; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Regular: + Full Name: Yuanti SC Regular + Family: Yuanti SC + Style: Обычный + Version: 17.0d1e4 + Unique Name: Yuanti SC Regular; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-SC-Light: + Full Name: Yuanti SC Light + Family: Yuanti SC + Style: Легкий + Version: 17.0d1e4 + Unique Name: Yuanti SC Light; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STYuanti-TC-Bold: + Full Name: Yuanti TC Bold + Family: Yuanti TC + Style: Жирный + Version: 17.0d1e4 + Unique Name: Yuanti TC Bold; 17.0d1e4; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STYuanti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Regular.otf + Typefaces: + SFCompactText-Regular: + Full Name: SF Compact Text Regular + Family: SF Compact Text + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooChettanMalayalam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a238bc4fd92d2e0ca8d046339d29abdbce1342c0.asset/AssetData/BalooChettanMalayalam.ttc + Typefaces: + BalooChettan2-Regular: + Full Name: Baloo Chettan 2 Regular + Family: Baloo Chettan 2 + Style: Обычный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Regular; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-SemiBold: + Full Name: Baloo Chettan 2 SemiBold + Family: Baloo Chettan 2 + Style: Полужирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 SemiBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-Medium: + Full Name: Baloo Chettan 2 Medium + Family: Baloo Chettan 2 + Style: Средний + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Medium; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-Bold: + Full Name: Baloo Chettan 2 Bold + Family: Baloo Chettan 2 + Style: Жирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 Bold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BalooChettan2-ExtraBold: + Full Name: Baloo Chettan 2 ExtraBold + Family: Baloo Chettan 2 + Style: Сверхжирный + Version: 20.0d1e2 (1.640) + Vendor: Ek Type + Unique Name: Baloo Chettan 2 ExtraBold; 20.0d1e2 (1.640); 2024-07-09 + Designer: Maithili Shingre, Unnati Kotecha and Ek Type + Copyright: Copyright 2019 The Baloo 2 Project Authors (https://github.com/EkType/Baloo2) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PartyLET-plain.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PartyLET-plain.ttf + Typefaces: + PartyLetPlain: + Full Name: Party LET Plain + Family: Party LET + Style: Простой + Version: 16.0d1e2 + Unique Name: Party LET Plain; 16.0d1e2; 2020-08-17 + Copyright: © 1993 Esselte Letraset Limited + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Cochin.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Cochin.ttc + Typefaces: + Cochin: + Full Name: Cochin + Family: Cochin + Style: Обычный + Version: 13.0d2e1 + Unique Name: Cochin; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-Bold: + Full Name: Cochin Bold + Family: Cochin + Style: Жирный + Version: 13.0d2e1 + Unique Name: Cochin Bold; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-Italic: + Full Name: Cochin Italic + Family: Cochin + Style: Курсивный + Version: 13.0d2e1 + Unique Name: Cochin Italic; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Cochin-BoldItalic: + Full Name: Cochin Bold Italic + Family: Cochin + Style: Жирный курсивный + Version: 13.0d2e1 + Unique Name: Cochin Bold Italic; 13.0d2e1; 2017-06-19 + Copyright: Copyright (c) 1981 Linotype AG and/or its subsidiaries. + Description: (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is the property of Linotype AG and/or its subsidiaries and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype AG and/or its subsidiaries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCompressedDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/1ff4e547c28844b2b95c93618c4ecf5d9e46fe51.asset/AssetData/OctoberCompressedDevanagari.ttc + Typefaces: + OctoberCompressedDL-Regular: + Full Name: October Compressed Devanagari Regular + Family: October Compressed Devanagari + Style: Обычный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Regular; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Hairline: + Full Name: October Compressed Devanagari Hairline + Family: October Compressed Devanagari + Style: С соединительными штрихами + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Hairline; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Heavy: + Full Name: October Compressed Devanagari Heavy + Family: October Compressed Devanagari + Style: Тяжелый + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Heavy; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-ExtraLight: + Full Name: October Compressed Devanagari ExtraLight + Family: October Compressed Devanagari + Style: Сверхлегкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari ExtraLight; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Bold: + Full Name: October Compressed Devanagari Bold + Family: October Compressed Devanagari + Style: Жирный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Bold; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Thin: + Full Name: October Compressed Devanagari Thin + Family: October Compressed Devanagari + Style: Тонкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Thin; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Black: + Full Name: October Compressed Devanagari Black + Family: October Compressed Devanagari + Style: Черный + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Black; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Medium: + Full Name: October Compressed Devanagari Medium + Family: October Compressed Devanagari + Style: Средний + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Medium; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCompressedDL-Light: + Full Name: October Compressed Devanagari Light + Family: October Compressed Devanagari + Style: Легкий + Version: 15.0d1e4 + Vendor: Typotheque + Unique Name: October Compressed Devanagari Light; 15.0d1e4; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + DIN Alternate Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/DIN Alternate Bold.ttf + Typefaces: + DINAlternate-Bold: + Full Name: DIN Alternate Bold + Family: DIN Alternate + Style: Жирный + Version: 13.0d3e2 + Unique Name: DIN Alternate Bold; 13.0d3e2; 2017-11-30 + Designer: H. Berthold AG + Copyright: Copyright (c) 1988, 1991, 2003 Linotype Library GmbH, www.linotype.com. All rights reserved. + Trademark: DINSchrift + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + TiroHindi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6d5a94913b06cb642500dea1e315d7105cff5dc6.asset/AssetData/TiroHindi.ttc + Typefaces: + TiroDevaHindi-Italic: + Full Name: Tiro Devanagari Hindi Italic + Family: Tiro Devanagari Hindi + Style: Курсивный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd + Unique Name: Tiro Devanagari Hindi Italic; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross, assisted by Paul Hanslow. Latin: John Hudson with Paul Hanslow, assisted by Kaja Słojewska. + Copyright: Copyright (c) 2016, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Hindi and Tiro Indic are trademarks of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TiroDevaHindi: + Full Name: Tiro Devanagari Hindi + Family: Tiro Devanagari Hindi + Style: Обычный + Version: 20.0d1e2 + Vendor: Tiro Typeworks Ltd. + Unique Name: Tiro Devanagari Hindi; 20.0d1e2; 2024-07-05 + Designer: Devanagari: John Hudson & Fiona Ross. Latin: John Hudson. + Copyright: Copyright (c) 2014, 2020 by Tiro Typeworks Ltd. All rights reserved. + Trademark: Tiro Devanagari Hindi is a trademark of Tiro Typeworks Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumMyeongjo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/70816a43827731d40efe234b94feba96db91024f.asset/AssetData/NanumMyeongjo.ttc + Typefaces: + NanumMyeongjoBold: + Full Name: NanumMyeongjoBold + Family: Nanum Myeongjo + Style: Жирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo Bold; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjoBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumMyeongjoExtraBold: + Full Name: NanumMyeongjoExtraBold + Family: Nanum Myeongjo + Style: Сверхжирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo ExtraBold; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjoExtraBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumMyeongjo: + Full Name: NanumMyeongjo + Family: Nanum Myeongjo + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumMyeongjo; 13.0d1e3; 2017-06-14 + Designer: Yong-rak, Park; Ji-hee, Yoon + Copyright: Copyright © 2010 NHN Corporation. All rights reserved. Font designed by FONTRIX. + Trademark: NanumMyeongjo is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MuktaVaani-Gujarati.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0dc365b1dd1c8d8e8110f6909ac0070b8f9e354f.asset/AssetData/MuktaVaani-Gujarati.ttc + Typefaces: + MuktaVaani-SemiBold: + Full Name: Mukta Vaani SemiBold + Family: Mukta Vaani + Style: Полужирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani SemiBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Medium: + Full Name: Mukta Vaani Medium + Family: Mukta Vaani + Style: Средний + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Medium; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Regular: + Full Name: Mukta Vaani Regular + Family: Mukta Vaani + Style: Обычный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Regular; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Bold: + Full Name: Mukta Vaani Bold + Family: Mukta Vaani + Style: Жирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Bold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-Light: + Full Name: Mukta Vaani Light + Family: Mukta Vaani + Style: Легкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani Light; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-ExtraBold: + Full Name: Mukta Vaani ExtraBold + Family: Mukta Vaani + Style: Сверхжирный + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani ExtraBold; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MuktaVaani-ExtraLight: + Full Name: Mukta Vaani ExtraLight + Family: Mukta Vaani + Style: Сверхлегкий + Version: 20.0d1e2 (2.538) + Vendor: Ek Type + Unique Name: Mukta Vaani ExtraLight; 20.0d1e2 (2.538); 2024-07-05 + Designer: Noopur Datye, Girish Dalvi, Yashodeep Gholap, Pallavi Karambelkar + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W1.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W1.ttc + Typefaces: + HiraginoSans-W1: + Full Name: Hiragino Sans W1 + Family: Hiragino Sans + Style: W1 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W1; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W1: + Full Name: .Hiragino Kaku Gothic Interface W1 + Family: .Hiragino Kaku Gothic Interface + Style: W1 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W1; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NanumGothic.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bad9b4bf17cf1669dde54184ba4431c22dcad27b.asset/AssetData/NanumGothic.ttc + Typefaces: + NanumGothic: + Full Name: NanumGothic + Family: Nanum Gothic + Style: Обычный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothic is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumGothicExtraBold: + Full Name: NanumGothic ExtraBold + Family: Nanum Gothic + Style: Сверхжирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic ExtraBold; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothicExtraBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NanumGothicBold: + Full Name: NanumGothic Bold + Family: Nanum Gothic + Style: Жирный + Version: 13.0d1e3 + Vendor: NHN Corporation + Unique Name: NanumGothic Bold; 13.0d1e3; 2017-06-14 + Designer: Bruce Kwon; Nicolas Noh; Sung-woo Choi; + Copyright: Copyright © 2011 NHN Corporation. All rights reserved. Font designed by Sandoll Communications Inc. + Trademark: NanumGothicBold is a registered trademark of NHN Corporation. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Courier New Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Courier New Bold.ttf + Typefaces: + CourierNewPS-BoldMT: + Full Name: Courier New Полужирный + Family: Courier New + Style: Полужирный + Version: Version 5.00.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Courier New Bold:version 5.00 (Microsoft) + Designer: Howard Kettler + Copyright: © 2008 The Monotype Corporation. All Rights Reserved. + Trademark: Courier New is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Outline 6 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Outline 6 Dot.ttf + Typefaces: + AppleBraille-Outline6Dot: + Full Name: Apple Braille Outline 6 Dot + Family: Apple Braille + Style: Outline 6 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Outline 6 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Palatino.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Palatino.ttc + Typefaces: + Palatino-BoldItalic: + Full Name: Palatino Bold Italic + Family: Palatino + Style: Жирный курсивный + Version: 18.0d1e19 + Unique Name: Palatino Bold Italic; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Roman: + Full Name: Palatino + Family: Palatino + Style: Обычный + Version: 18.0d1e19 + Unique Name: Palatino; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Bold: + Full Name: Palatino Bold + Family: Palatino + Style: Жирный + Version: 18.0d1e19 + Unique Name: Palatino Bold; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Palatino-Italic: + Full Name: Palatino Italic + Family: Palatino + Style: Курсивный + Version: 18.0d1e19 + Unique Name: Palatino Italic; 18.0d1e19; 2021-11-10 + Copyright: Copyright © 1991-99, 2006 Apple Computer, Inc. Copyright © 1991-92 Type Solutions, Inc. All rights reserved. + Trademark: Palatino is a registered trademark of Linotype AG + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Hoefler Text Ornaments.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Hoefler Text Ornaments.ttf + Typefaces: + HoeflerText-Ornaments: + Full Name: Hoefler Text Ornaments + Family: Hoefler Text + Style: Орнаменты + Version: 14.0d1e2 + Unique Name: Hoefler Text Ornaments; 14.0d1e2; 2018-01-19 + Copyright: © Apple Inc., 1992-2007 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + LahoreGurmukhi.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c24057a6b75265680a99845a448ae09c6c6a5cba.asset/AssetData/LahoreGurmukhi.ttc + Typefaces: + LahoreGurmukhi-Light: + Full Name: Lahore Gurmukhi Light + Family: Lahore Gurmukhi + Style: Легкий + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Light; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Bold: + Full Name: Lahore Gurmukhi Bold + Family: Lahore Gurmukhi + Style: Жирный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Bold; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Regular: + Full Name: Lahore Gurmukhi Regular + Family: Lahore Gurmukhi + Style: Обычный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Regular; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-Medium: + Full Name: Lahore Gurmukhi Medium + Family: Lahore Gurmukhi + Style: Средний + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi Medium; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + LahoreGurmukhi-SemiBold: + Full Name: Lahore Gurmukhi SemiBold + Family: Lahore Gurmukhi + Style: Полужирный + Version: 20.0d1e2 + Vendor: Apple Inc. + Unique Name: Lahore Gurmukhi SemiBold; 20.0d1e2; 2024-07-05 + Designer: Kulpreet Chilana + Copyright: © 2019 Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Unicode.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Unicode.ttf + Typefaces: + ArialUnicodeMS: + Full Name: Arial Unicode MS + Family: Arial Unicode MS + Style: Обычный + Version: Version 1.01x + Vendor: Agfa Monotype Corporation + Unique Name: Monotype - Arial Unicode MS + Designer: Original design: Robin Nicholas, Patricia Saunders. Extended glyphs: Monotype Type Drawing Office, Monotype Typography. + Copyright: Digitized data copyright (C) 1993-2000 Agfa Monotype Corporation. All rights reserved. Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Trademark: Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions. + Description: This extended version of Monotype's Arial contains glyphs for all code points within The Unicode Standard, Version 2.1. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Tamil Sangam MN.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Tamil Sangam MN.ttc + Typefaces: + GranthaSangamMN-Bold: + Full Name: Grantha Sangam MN Bold + Family: Grantha Sangam MN + Style: Жирный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Bold; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN: + Full Name: Tamil Sangam MN + Family: Tamil Sangam MN + Style: Обычный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GranthaSangamMN-Regular: + Full Name: Grantha Sangam MN Regular + Family: Grantha Sangam MN + Style: Обычный + Version: 20.0d1e6 + Vendor: Muthu Nedumaran + Unique Name: Grantha Sangam MN Regular; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2004 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TamilSangamMN-Bold: + Full Name: Tamil Sangam MN Bold + Family: Tamil Sangam MN + Style: Жирный + Version: 20.0d1e6 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Tamil Sangam MN Bold; 20.0d1e6; 2025-01-13 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Tamil Sangam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Ornanong.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/ad8c3bb76851adc11dc4772c1a7a00caf83e3037.asset/AssetData/Ornanong.ttc + Typefaces: + PSLOrnanongPro-Light: + Full Name: PSL Ornanong Pro Light + Family: PSL Ornanong Pro + Style: Легкий + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Light; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Demibold: + Full Name: PSL Ornanong Pro Demibold + Family: PSL Ornanong Pro + Style: Полужирный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Demibold; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Regular: + Full Name: PSL Ornanong Pro + Family: PSL Ornanong Pro + Style: Обычный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-LightItalic: + Full Name: PSL Ornanong Pro Light Italic + Family: PSL Ornanong Pro + Style: Легкий курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Light Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-DemiboldItalic: + Full Name: PSL Ornanong Pro Demibold Italic + Family: PSL Ornanong Pro + Style: Demibold Italic + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Demibold Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Italic: + Full Name: PSL Ornanong Pro Italic + Family: PSL Ornanong Pro + Style: Курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-Bold: + Full Name: PSL Ornanong Pro Bold + Family: PSL Ornanong Pro + Style: Жирный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Bold; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + PSLOrnanongPro-BoldItalic: + Full Name: PSL Ornanong Pro Bold Italic + Family: PSL Ornanong Pro + Style: Жирный курсивный + Version: 14.0d1e4 + Unique Name: PSL Ornanong Pro Bold Italic; 14.0d1e4; 2019-03-07 + Designer: Phanlop Thongsuk + Copyright: Copyright (c) Phanlop Thongsuk, 1995-2011. All rights reserved. + Trademark: PSL Ornanong is a trademark of Phanlop Thongsuk. + Description: "PSL" is abbreviation of PSL SmartLetter. "PSL SmartLetter" is a pseudonym of Phanlop Thongsuk. And "PSL SmartLetter" is a trademark of the Phanlop Thongsuk. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Noteworthy.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Noteworthy.ttc + Typefaces: + Noteworthy-Bold: + Full Name: Noteworthy Bold + Family: Noteworthy + Style: Жирный + Version: 17.0d1e1 + Unique Name: Noteworthy Bold; 17.0d1e1; 2020-10-09 + Copyright: © 2005 by Dan X. Solo, Alameda, California + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Noteworthy-Light: + Full Name: Noteworthy Light + Family: Noteworthy + Style: Легкий + Version: 17.0d1e1 + Unique Name: Noteworthy Light; 17.0d1e1; 2020-10-09 + Copyright: © 2005 by Dan X. Solo, Alameda, California + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NewPeninimMT.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NewPeninimMT.ttc + Typefaces: + NewPeninimMT-Inclined: + Full Name: New Peninim MT Inclined + Family: New Peninim MT + Style: Наклонный + Version: 13.0d1e4 + Unique Name: New Peninim MT Inclined; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT-BoldInclined: + Full Name: New Peninim MT Bold Inclined + Family: New Peninim MT + Style: Жирный наклонный + Version: 13.0d1e4 + Unique Name: New Peninim MT Bold Inclined; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭..‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT-Bold: + Full Name: New Peninim MT Bold + Family: New Peninim MT + Style: Жирный + Version: 13.0d1e4 + Unique Name: New Peninim MT Bold; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NewPeninimMT: + Full Name: New Peninim MT + Family: New Peninim MT + Style: Обычный + Version: 13.0d1e4 + Unique Name: New Peninim MT; 13.0d1e4; 2017-06-14 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭, ‬Type Solutions Inc 1990-1993‭. ‬All rights reserved‭.‬ + Trademark: Peninim ® is a Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Farisi.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Farisi.ttf + Typefaces: + Farisi: + Full Name: Farisi Regular + Family: Farisi + Style: Обычный + Version: 13.0d1e3 + Unique Name: Farisi Regular; 13.0d1e3; 2017-06-13 + Copyright: © 2002 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Oriya Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Oriya Sangam MN.ttc + Typefaces: + OriyaSangamMN-Bold: + Full Name: Oriya Sangam MN Bold + Family: Oriya Sangam MN + Style: Жирный + Version: 20.0d1e4 + Unique Name: Oriya Sangam MN Bold; 20.0d1e4; 2024-07-17 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Muthu Nedumaran. All rights reserved. + Trademark: Oriya Sangam MN is a trademark of Muthu Nedumaran. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OriyaSangamMN: + Full Name: Oriya Sangam MN + Family: Oriya Sangam MN + Style: Обычный + Version: 20.0d1e4 + Unique Name: Oriya Sangam MN; 20.0d1e4; 2024-07-17 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2010 by Muthu Nedumaran. All rights reserved. + Trademark: Oriya Sangam MN is a trademark of Muthu Nedumaran. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Verdana Bold Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Verdana Bold Italic.ttf + Typefaces: + Verdana-BoldItalic: + Full Name: Verdana Полужирный Курсив + Family: Verdana + Style: Полужирный Курсив + Version: Version 5.01x + Vendor: Carter & Cone + Unique Name: Microsoft:Verdana Bold Italic:Version 5.01x (Microsoft) + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Verdana is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ThonburiUI.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ThonburiUI.ttc + Typefaces: + .ThonburiUI-Regular: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Обычный + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUI-Light: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Легкий + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUI-Bold: + Full Name: .ThonburiUI Regular + Family: .ThonburiUI + Style: Жирный + Version: 18.0d2e6 + Unique Name: .ThonburiUI Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Regular: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Обычный + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Light: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Легкий + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ThonburiUIWatch-Bold: + Full Name: .ThonburiUIWatch Regular + Family: .ThonburiUIWatch + Style: Жирный + Version: 18.0d2e6 + Unique Name: .ThonburiUIWatch Regular; 18.0d2e6; 2022-06-16 + Copyright: Copyright © 1992-2011, 2015-2017, 2020-2022 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Light.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Light.otf + Typefaces: + SFProRounded-Light: + Full Name: SF Pro Rounded Light + Family: SF Pro Rounded + Style: Легкий + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Light; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoNastaliq.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoNastaliq.ttc + Typefaces: + NotoNastaliqUrdu-Bold: + Full Name: Noto Nastaliq Urdu Bold + Family: Noto Nastaliq Urdu + Style: Жирный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Nastaliq Urdu Bold; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2017 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoNastaliqUrdu: + Full Name: Noto Nastaliq Urdu + Family: Noto Nastaliq Urdu + Style: Обычный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Nastaliq Urdu; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NotoNastaliqUrduUI: + Full Name: .Noto Nastaliq Urdu UI + Family: .Noto Nastaliq Urdu UI + Style: Обычный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: .Noto Nastaliq Urdu UI; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .NotoNastaliqUrduUI-Bold: + Full Name: .Noto Nastaliq Urdu UI Bold + Family: .Noto Nastaliq Urdu UI + Style: Жирный + Version: 20.0d1e3 + Vendor: Monotype Imaging Inc. + Unique Name: .Noto Nastaliq Urdu UI Bold; 20.0d1e3; 2024-07-10 + Designer: Monotype Design Team + Copyright: Copyright 2014 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data unhinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + CambayDevanagari.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/fec82d04f4ff6bff5c7a86df14150dfc4f3da60d.asset/AssetData/CambayDevanagari.ttc + Typefaces: + CambayDevanagari-Oblique: + Full Name: Cambay Devanagari Oblique + Family: Cambay Devanagari + Style: Наклонный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Oblique; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-Regular: + Full Name: Cambay Devanagari Regular + Family: Cambay Devanagari + Style: Обычный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Regular; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-BoldOblique: + Full Name: Cambay Devanagari Bold Oblique + Family: Cambay Devanagari + Style: Жирный наклонный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Bold Oblique; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CambayDevanagari-Bold: + Full Name: Cambay Devanagari Bold + Family: Cambay Devanagari + Style: Жирный + Version: 20.0d1e2 (1.180) + Vendor: Pooja Saxena + Unique Name: Cambay Devanagari Bold; 20.0d1e2 (1.180); 2024-07-09 + Designer: Pooja Saxena + Copyright: (c) Copyright Pooja Saxena, 2014. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NISC18030.ttf: + + Kind: Bitmap + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/NISC18030.ttf + Typefaces: + GB18030Bitmap: + Full Name: GB18030 Bitmap + Family: GB18030 Bitmap + Style: Обычный + Version: 18.0d1e1 + Vendor: NISC, People's Republic of China + Unique Name: GB18030 Bitmap; 18.0d1e1; 2022-09-12 + Copyright: Copyright © 2002 NISC, People's Republic of China. + Outline: No + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Telugu MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Telugu MN.ttc + Typefaces: + TeluguMN-Bold: + Full Name: Telugu MN Bold + Family: Telugu MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Telugu MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + TeluguMN: + Full Name: Telugu MN + Family: Telugu MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Telugu MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Telugu MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-SemiboldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-SemiboldItalic.otf + Typefaces: + SFProDisplay-SemiboldItalic: + Full Name: SF Pro Display Semibold Italic + Family: SF Pro Display + Style: Полужирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Semibold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Baijam.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/4cec0fab93a88d2448fed090966ef489adb6cfcc.asset/AssetData/Baijam.ttc + Typefaces: + BaiJamjuree-MediumItalic: + Full Name: Bai Jamjuree Medium Italic + Family: Bai Jamjuree + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-MediumItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-LightItalic: + Full Name: Bai Jamjuree Light Italic + Family: Bai Jamjuree + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-LightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Italic: + Full Name: Bai Jamjuree Italic + Family: Bai Jamjuree + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Italic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-ExtraLight: + Full Name: Bai Jamjuree ExtraLight + Family: Bai Jamjuree + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-ExtraLight + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Medium: + Full Name: Bai Jamjuree Medium + Family: Bai Jamjuree + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Medium + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-SemiBold: + Full Name: Bai Jamjuree SemiBold + Family: Bai Jamjuree + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-SemiBold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Regular: + Full Name: Bai Jamjuree Regular + Family: Bai Jamjuree + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Regular + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-BoldItalic: + Full Name: Bai Jamjuree Bold Italic + Family: Bai Jamjuree + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-BoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-SemiBoldItalic: + Full Name: Bai Jamjuree SemiBold Italic + Family: Bai Jamjuree + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-SemiBoldItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Light: + Full Name: Bai Jamjuree Light + Family: Bai Jamjuree + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Light + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-ExtraLightItalic: + Full Name: Bai Jamjuree ExtraLight Italic + Family: Bai Jamjuree + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-ExtraLightItalic + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + BaiJamjuree-Bold: + Full Name: Bai Jamjuree Bold + Family: Bai Jamjuree + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;BaiJamjuree-Bold + Designer: Katatrad Aksorn Co.,Ltd. + Copyright: Copyright 2018 Bai Jamjuree (https://github.com/cadsondemak/Bai-Jamjuree) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Semibold.otf + Typefaces: + SFProRounded-Semibold: + Full Name: SF Pro Rounded Semibold + Family: SF Pro Rounded + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Corsiva.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Corsiva.ttc + Typefaces: + CorsivaHebrew: + Full Name: Corsiva Hebrew + Family: Corsiva Hebrew + Style: Обычный + Version: 19.0d1e1 + Unique Name: Corsiva Hebrew; 19.0d1e1; 2023-06-30 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. /‬Type Solutions Inc‭. ‬1990-91-92-93‭. ‬All rights reserved‭.‬ + Trademark: Corsiva™ Trademark of The Monotype Corporation registered in certain contries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + CorsivaHebrew-Bold: + Full Name: Corsiva Hebrew Bold + Family: Corsiva Hebrew + Style: Жирный + Version: 19.0d1e1 + Unique Name: Corsiva Hebrew Bold; 19.0d1e1; 2023-06-30 + Copyright: Typeface‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. ‬Data‭ ‬‮(‬‭ ‬Monotype Typography ltd‭. /‬Type Solutions Inc‭. ‬1990-91-92-93‭ ‬All rights reserved‭.‬ + Trademark: Corsiva™ Trademark of The Monotype Corporation registered in certain countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + GillSans.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/GillSans.ttc + Typefaces: + GillSans-UltraBold: + Full Name: Gill Sans UltraBold + Family: Gill Sans + Style: Ультражирный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans UltraBold; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Italic: + Full Name: Gill Sans Italic + Family: Gill Sans + Style: Курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-SemiBoldItalic: + Full Name: Gill Sans SemiBold Italic + Family: Gill Sans + Style: Полужирный курсивный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans SemiBold Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Copyright © 2012 The Monotype Corporation. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of The Monotype Corporation. + Trademark: "Gill Sans" is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans: + Full Name: Gill Sans + Family: Gill Sans + Style: Обычный + Version: 16.0d1e1 + Unique Name: Gill Sans; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Bold: + Full Name: Gill Sans Bold + Family: Gill Sans + Style: Жирный + Version: 16.0d1e1 + Unique Name: Gill Sans Bold; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-SemiBold: + Full Name: Gill Sans SemiBold + Family: Gill Sans + Style: Полужирный + Version: 16.0d1e1 + Vendor: Monotype Imaging Inc. + Unique Name: Gill Sans SemiBold; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Copyright © 2012 The Monotype Corporation. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of The Monotype Corporation. + Trademark: "Gill Sans" is a registered trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-LightItalic: + Full Name: Gill Sans Light Italic + Family: Gill Sans + Style: Легкий курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Light Italic; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-Light: + Full Name: Gill Sans Light + Family: Gill Sans + Style: Легкий + Version: 16.0d1e1 + Unique Name: Gill Sans Light; 16.0d1e1; 2020-07-06 + Designer: Eric Gill + Copyright: Digitized data copyright The Monotype Corporation 1991-2001. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GillSans-BoldItalic: + Full Name: Gill Sans Bold Italic + Family: Gill Sans + Style: Жирный курсивный + Version: 16.0d1e1 + Unique Name: Gill Sans Bold Italic; 16.0d1e1; 2020-07-06 + Copyright: Digitized data copyright © 1991-2001 Agfa Monotype Corporation. All rights reserved. + Trademark: Gill Sans™ is a trademark of The Monotype Corporation. Registered in the U.S. Patent and Trademark Office and may be registered in certain jurisdictions + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + NotoSansOriya.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/NotoSansOriya.ttc + Typefaces: + NotoSansOriya: + Full Name: Noto Sans Oriya + Family: Noto Sans Oriya + Style: Обычный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Oriya; 20.0d1e2; 2024-07-05 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data hinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + NotoSansOriya-Bold: + Full Name: Noto Sans Oriya Bold + Family: Noto Sans Oriya + Style: Жирный + Version: 20.0d1e2 + Vendor: Monotype Imaging Inc. + Unique Name: Noto Sans Oriya Bold; 20.0d1e2; 2024-07-05 + Designer: Monotype Design Team + Copyright: Copyright 2015 Google Inc. All Rights Reserved. + Trademark: Noto is a trademark of Google Inc. + Description: Data hinted. Designed by Monotype design team. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STHeiti Medium.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/STHeiti Medium.ttc + Typefaces: + STHeitiSC-Medium: + Full Name: Heiti SC Medium + Family: Heiti SC + Style: Средний + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti SC Medium; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti SC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STHeitiTC-Medium: + Full Name: Heiti TC Medium + Family: Heiti TC + Style: Средний + Version: 17.0d1e2 + Vendor: SinoType + Unique Name: Heiti TC Medium; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2000-2007, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STHeiti TC and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Heavy.otf + Typefaces: + SFProRounded-Heavy: + Full Name: SF Pro Rounded Heavy + Family: SF Pro Rounded + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + InaiMathi-MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/InaiMathi-MN.ttc + Typefaces: + InaiMathi-Bold: + Full Name: InaiMathi Bold + Family: InaiMathi + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: InaiMathi Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 Murasu Systems Sdn. Bhd. Malaysia. (c) 2000 Grow Momentum (S) Pte. Ltd. All rights reserved. + Trademark: InaiMathi is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + InaiMathi: + Full Name: InaiMathi + Family: InaiMathi + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: InaiMathi; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 1986 Murasu Systems Sdn. Bhd. Malaysia. (c) 2000 Grow Momentum (S) Pte. Ltd. All rights reserved. + Trademark: InaiMathi is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-Heavy.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-Heavy.otf + Typefaces: + SFCompactText-Heavy: + Full Name: SF Compact Text Heavy + Family: SF Compact Text + Style: Тяжелый + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Heavy; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W9.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W9.ttc + Typefaces: + HiraginoSans-W9: + Full Name: Hiragino Sans W9 + Family: Hiragino Sans + Style: W9 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W9; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.31, Copyright (c) 1993-2020 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W9: + Full Name: .Hiragino Kaku Gothic Interface W9 + Family: .Hiragino Kaku Gothic Interface + Style: W9 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W9; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.01, Copyright (c) 1993-2013 Dainippon Screen Mfg. Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMJua-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/5b2f5f0b003344b2c67ce463e76d2485bb43d054.asset/AssetData/BMJua-Regular.otf + Typefaces: + BMJUAOTF: + Full Name: BM JUA OTF + Family: BM Jua + Style: Обычный + Version: 18.0d1e6 + Vendor: Woowa Brothers Corp. + Unique Name: BM JUA OTF; 18.0d1e6; 2022-12-15 + Designer: BONGJIN KIM, JAEHYUN KEUM, JUHEE TAE + Copyright: Copyright © 2014, Woowa Brothers Corp.(www.woowahan.com) with Reserved Font Name "BM-JUA". + Trademark: BM-JUA is a registered trademark of Woowa Brothers Corp. + Description: WOOWA BROTHER Corporation_OTF + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PlantagenetCherokee.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/PlantagenetCherokee.ttf + Typefaces: + PlantagenetCherokee: + Full Name: Plantagenet Cherokee + Family: Plantagenet Cherokee + Style: Обычный + Version: 13.0d1e3 + Vendor: Tiro Typeworks + Unique Name: Plantagenet Cherokee; 13.0d1e3; 2017-06-14 + Designer: Ross Mills + Copyright: Copyright (c) Tiro Typeworks, 2002. All rights reserved. + Trademark: Plantagenet Cherokee is a trademark of Tiro Typeworks. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Apple Braille Outline 8 Dot.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Apple Braille Outline 8 Dot.ttf + Typefaces: + AppleBraille-Outline8Dot: + Full Name: Apple Braille Outline 8 Dot + Family: Apple Braille + Style: Outline 8 Dot + Version: 13.0d2e27 + Unique Name: Apple Braille Outline 8 Dot; 13.0d2e27; 2017-06-30 + Copyright: © Copyright 2007 by Apple, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Xingkai.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/aa99d0b2bad7f797f38b49d46cde28fd4b58876e.asset/AssetData/Xingkai.ttc + Typefaces: + STXingkaiSC-Bold: + Full Name: Xingkai SC Bold + Family: Xingkai SC + Style: Жирный + Version: 17.0d1e3 + Unique Name: Xingkai SC Bold; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiTC-Bold: + Full Name: Xingkai TC Bold + Family: Xingkai TC + Style: Жирный + Version: 17.0d1e3 + Unique Name: Xingkai TC Bold; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiTC-Light: + Full Name: Xingkai TC Light + Family: Xingkai TC + Style: Легкий + Version: 17.0d1e3 + Unique Name: Xingkai TC Light; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STXingkaiSC-Light: + Full Name: Xingkai SC Light + Family: Xingkai SC + Style: Легкий + Version: 17.0d1e3 + Unique Name: Xingkai SC Light; 17.0d1e3; 2021-06-23 + Copyright: © 2010-2015 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: SinoType is a trademark of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + MarkerFelt.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/MarkerFelt.ttc + Typefaces: + MarkerFelt-Thin: + Full Name: Marker Felt Thin + Family: Marker Felt + Style: Узкий тонкий + Version: 13.0d1e11 + Unique Name: Marker Felt Thin; 13.0d1e11; 2017-06-09 + Copyright: Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. + Trademark: Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MarkerFelt-Wide: + Full Name: Marker Felt Wide + Family: Marker Felt + Style: Широкий + Version: 13.0d1e11 + Unique Name: Marker Felt Wide; 13.0d1e11; 2017-06-09 + Copyright: Copyright (c) 1992, 1993, 2001, Pat Snyder, 62976 Ross Inlet, Coos Bay, OR 97420. All rights reserved. + Trademark: Marker Felt is a Trademark of Pat Snyder, which may be registered in certain jurisdictions. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-Regular.otf + Typefaces: + SFProText-Regular: + Full Name: SF Pro Text Regular + Family: SF Pro Text + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Sathu.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Sathu.ttf + Typefaces: + Sathu: + Full Name: Sathu + Family: Sathu + Style: Обычный + Version: 14.0d1e1 + Unique Name: Sathu; 14.0d1e1; 2017-11-02 + Copyright: © 1992-2003 Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Georgia Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Georgia Italic.ttf + Typefaces: + Georgia-Italic: + Full Name: Georgia Курсив + Family: Georgia + Style: Курсив + Version: Version 5.00x-4 + Vendor: Carter & Cone + Unique Name: Georgia Italic; Version 5.00x-4; 2011-10-24 + Designer: Matthew Carter + Copyright: © 2006 Microsoft Corporation. All Rights Reserved. + Trademark: Georgia is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Brush Script.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Brush Script.ttf + Typefaces: + BrushScriptMT: + Full Name: Brush Script MT Italic + Family: Brush Script MT + Style: Курсивный + Version: Version 1.52x-1 + Unique Name: Brush Script MT Italic; 8.0d1e1; 2011-11-13 + Copyright: Copyright © 1993 , Monotype Typography ltd. + Trademark: Brush Script is a Trademark of Monotype Typography ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Display-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Display-Semibold.otf + Typefaces: + SFProDisplay-Semibold: + Full Name: SF Pro Display Semibold + Family: SF Pro Display + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Display Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + AppleLiSung-Light.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/2ae839cbaa0ff60fe6a1d8921a77c81adcec0646.asset/AssetData/AppleLiSung-Light.ttf + Typefaces: + LiSungLight: + Full Name: Apple LiSung Light + Family: Apple LiSung + Style: Легкий + Version: 16.0d1e1 + Unique Name: Apple LiSung Light; 16.0d1e1; 2020-03-25 + Copyright: Apple Computer, Inc. 1992-1998 + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BalooBhaijaanUrdu-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/6638e0282d7dac3de23fd39162b3d78fffc9160b.asset/AssetData/BalooBhaijaanUrdu-Regular.ttf + Typefaces: + BalooBhaijaan-Regular: + Full Name: Baloo Bhaijaan Regular + Family: Baloo Bhaijaan + Style: Обычный + Version: 20.0d1e2 (1.443) + Vendor: Ek Type + Unique Name: Baloo Bhaijaan Regular; 20.0d1e2 (1.443); 2024-07-09 + Designer: Devika Bhansali and Ek Type + Copyright: Copyright (c) 2015 Ek Type (www.ektype.in) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + PCmyoungjo.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/c2cf5e684236b5395fd48d6ccf0e3b3191ce83a0.asset/AssetData/PCmyoungjo.ttf + Typefaces: + JCsmPC: + Full Name: PCMyungjo Regular + Family: PCMyungjo + Style: Обычный + Version: 13.0d2e1 + Unique Name: PCMyungjo Regular; 13.0d2e1; 2017-07-13 + Copyright: Copyright (c) 1994-2001 Apple Computer, Inc. All rights reserved. + Trademark: PCMyoungjo is a trademark of Apple Computer, Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Songti.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Songti.ttc + Typefaces: + STSongti-SC-Black: + Full Name: Songti SC Black + Family: Songti SC + Style: Черный + Version: 17.0d2e3 + Unique Name: Songti SC Black; 17.0d2e3; 2021-06-30 + Copyright: © 1991-1998, 2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Bold: + Full Name: Songti TC Bold + Family: Songti TC + Style: Жирный + Version: 17.0d2e3 + Unique Name: Songti TC Bold; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: Songti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Light: + Full Name: Songti SC Light + Family: Songti SC + Style: Легкий + Version: 17.0d2e3 + Unique Name: Songti SC Light; 17.0d2e3; 2021-06-30 + Copyright: © 1991-2001 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Bold: + Full Name: Songti SC Bold + Family: Songti SC + Style: Жирный + Version: 17.0d2e3 + Unique Name: Songti SC Bold; 17.0d2e3; 2021-06-30 + Copyright: © 2000-2005, 2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: Songti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Regular: + Full Name: Songti TC Regular + Family: Songti TC + Style: Обычный + Version: 17.0d2e3 + Unique Name: Songti TC Regular; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-TC-Light: + Full Name: Songti TC Light + Family: Songti TC + Style: Легкий + Version: 17.0d2e3 + Unique Name: Songti TC Light; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012, 2013 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSong: + Full Name: STSong + Family: STSong + Style: Обычный + Version: 17.0d2e3 + Unique Name: STSong; 17.0d2e3; 2021-06-30 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSong and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STSongti-SC-Regular: + Full Name: Songti SC Regular + Family: Songti SC + Style: Обычный + Version: 17.0d2e3 + Unique Name: Songti SC Regular; 17.0d2e3; 2021-06-30 + Copyright: © 2010-2012 Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STSongti and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Rounded-Regular.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Rounded-Regular.otf + Typefaces: + SFProRounded-Regular: + Full Name: SF Pro Rounded Regular + Family: SF Pro Rounded + Style: Обычный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Rounded Regular; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + OctoberCondensedDevanagari.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/bcc10b55c3b7418fc5920165ff7ae57b098762f0.asset/AssetData/OctoberCondensedDevanagari.ttc + Typefaces: + OctoberCondensedDL-ExtraLight: + Full Name: October Condensed Devanagari ExtraLight + Family: October Condensed Devanagari + Style: Сверхлегкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari ExtraLight; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Heavy: + Full Name: October Condensed Devanagari Heavy + Family: October Condensed Devanagari + Style: Тяжелый + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Heavy; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Bold: + Full Name: October Condensed Devanagari Bold + Family: October Condensed Devanagari + Style: Жирный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Bold; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Medium: + Full Name: October Condensed Devanagari Medium + Family: October Condensed Devanagari + Style: Средний + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Medium; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Light: + Full Name: October Condensed Devanagari Light + Family: October Condensed Devanagari + Style: Легкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Light; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Thin: + Full Name: October Condensed Devanagari Thin + Family: October Condensed Devanagari + Style: Тонкий + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Thin; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Regular: + Full Name: October Condensed Devanagari Regular + Family: October Condensed Devanagari + Style: Обычный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Regular; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Black: + Full Name: October Condensed Devanagari Black + Family: October Condensed Devanagari + Style: Черный + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Black; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + OctoberCondensedDL-Hairline: + Full Name: October Condensed Devanagari Hairline + Family: October Condensed Devanagari + Style: С соединительными штрихами + Version: 15.0d1e5 + Vendor: Typotheque + Unique Name: October Condensed Devanagari Hairline; 15.0d1e5; 2020-03-06 + Designer: Arya Purohit, Peter Bilak + Copyright: Copyright 2019 Typotheque. All rights reserved. + Trademark: October is a trademark of Typotheque. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Diwan Kufi.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Diwan Kufi.ttc + Typefaces: + DiwanKufi: + Full Name: Diwan Kufi Regular + Family: Diwan Kufi + Style: Обычный + Version: 13.0d2e1 + Unique Name: Diwan Kufi Regular; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .DiwanKufiPUA: + Full Name: .Diwan Kufi PUA + Family: .Diwan Kufi PUA + Style: Обычный + Version: 13.0d2e1 + Unique Name: .Diwan Kufi PUA; 13.0d2e1; 2017-06-27 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFCompact.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFCompact.ttf + Typefaces: + .SFCompact-Regular: + Full Name: .SF Compact + Family: .SF Compact + Style: Обычный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-RegularG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Regular G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Medium: + Full Name: .SF Compact + Family: .SF Compact + Style: Средний + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-MediumG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Medium G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Light: + Full Name: .SF Compact + Family: .SF Compact + Style: Легкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-LightG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Light G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Thin: + Full Name: .SF Compact + Family: .SF Compact + Style: Тонкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-ThinG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Thin G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Ultralight: + Full Name: .SF Compact + Family: .SF Compact + Style: Ультралегкий + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-UltralightG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Ultralight G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Semibold: + Full Name: .SF Compact + Family: .SF Compact + Style: Полужирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-SemiboldG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Semibold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Bold: + Full Name: .SF Compact + Family: .SF Compact + Style: Жирный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-BoldG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Bold G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Heavy: + Full Name: .SF Compact + Family: .SF Compact + Style: Тяжелый + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG1: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G1 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG2: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G2 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG3: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G3 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-HeavyG4: + Full Name: .SF Compact + Family: .SF Compact + Style: Heavy G4 + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFCompact-Black: + Full Name: .SF Compact + Family: .SF Compact + Style: Черный + Version: 19.0d8e2 + Vendor: Apple Inc. + Unique Name: .SF Compact Black; 19.0d8e2; 2023-07-17 + Designer: Apple Inc. + Copyright: © 2023 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ToppanBunkyuMidashiGothicStdN-ExtraBold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/938fc4f0524ec9f143f1b39a4e63ff9585298376.asset/AssetData/ToppanBunkyuMidashiGothicStdN-ExtraBold.otf + Typefaces: + ToppanBunkyuMidashiGothicStdN-ExtraBold: + Full Name: Toppan Bunkyu Midashi Gothic Extrabold + Family: Toppan Bunkyu Midashi Gothic + Style: Сверхжирный + Version: 17.0d1e1 + Vendor: Toppan Printing Co.,Ltd. + Unique Name: Toppan Bunkyu Midashi Gothic Extrabold; 17.0d1e1; 2021-07-21 + Designer: JIYUKOBO Ltd. + Copyright: ver1.00, Copyright © 2013 - 2016 Toppan Printing Co., Ltd. All rights reserved. + Trademark: "Bunkyu Tai" is a trademark of Toppan Printing Co.,Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Didot.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Didot.ttc + Typefaces: + Didot: + Full Name: Didot + Family: Didot + Style: Обычный + Version: 13.0d1e3 + Unique Name: Didot; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Didot-Italic: + Full Name: Didot Italic + Family: Didot + Style: Курсивный + Version: 13.0d1e3 + Unique Name: Didot Italic; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Didot-Bold: + Full Name: Didot Bold + Family: Didot + Style: Жирный + Version: 13.0d1e3 + Unique Name: Didot Bold; 13.0d1e3; 2017-06-30 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: "Linotype Didot" is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The Didot family were active as designers for about 100 years in the 18th and 19th centuries. They were printers, publishers, typeface designers, inventors and intellectuals. Around 1800 the Didot family owned the most important print shop and font foundry in France. Pierre Didot, the printer, published a document with the typefaces of his brother, Firmin Didot, the typeface designer. The strong clear forms of this alphabet display objective, rational characteristics and are representative of the time and philosophy of the Enlightenment. Adrian Frutiger's Didot is a sensitive interpretation of the French Modern Face Didot. Another model for this design is the Henriade, a historical printing of the original Didot from 1818. The font Didot gives text a classic and elegant feel. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Malayalam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Malayalam MN.ttc + Typefaces: + MalayalamMN-Bold: + Full Name: Malayalam MN Bold + Family: Malayalam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Malayalam MN Bold; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Malayalam MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + MalayalamMN: + Full Name: Malayalam MN + Family: Malayalam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Malayalam MN; 20.0d1e2; 2024-07-05 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Malayalam MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ヒラギノ角ゴシック W2.ttc: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ヒラギノ角ゴシック W2.ttc + Typefaces: + HiraginoSans-W2: + Full Name: Hiragino Sans W2 + Family: Hiragino Sans + Style: W2 + Version: 20.0d1e1 + Vendor: SCREEN Graphic Solutions Co., Ltd. + Unique Name: Hiragino Sans W2; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.26, Copyright (c) 1993-2019 SCREEN Graphic Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .HiraKakuInterface-W2: + Full Name: .Hiragino Kaku Gothic Interface W2 + Family: .Hiragino Kaku Gothic Interface + Style: W2 + Version: 20.0d1e1 + Vendor: SCREEN Graphic and Precision Solutions Co., Ltd. + Unique Name: .Hiragino Kaku Gothic Interface W2; 20.0d1e1; 2024-01-26 + Designer: JIYUKOBO Ltd. + Copyright: ver8.20, Copyright (c) 1993-2015 SCREEN Graphic and Precision Solutions Co., Ltd. All Rights Reserved. + Trademark: HIRAGINO is a trademark of SCREEN Holdings Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoText-Italic.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoText-Italic.ttf + Typefaces: + STIXTwoText-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_SemiBold-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Полужирный курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_Bold-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Жирный курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + STIXTwoText-Italic_Medium-Italic: + Full Name: STIX Two Text Italic + Family: STIX Two Text + Style: Средний курсивный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoText-Italic + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc. and Coen Hoffman, Elsevier (retired). + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + BMYeongSung-Regular.otf: + + Kind: PostScript + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/9bcdfd464af84ab30592d781f4a82f44f548239c.asset/AssetData/BMYeongSung-Regular.otf + Typefaces: + BMYEONSUNG-OTF: + Full Name: BM YEONSUNG OTF + Family: BM Yeonsung + Style: Обычный + Version: 14.0d1e3 + Vendor: Sandoll Communications Inc. + Unique Name: BM YEONSUNG OTF; 14.0d1e3; 2022-09-27 + Designer: Bongjin Kim; Myungsoo Han; Jaehyun Keum; Jihee Min; Dokyung Lee; Chorong Kim; Jooyeon Kang; Sang-a Kim; + Copyright: Copyright © 2016, WOOWA BROTHERS Corp. All right reserved. Font Designed by Sandoll Communications Inc. + Trademark: BMYEONSUNG-OTF is a registered trademark of WOOWA BROTHERS Corp. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SFGeorgian.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/SFGeorgian.ttf + Typefaces: + .SFGeorgian-Regular: + Full Name: .SF Georgian Обычный + Family: .SF Georgian + Style: Обычный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Medium: + Full Name: .SF Georgian Средний + Family: .SF Georgian + Style: Средний + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Light: + Full Name: .SF Georgian Легкий + Family: .SF Georgian + Style: Легкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Thin: + Full Name: .SF Georgian Тонкий + Family: .SF Georgian + Style: Тонкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Ultralight: + Full Name: .SF Georgian Ультралегкий + Family: .SF Georgian + Style: Ультралегкий + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Semibold: + Full Name: .SF Georgian Полужирный + Family: .SF Georgian + Style: Полужирный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Bold: + Full Name: .SF Georgian Жирный + Family: .SF Georgian + Style: Жирный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Heavy: + Full Name: .SF Georgian Тяжелый + Family: .SF Georgian + Style: Тяжелый + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .SFGeorgian-Black: + Full Name: .SF Georgian Черный + Family: .SF Georgian + Style: Черный + Version: 19.0d6e2 + Vendor: Apple Inc. + Unique Name: .SF Georgian; 19.0d6e2; 2023-07-25 + Designer: Apple Inc. + Copyright: Copyright © 2023 Apple Inc. All rights reserved. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Kannada MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Kannada MN.ttc + Typefaces: + KannadaMN: + Full Name: Kannada MN + Family: Kannada MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Kannada MN; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Kannada MN is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KannadaMN-Bold: + Full Name: Kannada MN Bold + Family: Kannada MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Murasu Systems Sdn. Bhd. Malaysia + Unique Name: Kannada MN Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Trademark: Kannada MN Bold is a trademark of Murasu Systems Sdn. Bhd. Malaysia. + Description: Copyright (c) 2003 by Murasu Systems Sdn. Bhd. Malaysia. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Farah.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Farah.ttc + Typefaces: + Farah: + Full Name: Farah Regular + Family: Farah + Style: Обычный + Version: 13.0d2e3 + Unique Name: Farah Regular; 13.0d2e3; 2017-07-12 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .FarahPUA: + Full Name: .Farah PUA + Family: .Farah PUA + Style: Обычный + Version: 13.0d2e3 + Unique Name: .Farah PUA; 13.0d2e3; 2017-07-12 + Copyright: © 2001 Diwan Software Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Optima.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Optima.ttc + Typefaces: + Optima-ExtraBlack: + Full Name: Optima ExtraBlack + Family: Optima + Style: Сверхжирный + Version: 13.0d1e2 + Unique Name: Optima ExtraBlack; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Bold: + Full Name: Optima Bold + Family: Optima + Style: Жирный + Version: 13.0d1e2 + Unique Name: Optima Bold; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Regular: + Full Name: Optima Regular + Family: Optima + Style: Обычный + Version: 13.0d1e2 + Unique Name: Optima Regular; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-BoldItalic: + Full Name: Optima Bold Italic + Family: Optima + Style: Жирный курсивный + Version: 13.0d1e2 + Unique Name: Optima Bold Italic; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Optima-Italic: + Full Name: Optima Italic + Family: Optima + Style: Курсивный + Version: 13.0d1e2 + Unique Name: Optima Italic; 13.0d1e2; 2017-06-15 + Copyright: Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. + +The digitally encoded machine readable software for producing the Typefaces licensed to you is now the property of Heidelberger Druckmaschinen AG and its licensors, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + +Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved. + Trademark: Optima is a trademark of Heidelberger Druckmaschinen AG, which may be registered in certain jurisdictions, exclusivly licensed through Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG. + Description: The digitally encoded machine readable software for producing the Typefaces licensed to you is copyrighted (c) 2000, Linotype Library GmbH or its affiliated Linotype-Hell companies. All rights reserved. This software is now the property of Heidelberger Druckmaschinen AG and its licensors and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Heidelberger Druckmaschinen AG. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Galvji.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Galvji.ttc + Typefaces: + Galvji: + Full Name: Galvji + Family: Galvji + Style: Обычный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-Oblique: + Full Name: Galvji Oblique + Family: Galvji + Style: Курсивный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Oblique; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Oblique is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-BoldOblique: + Full Name: Galvji-BoldOblique + Family: Galvji + Style: Жирный наклонный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Bold Oblique; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Bold Oblique is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + Galvji-Bold: + Full Name: Galvji-Bold + Family: Galvji + Style: Жирный + Version: 14.0d1e3 + Vendor: Apple Inc. and Michael Everson + Unique Name: Galvji Bold; 14.0d1e3; 2017-12-06 + Designer: Apple Inc. and Michael Everson + Copyright: Copyright (c) 2015 by Apple Inc. and Michael Everson. All rights reserved. + Trademark: Galvji Bold is a trademark of Apple Inc. and Michael Everson. + Description: Copyright (c) 2014-2015 by Apple Inc. and Michael Everson. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Gujarati Sangam MN.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Gujarati Sangam MN.ttc + Typefaces: + GujaratiSangamMN: + Full Name: Gujarati Sangam MN + Family: Gujarati Sangam MN + Style: Обычный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Gujarati Sangam MN; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Gujarati Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + GujaratiSangamMN-Bold: + Full Name: Gujarati Sangam MN Bold + Family: Gujarati Sangam MN + Style: Жирный + Version: 20.0d1e2 + Vendor: Muthu Nedumaran + Unique Name: Gujarati Sangam MN Bold; 20.0d1e2; 2024-07-08 + Designer: Muthu Nedumaran + Copyright: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Trademark: Gujarati Sangam MN is a trademark of Muthu Nedumaran. + Description: Copyright (c) 2009 by Muthu Nedumaran. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + JainiPurvaDevanagari-Regular.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/a7a9532a57d44b2c3548a8d88cad5d9f8ccc5d7b.asset/AssetData/JainiPurvaDevanagari-Regular.ttf + Typefaces: + JainiPurva: + Full Name: Jaini Purva + Family: Jaini Purva + Style: Обычный + Version: 20.0d1e2 (1.001) + Vendor: Ek Type + Unique Name: Jaini Purva; 20.0d1e2 (1.001); 2024-07-08 + Designer: Girish Dalvi, Maithili Shingre + Copyright: Copyright (c) 2016, Ek Type. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KufiStandardGK.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/KufiStandardGK.ttc + Typefaces: + KufiStandardGK: + Full Name: KufiStandardGK Regular + Family: KufiStandardGK + Style: Обычный + Version: 13.0d1e11 + Unique Name: KufiStandardGK Regular; 13.0d1e11; 2017-06-30 + Copyright: Kufi designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its +licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .KufiStandardGKPUA: + Full Name: .KufiStandardGK PUA + Family: .KufiStandardGK PUA + Style: Обычный + Version: 13.0d1e11 + Unique Name: .KufiStandardGK PUA; 13.0d1e11; 2017-06-30 + Copyright: Kufi designed by Diwan Software Ltd. Copyright Apple Computer, Inc. and its +licensors, 1992-1998 all rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + KoHo.ttc: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/0499ae595c88f1d29b5ef4bbd230e24be76e06d3.asset/AssetData/KoHo.ttc + Typefaces: + KoHo-BoldItalic: + Full Name: KoHo Bold Italic + Family: KoHo + Style: Жирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-BoldItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-ExtraLight: + Full Name: KoHo ExtraLight + Family: KoHo + Style: Сверхлегкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-ExtraLight + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-ExtraLightItalic: + Full Name: KoHo ExtraLight Italic + Family: KoHo + Style: Сверхлегкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-ExtraLightItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-MediumItalic: + Full Name: KoHo Medium Italic + Family: KoHo + Style: Средний курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-MediumItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-SemiBold: + Full Name: KoHo SemiBold + Family: KoHo + Style: Полужирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-SemiBold + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Light: + Full Name: KoHo Light + Family: KoHo + Style: Легкий + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Light + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-LightItalic: + Full Name: KoHo Light Italic + Family: KoHo + Style: Легкий курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-LightItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Medium: + Full Name: KoHo Medium + Family: KoHo + Style: Средний + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Medium + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-SemiBoldItalic: + Full Name: KoHo SemiBold Italic + Family: KoHo + Style: Полужирный курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-SemiBoldItalic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Bold: + Full Name: KoHo Bold + Family: KoHo + Style: Жирный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Bold + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Regular: + Full Name: KoHo Regular + Family: KoHo + Style: Обычный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Regular + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + KoHo-Italic: + Full Name: KoHo Italic + Family: KoHo + Style: Курсивный + Version: Version 1.000 + Vendor: Cadson Demak Co.,Ltd. + Unique Name: 1.000;CDK ;KoHo-Italic + Designer: Cadson Demak & Katatrad Team + Copyright: Copyright 2018 The KoHo Project Authors (https://github.com/cadsondemak/Koho) + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Display-Semibold.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Display-Semibold.otf + Typefaces: + SFCompactDisplay-Semibold: + Full Name: SF Compact Display Semibold + Family: SF Compact Display + Style: Полужирный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Display Semibold; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STIXTwoMath.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/STIXTwoMath.otf + Typefaces: + STIXTwoMath-Regular: + Full Name: STIX Two Math Regular + Family: STIX Two Math + Style: Обычный + Version: Version 2.13 b171 + Vendor: Tiro Typeworks Ltd + Unique Name: 2.13 b171;STIX;STIXTwoMath-Regular + Designer: Ross Mills, John Hudson & Paul Hanslow, Tiro Typeworks Ltd; with prior portions MicroPress Inc., and Coen Hoffman. Math alphanumeric sans derived from Source Sans, designed by Paul Hunt. + Copyright: Copyright 2001-2021 The STIX Fonts Project Authors (https://github.com/stipub/stixfonts) + Trademark: STIX Fonts and STIX Two are trademarks of The Institute of Electrical and Electronics Engineers, Inc. + Description: The Scientific and Technical Information eXchange (STIX) fonts are intended to satisfy the demanding needs of authors, publishers, printers, and others working in the scientific, medical, and technical fields. They combine a comprehensive Unicode-based collection of mathematical symbols and alphabets with a set of text faces suitable for professional publishing. The fonts are available royalty-free under the SIL Open Font License. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + ZitherIndia.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/ZitherIndia.otf + Typefaces: + .ZitherIndia-Regular: + Full Name: .Zither India Обычный + Family: .Zither India + Style: Обычный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Medium: + Full Name: .Zither India Средний + Family: .Zither India + Style: Средний + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Light: + Full Name: .Zither India Легкий + Family: .Zither India + Style: Легкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Thin: + Full Name: .Zither India Тонкий + Family: .Zither India + Style: Тонкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Ultralight: + Full Name: .Zither India Ультралегкий + Family: .Zither India + Style: Ультралегкий + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Semibold: + Full Name: .Zither India Полужирный + Family: .Zither India + Style: Полужирный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Bold: + Full Name: .Zither India Жирный + Family: .Zither India + Style: Жирный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Heavy: + Full Name: .Zither India Тяжелый + Family: .Zither India + Style: Тяжелый + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + .ZitherIndia-Black: + Full Name: .Zither India Черный + Family: .Zither India + Style: Черный + Version: 20.4d9e1 + Vendor: Typotheque + Unique Name: .Zither India Regular; 20.4d9e1; 2025-02-24 + Designer: Latin: Peter Biľak, Greek: Kostas Bartsokas, Devanagari: હિતેશ માલવિયા (Hitesh Malaviya), પરિમલ પરમાર (Parimal Parmar), Bangla: Neelakash Kshetrimayum, Gurmukhi: ਸ਼ੁਚਿਤਾ ਗ੍ਰੋਵਰ (Shuchita Grover), Gujarati: શૈલી પટેલ (Shaily Patel), Odia: યેશા ગોશર (Yesha Goshar), Telugu: Shashi Guduru, Kannada: Ramakrishna Manda (రామకృష్ణ మండ / ರಾಮಕೃಷ್ಣ ಮಂಡ), Sinhala: පැතුම් එගොඩවත්ත (Pathum Egodawatta), කෝසල සෙනෙවිරත්න (Kosala Senevirathne), Ol Chiki: ᱠᱤᱭᱟ ᱵᱟᱞᱟᱢᱪᱩ (Kiya Balamchu), Meetei: Kevin King + Copyright: Copyright 2025 Typotheque. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Pro-Text-BoldItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Pro-Text-BoldItalic.otf + Typefaces: + SFProText-BoldItalic: + Full Name: SF Pro Text Bold Italic + Family: SF Pro Text + Style: Жирный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Pro Text Bold Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + SF-Compact-Text-BlackItalic.otf: + + Kind: OpenType + Valid: Yes + Enabled: Yes + Location: /Users/main/Library/Fonts/SF-Compact-Text-BlackItalic.otf + Typefaces: + SFCompactText-BlackItalic: + Full Name: SF Compact Text Black Italic + Family: SF Compact Text + Style: Черный курсивный + Version: Version 20.0d10e1 + Vendor: Apple Inc. + Unique Name: SF Compact Text Black Italic; 20.0d10e1; 2024-07-18 + Designer: Apple Inc. + Copyright: © 2015-2024 Apple Inc. All rights reserved. + Trademark: San Francisco is a trademark of Apple Inc. + Description: Apple Inc. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Arial Bold.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Arial Bold.ttf + Typefaces: + Arial-BoldMT: + Full Name: Arial Полужирный + Family: Arial + Style: Полужирный + Version: Version 5.01.2x + Vendor: The Monotype Corporation + Unique Name: Monotype:Arial Bold:Version 5.01 (Microsoft) + Designer: Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982 + Copyright: © 2006 The Monotype Corporation. All Rights Reserved. + Trademark: Arial is a trademark of The Monotype Corporation in the United States and/or other countries. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + Ayuthaya.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/Fonts/Supplemental/Ayuthaya.ttf + Typefaces: + Ayuthaya: + Full Name: Ayuthaya + Family: Ayuthaya + Style: Обычный + Version: 13.0d1e7 + Unique Name: Ayuthaya; 13.0d1e7; 2017-06-12 + Copyright: Copyright © 1992-2011 by Apple Inc. All rights reserved. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + + STXIHEI.ttf: + + Kind: TrueType + Valid: Yes + Enabled: Yes + Location: /System/Library/AssetsV2/com_apple_MobileAsset_Font7/f0706a236683628e16427c6569e441423faaaa93.asset/AssetData/STXIHEI.ttf + Typefaces: + STXihei: + Full Name: STXihei + Family: STHeiti + Style: Светлый + Version: 17.0d1e2 + Unique Name: STXihei; 17.0d1e2; 2021-06-23 + Copyright: Copyright (c) 2002, Changzhou SinoType Technology Co., Ltd. All rights reserved. + Trademark: STXihei and SinoType are trademarks of Changzhou SinoType Technology Co., Ltd. + Outline: Yes + Valid: Yes + Enabled: Yes + Duplicate: No + Copy Protected: No + Embeddable: Yes + +Frameworks: + + JavaRuntimeSupport: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaRuntimeSupport.framework + Private: No + + MetricKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetricKit.framework + Private: No + + Network: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Network.framework + Private: No + + ContactProvider: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ContactProvider.framework + Private: No + + IOBluetoothUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOBluetoothUI.framework + Private: No + + GameKit: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameKit.framework + Private: No + + SecurityInterface: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityInterface.framework + Private: No + + DiscRecording: + + Version: 9.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiscRecording.framework + Private: No + + CreateML: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CreateML.framework + Private: No + + Speech: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Speech.framework + Private: No + + FSKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FSKit.framework + Private: No + + _LocalAuthentication_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_LocalAuthentication_SwiftUI.framework + Private: No + + Automator: + + Version: 2.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Automator.framework + Private: No + + _SpriteKit_SwiftUI: + + Version: 51.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SpriteKit_SwiftUI.framework + Private: No + + _StoreKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_StoreKit_SwiftUI.framework + Private: No + + SafariServices: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SafariServices.framework + Private: No + + ExceptionHandling: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExceptionHandling.framework + Private: No + + Metal: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Metal.framework + Private: No + + ServiceExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceExtensions.framework + Private: No + + QuartzCore: + + Version: 1.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QuartzCore.framework + Private: No + + CoreGraphics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreGraphics.framework + Private: No + + IOBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: kBluetoothCFBundleGetInfoString + Location: /System/Library/Frameworks/IOBluetooth.framework + Private: No + + StoreKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StoreKit.framework + Private: No + + Ruby: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Ruby Runtime and Library + Location: /System/Library/Frameworks/Ruby.framework + Private: No + + GSS: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GSS.framework + Private: No + + JavaNativeFoundation: + + Version: 86 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaNativeFoundation.framework + Private: No + + OpenGL: + + Version: 21.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenGL 21.1.1.0.0 + Location: /System/Library/Frameworks/OpenGL.framework + Private: No + + CoreML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreML.framework + Private: No + + FinanceKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinanceKitUI.framework + Private: No + + FinderSync: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinderSync.framework + Private: No + + Quartz: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework + Private: No + + QuartzComposer: + + Version: 5.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework + Private: No + + QuartzFilters: + + Version: 1.10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzFilters.framework + Private: No + + PDFKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework + Private: No + + QuickLookUI: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework + Private: No + + ImageKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Quartz.framework/Frameworks/ImageKit.framework + Private: No + + UserNotificationsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UserNotificationsUI.framework + Private: No + + TWAIN: + + Version: 1.9.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.9.5, © Copyright 2001-2008, TWAIN Working Group + Location: /System/Library/Frameworks/TWAIN.framework + Private: No + + CoreMediaIO: + + Version: 1000.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMediaIO.framework + Private: No + + Symbols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Symbols.framework + Private: No + + MetalPerformanceShaders: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework + Private: No + + MPSFunctions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework + Private: No + + MPSRayIntersector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework + Private: No + + MPSNeuralNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework + Private: No + + MPSBenchmarkLoop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSBenchmarkLoop.framework + Private: No + + MPSNDArray: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework + Private: No + + MPSCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework + Private: No + + MPSImage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework + Private: No + + MPSMatrix: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework + Private: No + + AutomaticAssessmentConfiguration: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/AutomaticAssessmentConfiguration.framework + Private: No + + ExternalAccessory: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExternalAccessory.framework + Private: No + + _AVKit_SwiftUI: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AVKit_SwiftUI.framework + Private: No + + ScreenSaver: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenSaver.framework + Private: No + + _SceneKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SceneKit_SwiftUI.framework + Private: No + + LightweightCodeRequirements: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LightweightCodeRequirements.framework + Private: No + + PCSC: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PCSC.framework + Private: No + + PreferencePanes: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PreferencePanes.framework + Private: No + + MediaPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaPlayer.framework + Private: No + + LinkPresentation: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LinkPresentation.framework + Private: No + + ServiceExtensionsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceExtensionsCore.framework + Private: No + + MediaExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaExtension.framework + Private: No + + NetFS: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NetFS.framework + Private: No + + MediaToolbox: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaToolbox.framework + Private: No + + SyncServices: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: © 2003-2004 Apple + Location: /System/Library/Frameworks/SyncServices.framework + Private: No + + System: + + Version: 11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/System.framework + Private: No + + ForceFeedback: + + Version: 1.0.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0.6, Copyright © 2000-2012 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/ForceFeedback.framework + Private: No + + MetalFX: + + Version: 29.7.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalFX.framework + Private: No + + OSAKit: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OSAKit.framework + Private: No + + CryptoKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CryptoKit.framework + Private: No + + ServiceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ServiceManagement.framework + Private: No + + ScreenTime: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenTime.framework + Private: No + + MLCompute: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MLCompute.framework + Private: No + + NaturalLanguage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NaturalLanguage.framework + Private: No + + CoreVideo: + + Version: 1.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreVideo.framework + Private: No + + _PhotosUI_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_PhotosUI_SwiftUI.framework + Private: No + + VideoDecodeAcceleration: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoDecodeAcceleration.framework + Private: No + + CoreHID: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreHID.framework + Private: No + + SensitiveContentAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SensitiveContentAnalysis.framework + Private: No + + ScriptingBridge: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScriptingBridge.framework + Private: No + + MetalKit: + + Version: 168.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalKit.framework + Private: No + + ApplicationServices: + + Version: 48 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework + Private: No + + CoreGraphics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework + Private: No + + ATS: + + Version: 377 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework + Private: No + + CoreText: + + Version: 844.4.0.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework + Private: No + + ImageIO: + + Version: 3.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.3.0 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework + Private: No + + ColorSync: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework + Private: No + + ATSUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATSUI.framework + Private: No + + SpeechSynthesis: + + Version: 9.2.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework + Private: No + + ColorSyncLegacy: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSyncLegacy.framework + Private: No + + HIServices: + + Version: 1.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework + Private: No + + PrintCore: + + Version: 19 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework + Private: No + + QD: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework + Private: No + + DockKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DockKit.framework + Private: No + + _Intents_TipKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_Intents_TipKit.framework + Private: No + + OSLog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OSLog.framework + Private: No + + AGL: + + Version: 3.3.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenGL Carbon compatibility dylib for Mac OS X + Location: /System/Library/Frameworks/AGL.framework + Private: No + + PDFKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PDFKit.framework + Private: No + + CoreText: + + Version: 844.4.0.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreText.framework + Private: No + + UniformTypeIdentifiers: + + Version: 709 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UniformTypeIdentifiers.framework + Private: No + + SwiftData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftData.framework + Private: No + + vmnet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/vmnet.framework + Private: No + + Cocoa: + + Version: 6.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Cocoa.framework + Private: No + + IOKit: + + Version: 2.0.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: I/O Kit Framework, Apple Computer Inc + Location: /System/Library/Frameworks/IOKit.framework + Private: No + + ManagedSettings: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ManagedSettings.framework + Private: No + + AVFoundation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFoundation.framework + Private: No + + AVFAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework + Private: No + + DiscRecordingUI: + + Version: 9.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiscRecordingUI.framework + Private: No + + ParavirtualizedGraphics: + + Version: 40.5.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ParavirtualizedGraphics.framework + Private: No + + Accelerate: + + Version: 1.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: vImage, DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/Accelerate.framework + Private: No + + vImage: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework + Private: No + + vecLib: + + Version: 3.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework + Private: No + + DeviceCheck: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceCheck.framework + Private: No + + _PassKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_PassKit_SwiftUI.framework + Private: No + + MailKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MailKit.framework + Private: No + + ImageIO: + + Version: 3.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.3.0 + Location: /System/Library/Frameworks/ImageIO.framework + Private: No + + BackgroundTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BackgroundTasks.framework + Private: No + + FamilyControls: + + Version: 1204.4.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FamilyControls.framework + Private: No + + AppleScriptKit: + + Version: 1.5.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppleScriptKit.framework + Private: No + + Carbon: + + Version: 160 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework + Private: No + + Ink: + + Version: 10.15 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/Ink.framework + Private: No + + OpenScripting: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Supplies support for scripting languages + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/OpenScripting.framework + Private: No + + SecurityHI: + + Version: 9.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/SecurityHI.framework + Private: No + + SpeechRecognition: + + Version: 6.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 6.0.4 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/SpeechRecognition.framework + Private: No + + ImageCapture: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/ImageCapture.framework + Private: No + + CommonPanels: + + Version: 1.2.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: CommonPanels version 1.2.4, Copyright 2000-2006, Apple Computer Inc. + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/CommonPanels.framework + Private: No + + Help: + + Version: 1.3.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Copyright 2000-2017, Apple Computer, Inc. + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/Help.framework + Private: No + + HIToolbox: + + Version: 2.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework + Private: No + + CoreBluetooth: + + Version: 184.42.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreBluetooth.framework + Private: No + + ThreadNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ThreadNetwork.framework + Private: No + + SensorKit: + + Version: 860.0.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SensorKit.framework + Private: No + + _RealityKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_RealityKit_SwiftUI.framework + Private: No + + DriverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DriverKit.framework + Private: No + + vecLib: + + Version: 3.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSP, BLAS, LAPACK, Vector Math, and Large Number Library + Location: /System/Library/Frameworks/vecLib.framework + Private: No + + Security: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Security.framework + Private: No + + _QuickLook_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_QuickLook_SwiftUI.framework + Private: No + + Contacts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Contacts.framework + Private: No + + CLLogEntry: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CLLogEntry.framework + Private: No + + _SwiftData_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SwiftData_SwiftUI.framework + Private: No + + ExtensionFoundation: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExtensionFoundation.framework + Private: No + + RealityKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/RealityKit.framework + Private: No + + _GroupActivities_AppKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_GroupActivities_AppKit.framework + Private: No + + StickerFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StickerFoundation.framework + Private: No + + PhotosUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PhotosUI.framework + Private: No + + ImagePlayground: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ImagePlayground.framework + Private: No + + ReplayKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ReplayKit.framework + Private: No + + Virtualization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Virtualization.framework + Private: No + + QuickLookUI: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/QuickLookUI.framework + Private: No + + IOSurface: + + Version: 372.5.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOSurface.framework + Private: No + + _MusicKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_MusicKit_SwiftUI.framework + Private: No + + MediaLibrary: + + Version: 1.11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaLibrary.framework + Private: No + + SpriteKit: + + Version: 51.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SpriteKit.framework + Private: No + + IntentsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IntentsUI.framework + Private: No + + QuickLookThumbnailing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QuickLookThumbnailing.framework + Private: No + + CoreMedia: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMedia.framework + Private: No + + BusinessChat: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BusinessChat.framework + Private: No + + OpenDirectory: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenDirectory.framework + Private: No + + CFOpenDirectory: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenDirectory.framework/Frameworks/CFOpenDirectory.framework + Private: No + + Intents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Intents.framework + Private: No + + DirectoryService: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DirectoryService.framework + Private: No + + _WorkoutKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_WorkoutKit_SwiftUI.framework + Private: No + + ColorSync: + + Version: 4.13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ColorSync.framework + Private: No + + JavaVM: + + Version: 15.0.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework + Private: No + + JavaRuntimeSupport: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework + Private: No + + JavaNativeFoundation: + + Version: 86 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaNativeFoundation.framework + Private: No + + AppleScriptObjC: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppleScriptObjC.framework + Private: No + + VideoSubscriberAccount: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoSubscriberAccount.framework + Private: No + + CoreWLAN: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 16.0, Copyright © 2009–2019 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/CoreWLAN.framework + Private: No + + AccessorySetupKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AccessorySetupKit.framework + Private: No + + PencilKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PencilKit.framework + Private: No + + FinanceKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FinanceKit.framework + Private: No + + CoreServices: + + Version: 1226 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework + Private: No + + SearchKit: + + Version: 1.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/SearchKit.framework + Private: No + + OSServices: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OS Services Framework + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework + Private: No + + Metadata: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework + Private: No + + AE: + + Version: 944 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/AE.framework + Private: No + + LaunchServices: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 10.6, Copyright © 2000-2007 Apple Inc., All Rights Reserved + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework + Private: No + + SharedFileList: + + Version: 225 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/SharedFileList.framework + Private: No + + DictionaryServices: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/DictionaryServices.framework + Private: No + + FSEvents: + + Version: 1400.100.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework + Private: No + + CarbonCore: + + Version: 1333 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework + Private: No + + HealthKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/HealthKit.framework + Private: No + + MultipeerConnectivity: + + Version: 179.600.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MultipeerConnectivity.framework + Private: No + + BackgroundAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BackgroundAssets.framework + Private: No + + _ManagedAppDistribution_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_ManagedAppDistribution_SwiftUI.framework + Private: No + + Tk: + + Version: 8.5.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Tk AQUA 8.5.9, +Copyright © 1989-2025 Tcl Core Team, +Copyright © 2002-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + Location: /System/Library/Frameworks/Tk.framework + Private: No + + WebKit: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc. + Location: /System/Library/Frameworks/WebKit.framework + Private: No + + WebCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1997 Martin Jones ; Copyright 1998, 1999 Torben Weis ; Copyright 1998, 1999, 2002 Waldo Bastian ; Copyright 1998-2000 Lars Knoll ; Copyright 1999, 2001 Antti Koivisto ; Copyright 1999-2001 Harri Porten ; Copyright 2000 Simon Hausmann ; Copyright 2000, 2001 Dirk Mueller ; Copyright 2000, 2001 Peter Kelly ; Copyright 2000 Daniel Molkentin ; Copyright 2000 Stefan Schimanski ; Copyright 1998-2000 Netscape Communications Corporation; Copyright 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper; Copyright 2001, 2002 Expat maintainers. + Location: /System/Library/Frameworks/WebKit.framework/Frameworks/WebCore.framework + Private: No + + WebKitLegacy: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc. + Location: /System/Library/Frameworks/WebKit.framework/Frameworks/WebKitLegacy.framework + Private: No + + NotificationCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NotificationCenter.framework + Private: No + + SystemConfiguration: + + Version: 1.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1,21 + Location: /System/Library/Frameworks/SystemConfiguration.framework + Private: No + + GameController: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameController.framework + Private: No + + CoreTelephony: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreTelephony.framework + Private: No + + OpenCL: + + Version: 5.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.5, Copyright 2008-2023 Apple Inc. + Location: /System/Library/Frameworks/OpenCL.framework + Private: No + + AVFAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVFAudio.framework + Private: No + + CoreDisplay: + + Version: 288 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreDisplay.framework + Private: No + + SwiftUICore: + + Version: 6.4.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftUICore.framework + Private: No + + AudioUnit: + + Version: 1.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AudioUnit.framework + Private: No + + FileProvider: + + Version: 2882.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FileProvider.framework + Private: No + + DeviceActivity: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceActivity.framework + Private: No + + Social: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Social.framework + Private: No + + AppKit: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppKit.framework + Private: No + + IdentityLookup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IdentityLookup.framework + Private: No + + Matter: + + Version: 1.4.0.40 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Matter.framework + Private: No + + CoreImage: + + Version: 19.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreImage.framework + Private: No + + CoreAudio: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreAudio.framework + Private: No + + SecurityUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityUI.framework + Private: No + + ExecutionPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExecutionPolicy.framework + Private: No + + Cinematic: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Cinematic.framework + Private: No + + MusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MusicKit.framework + Private: No + + DeviceDiscoveryExtension: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeviceDiscoveryExtension.framework + Private: No + + Hypervisor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Hypervisor.framework + Private: No + + ICADevices: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ICADevices.framework + Private: No + + Kernel: + + Version: 24.4.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/Kernel.framework + Private: No + + CoreAudioKit: + + Version: 1.6.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreAudioKit.framework + Private: No + + LDAP: + + Version: 2.4.28 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: OpenLDAP framework v2.4.28 + Location: /System/Library/Frameworks/LDAP.framework + Private: No + + ClassKit: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ClassKit.framework + Private: No + + DVDPlayback: + + Version: 5.9.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DVDPlayback Framework + Location: /System/Library/Frameworks/DVDPlayback.framework + Private: No + + VisionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VisionKit.framework + Private: No + + SwiftUI: + + Version: 6.4.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SwiftUI.framework + Private: No + + Combine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Combine.framework + Private: No + + ModelIO: + + Version: 266.1.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ModelIO.framework + Private: No + + _DeviceActivity_SwiftUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_DeviceActivity_SwiftUI.framework + Private: No + + PHASE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PHASE.framework + Private: No + + SharedWithYou: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SharedWithYou.framework + Private: No + + SecurityFoundation: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecurityFoundation.framework + Private: No + + GLUT: + + Version: 3.6.26 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 3.6.26, Copyright © 2001-2023 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/GLUT.framework + Private: No + + CalendarStore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CalendarStore.framework + Private: No + + MetalPerformanceShadersGraph: + + Version: 5.4.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MetalPerformanceShadersGraph.framework + Private: No + + CreateMLComponents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CreateMLComponents.framework + Private: No + + Collaboration: + + Version: 84 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Collaboration.framework + Private: No + + Message: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Message.framework + Private: No + + AudioVideoBridging: + + Version: 1320.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: AudioVideoBridging 1320.3, Copyright © 2010-2024 Apple Inc. All rights reserved. + Location: /System/Library/Frameworks/AudioVideoBridging.framework + Private: No + + Accounts: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accounts.framework + Private: No + + _AuthenticationServices_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AuthenticationServices_SwiftUI.framework + Private: No + + ScreenCaptureKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ScreenCaptureKit.framework + Private: No + + FileProviderUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/FileProviderUI.framework + Private: No + + ShazamKit: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ShazamKit.framework + Private: No + + CarKey: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CarKey.framework + Private: No + + RealityFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/RealityFoundation.framework + Private: No + + ProximityReaderStub: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ProximityReaderStub.framework + Private: No + + _MapKit_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_MapKit_SwiftUI.framework + Private: No + + QuickLook: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/Frameworks/QuickLook.framework + Private: No + + _SwiftData_CoreData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_SwiftData_CoreData.framework + Private: No + + AppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppIntents.framework + Private: No + + AuthenticationServices: + + Version: 12.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AuthenticationServices.framework + Private: No + + KernelManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/KernelManagement.framework + Private: No + + _AppIntents_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AppIntents_SwiftUI.framework + Private: No + + _CoreData_CloudKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_CoreData_CloudKit.framework + Private: No + + WeatherKit: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WeatherKit.framework + Private: No + + DataDetection: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DataDetection.framework + Private: No + + AudioToolbox: + + Version: 1.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AudioToolbox.framework + Private: No + + SystemExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SystemExtensions.framework + Private: No + + Kerberos: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Kerberos.framework + Private: No + + NearbyInteraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NearbyInteraction.framework + Private: No + + _AppIntents_AppKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_AppIntents_AppKit.framework + Private: No + + ContactsUI: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ContactsUI.framework + Private: No + + CoreSpotlight: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreSpotlight.framework + Private: No + + Tcl: + + Version: 8.5.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Tcl 8.5.9, +Copyright © 1987-2025 Tcl Core Team, +Copyright © 2001-2025 Daniel A. Steffen, +Copyright © 2001-2009 Apple Inc., +Copyright © 2001-2002 Jim Ingham & Ian Reid + Location: /System/Library/Frameworks/Tcl.framework + Private: No + + LocalAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LocalAuthentication.framework + Private: No + + MatterSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MatterSupport.framework + Private: No + + Foundation: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Foundation.framework + Private: No + + AdSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AdSupport.framework + Private: No + + LocalAuthenticationEmbeddedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LocalAuthenticationEmbeddedUI.framework + Private: No + + InstallerPlugins: + + Version: 6.2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InstallerPlugins.framework + Private: No + + Accessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Accessibility.framework + Private: No + + PushKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PushKit.framework + Private: No + + Vision: + + Version: 8.0.76 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Vision.framework + Private: No + + CoreAudioTypes: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/Frameworks/CoreAudioTypes.framework + Private: No + + SecureConfigDB: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SecureConfigDB.framework + Private: No + + NetworkExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/NetworkExtension.framework + Private: No + + ExtensionKit: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ExtensionKit.framework + Private: No + + OpenAL: + + Version: 1.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/OpenAL.framework + Private: No + + EventKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/EventKit.framework + Private: No + + MediaAccessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MediaAccessibility.framework + Private: No + + Charts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Charts.framework + Private: No + + QTKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/QTKit.framework + Private: No + + MapKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/MapKit.framework + Private: No + + AppTrackingTransparency: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AppTrackingTransparency.framework + Private: No + + CoreHaptics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreHaptics.framework + Private: No + + CallKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CallKit.framework + Private: No + + CoreFoundation: + + Version: 6.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreFoundation.framework + Private: No + + TabularData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/TabularData.framework + Private: No + + CoreMotion: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMotion.framework + Private: No + + AVRouting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVRouting.framework + Private: No + + StickerKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/StickerKit.framework + Private: No + + WidgetKit: + + Version: 537.5.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WidgetKit.framework + Private: No + + AVKit: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AVKit.framework + Private: No + + AddressBook: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AddressBook.framework + Private: No + + SoundAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SoundAnalysis.framework + Private: No + + CoreMIDIServer: + + Version: 1.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMIDIServer.framework + Private: No + + GroupActivities: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GroupActivities.framework + Private: No + + CoreLocation: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreLocation.framework + Private: No + + CloudKit: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CloudKit.framework + Private: No + + IOUSBHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/IOUSBHost.framework + Private: No + + LatentSemanticMapping: + + Version: 2.12.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/LatentSemanticMapping.framework + Private: No + + SharedWithYouCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SharedWithYouCore.framework + Private: No + + CFNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CFNetwork.framework + Private: No + + BrowserEngineCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BrowserEngineCore.framework + Private: No + + Photos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Photos.framework + Private: No + + JavaScriptCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1999-2001 Harri Porten ; Copyright 2001 Peter Kelly ; Copyright 1997-2005 University of Cambridge; Copyright 1991, 2000, 2001 by Lucent Technologies. + Location: /System/Library/Frameworks/JavaScriptCore.framework + Private: No + + GameplayKit: + + Version: 100.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GameplayKit.framework + Private: No + + DiskArbitration: + + Version: 2.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DiskArbitration.framework + Private: No + + WorkoutKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/WorkoutKit.framework + Private: No + + BrowserEngineKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/BrowserEngineKit.framework + Private: No + + InstantMessage: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InstantMessage.framework + Private: No + + PushToTalk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PushToTalk.framework + Private: No + + CoreMIDI: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreMIDI.framework + Private: No + + InputMethodKit: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/InputMethodKit.framework + Private: No + + PassKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/PassKit.framework + Private: No + + ImageCaptureCore: + + Version: 1936.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ImageCaptureCore.framework + Private: No + + _Translation_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/_Translation_SwiftUI.framework + Private: No + + TipKit: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/TipKit.framework + Private: No + + CoreData: + + Version: 120 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreData.framework + Private: No + + GLKit: + + Version: 129 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/GLKit.framework + Private: No + + AdServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/AdServices.framework + Private: No + + CryptoTokenKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CryptoTokenKit.framework + Private: No + + VideoToolbox: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/VideoToolbox.framework + Private: No + + SafetyKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SafetyKit.framework + Private: No + + Translation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/Translation.framework + Private: No + + UserNotifications: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/UserNotifications.framework + Private: No + + ManagedAppDistribution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/ManagedAppDistribution.framework + Private: No + + DeveloperToolsSupport: + + Version: 22.10.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/DeveloperToolsSupport.framework + Private: No + + iTunesLibrary: + + Version: 13.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/iTunesLibrary.framework + Private: No + + CoreTransferable: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/CoreTransferable.framework + Private: No + + SceneKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/Frameworks/SceneKit.framework + Private: No + + TextToSpeechVoiceBankingSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingSupport.framework + Private: Yes + + SecureVoiceTriggerAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureVoiceTriggerAssets.framework + Private: Yes + + CrisisResources: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CrisisResources.framework + Private: Yes + + IMTranscoding: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTranscoding.framework + Private: Yes + + MediaAnalysisAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisAccess.framework + Private: Yes + + ServerInformation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServerInformation.framework + Private: Yes + + CoreMLTestFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMLTestFramework.framework + Private: Yes + + Spotlight: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Spotlight.framework + Private: Yes + + SafariCore: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariCore.framework + Private: Yes + + CopresenceCore: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CopresenceCore.framework + Private: Yes + + SpotlightUIShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightUIShared.framework + Private: Yes + + SetupAssistantSupportUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantSupportUI.framework + Private: Yes + + SportsKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SportsKit.framework + Private: Yes + + TranslationUIServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationUIServices.framework + Private: Yes + + AppSSOKerberos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOKerberos.framework + Private: Yes + + IntelligenceFlowPlannerRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowPlannerRuntime.framework + Private: Yes + + GESS: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GESS.framework + Private: Yes + + VFX: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VFX.framework + Private: Yes + + SwiftCertificate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftCertificate.framework + Private: Yes + + Network: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Network.framework + Private: Yes + + SiriUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUtilities.framework + Private: Yes + + InertiaCam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InertiaCam.framework + Private: Yes + + MessagesCloudSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesCloudSync.framework + Private: Yes + + ConfigurationEngineModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework + Private: Yes + + FaceTimeDockSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeDockSupport.framework + Private: Yes + + HomeAutomationInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAutomationInternal.framework + Private: Yes + + ISPExclaveKitServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ISPExclaveKitServices.framework + Private: Yes + + CoreMaterial: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMaterial.framework + Private: Yes + + AudioServerDriver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriver.framework + Private: Yes + + StrokeAnimation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StrokeAnimation.framework + Private: Yes + + ActionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionKit.framework + Private: Yes + + MonitorPanel: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 6.0, Copyright © 2001-2016 Apple Inc. + Location: /System/Library/PrivateFrameworks/MonitorPanel.framework + Private: Yes + + LiveSpeechServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveSpeechServices.framework + Private: Yes + + DifferentialPrivacy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DifferentialPrivacy.framework + Private: Yes + + StorageManagementService: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageManagementService.framework + Private: Yes + + PreviewShellKit: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewShellKit.framework + Private: Yes + + UARPUpdaterService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UARPUpdaterService.framework + Private: Yes + + AppleTracingSupportSymbolication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleTracingSupportSymbolication.framework + Private: Yes + + NotificationPreferences: + + Version: 1459.4.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotificationPreferences.framework + Private: Yes + + CoreTime: + + Version: 334.0.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreTime.framework + Private: Yes + + ContactsAssistantServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAssistantServices.framework + Private: Yes + + PoirotSchematizer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotSchematizer.framework + Private: Yes + + DiskManagement: + + Version: 15.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Disk Management version 15.0, Copyright © 1998–2020 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/DiskManagement.framework + Private: Yes + + SiriNaturalLanguageGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNaturalLanguageGeneration.framework + Private: Yes + + AskTo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskTo.framework + Private: Yes + + SiriTTSService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTSService.framework + Private: Yes + + CloudPhotoServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoServices.framework + Private: Yes + + CMContinuityCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMContinuityCaptureCore.framework + Private: Yes + + SystemPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemPolicy.framework + Private: Yes + + SiriAudioSnippetKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioSnippetKit.framework + Private: Yes + + PackageKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageKit.framework + Private: Yes + + PackageUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit.framework + Private: Yes + + CloudSharing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSharing.framework + Private: Yes + + TuriCore: + + Version: 0.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: TuriCore ML APIs for training. + Location: /System/Library/PrivateFrameworks/TuriCore.framework + Private: Yes + + BatteryCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryCenterUI.framework + Private: Yes + + FindMyUnsafeAsyncBridging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyUnsafeAsyncBridging.framework + Private: Yes + + SiriInteractive: + + Version: 2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInteractive.framework + Private: Yes + + FoundationODR: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FoundationODR.framework + Private: Yes + + ScreenTimeSettingsUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeSettingsUI.framework + Private: Yes + + SiriSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSetup.framework + Private: Yes + + InputToolKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputToolKitUI.framework + Private: Yes + + WebInspector: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebInspector.framework + Private: Yes + + OSAServicesClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAServicesClient.framework + Private: Yes + + CrashReporterSupport: + + Version: 10.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CrashReporterSupport.framework + Private: Yes + + IMCorePipeline: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMCorePipeline.framework + Private: Yes + + DeviceExpertIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceExpertIntents.framework + Private: Yes + + BridgeOSSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework + Private: Yes + + InputContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputContext.framework + Private: Yes + + TextureIO: + + Version: 3.10.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextureIO.framework + Private: Yes + + AssetCacheServices: + + Version: 135.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetCacheServices.framework + Private: Yes + + VisionCore: + + Version: 8.0.76 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisionCore.framework + Private: Yes + + AppleMediaServicesKitInternal: + + Version: 1.0.17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesKitInternal.framework + Private: Yes + + IDSSystemPreferencesSignIn: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSSystemPreferencesSignIn.framework + Private: Yes + + DeviceAccess: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceAccess.framework + Private: Yes + + FMNetworking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMNetworking.framework + Private: Yes + + ConditionInducer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConditionInducer.framework + Private: Yes + + VisionKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisionKitCore.framework + Private: Yes + + PhoneSnippetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneSnippetUI.framework + Private: Yes + + CoreSpeechFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechFoundation.framework + Private: Yes + + CoreOptimization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOptimization.framework + Private: Yes + + EmailCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailCore.framework + Private: Yes + + Install: + + Version: 700 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Install.framework + Private: Yes + + DistributionKit: + + Version: 700 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit.framework + Private: Yes + + JetCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetCore.framework + Private: Yes + + VirtualGarage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VirtualGarage.framework + Private: Yes + + Tabi: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tabi.framework + Private: Yes + + SpotlightFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightFoundation.framework + Private: Yes + + SiriMetricsBugReporter: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMetricsBugReporter.framework + Private: Yes + + ZhuGeSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZhuGeSupport.framework + Private: Yes + + Nexus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Nexus.framework + Private: Yes + + SiriAudioSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioSupport.framework + Private: Yes + + CloudTelemetry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudTelemetry.framework + Private: Yes + + AddressBookCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AddressBookCore.framework + Private: Yes + + SiriKitInvocation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitInvocation.framework + Private: Yes + + acfsSupport: + + Version: 589 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: 589 (6.0.5), Copyright © 2005-2012 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/acfsSupport.framework + Private: Yes + + TextToSpeech: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeech.framework + Private: Yes + + FinanceDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinanceDaemon.framework + Private: Yes + + JetEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetEngine.framework + Private: Yes + + ByteRangeLocking: + + Version: 1.3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ByteRangeLocking.framework + Private: Yes + + CMImaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMImaging.framework + Private: Yes + + HearingModeService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeService.framework + Private: Yes + + SpeechRecognitionSharedSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionSharedSupport.framework + Private: Yes + + CoreAppleCVA: + + Version: 4.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAppleCVA.framework + Private: Yes + + USDKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USDKit.framework + Private: Yes + + UIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIFoundation.framework + Private: Yes + + GameServices: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameServices.framework + Private: Yes + + AnnotationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AnnotationKit.framework + Private: Yes + + CombineCocoa: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CombineCocoa.framework + Private: Yes + + ProactiveHarvesting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveHarvesting.framework + Private: Yes + + SpanMatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpanMatcher.framework + Private: Yes + + People: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/People.framework + Private: Yes + + WebInspectorUI: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebInspectorUI.framework + Private: Yes + + AMPDevices: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPDevices.framework + Private: Yes + + SiriPaymentsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPaymentsIntents.framework + Private: Yes + + CoreUtilsUI: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsUI.framework + Private: Yes + + CoreParsec: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreParsec.framework + Private: Yes + + AccountPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountPolicy.framework + Private: Yes + + CFAccountPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountPolicy.framework + Private: Yes + + SiriNaturalLanguageParsing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNaturalLanguageParsing.framework + Private: Yes + + EmojiFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmojiFoundation.framework + Private: Yes + + AOSAccounts: + + Version: 1.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSAccounts.framework + Private: Yes + + CoreCaptureControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0, Copyright © 2015 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreCaptureControl.framework + Private: Yes + + XCTAutomationSupport: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTAutomationSupport.framework + Private: Yes + + CaptiveNetwork: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CaptiveNetwork.framework + Private: Yes + + CoreKnowledge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreKnowledge.framework + Private: Yes + + Marco: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Marco.framework + Private: Yes + + BookFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookFoundation.framework + Private: Yes + + FeedbackLogger: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackLogger.framework + Private: Yes + + SiriPlaybackControlSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPlaybackControlSupport.framework + Private: Yes + + Transliteration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Transliteration.framework + Private: Yes + + WiFiSettingsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiSettingsKit.framework + Private: Yes + + AppStoreComponents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreComponents.framework + Private: Yes + + ApplePushService: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePushService.framework + Private: Yes + + ServiceExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServiceExtensions.framework + Private: Yes + + CoreRE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRE.framework + Private: Yes + + HomeKitMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitMetrics.framework + Private: Yes + + ShazamEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamEvents.framework + Private: Yes + + FMFUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMFUI.framework + Private: Yes + + AccountSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountSuggestions.framework + Private: Yes + + FilesActionsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FilesActionsUI.framework + Private: Yes + + FileProviderTelemetry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProviderTelemetry.framework + Private: Yes + + ExchangeSyncExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeSyncExpress.framework + Private: Yes + + SiriGeo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriGeo.framework + Private: Yes + + GraphVisualizer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphVisualizer.framework + Private: Yes + + Shortcut: + + Version: 2.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Shortcut.framework + Private: Yes + + FTClientServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTClientServices.framework + Private: Yes + + SystemUIPlugin: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemUIPlugin.framework + Private: Yes + + GenerativeExperiencesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiencesUI.framework + Private: Yes + + SiriVideoUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVideoUIFramework.framework + Private: Yes + + MessagesBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesBlastDoorSupport.framework + Private: Yes + + MusicKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicKitInternal.framework + Private: Yes + + iCloudQuota: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudQuota.framework + Private: Yes + + ClassroomKit: + + Version: 1.0.11 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassroomKit.framework + Private: Yes + + TVIdleServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVIdleServices.framework + Private: Yes + + SiriCrossDeviceArbitrationFeedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCrossDeviceArbitrationFeedback.framework + Private: Yes + + IDSHashPersistence: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSHashPersistence.framework + Private: Yes + + UIIntelligenceIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceIntents.framework + Private: Yes + + AppServerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppServerSupport.framework + Private: Yes + + NetworkQualityServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkQualityServices.framework + Private: Yes + + WebContentAnalysis: + + Version: 5.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebContentAnalysis.framework + Private: Yes + + ProactiveInputPredictionsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveInputPredictionsInternals.framework + Private: Yes + + BluetoothManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothManager.framework + Private: Yes + + CoreHapticsTools: + + Version: 3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHapticsTools.framework + Private: Yes + + Categories: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Categories.framework + Private: Yes + + AudioDSPGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioDSPGraph.framework + Private: Yes + + FindMyBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyBase.framework + Private: Yes + + SiriVOX: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVOX.framework + Private: Yes + + HeimODAdmin: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeimODAdmin.framework + Private: Yes + + iPod: + + Version: 1.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: iPod version 1.7, Copyright © 2002-2015 Apple Inc. + Location: /System/Library/PrivateFrameworks/iPod.framework + Private: Yes + + CalendarWeatherKit: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarWeatherKit.framework + Private: Yes + + HTTPServer: + + Version: 39 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HTTPServer.framework + Private: Yes + + CoreMediaStream: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMediaStream.framework + Private: Yes + + SiriCalendarUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCalendarUI.framework + Private: Yes + + _MusicKitInternal_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_MusicKitInternal_SwiftUI.framework + Private: Yes + + AONSense: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AONSense.framework + Private: Yes + + IOSurfaceAccelerator: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework + Private: Yes + + HomeAI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAI.framework + Private: Yes + + AppleCVA: + + Version: 1001.202.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleCVA.framework + Private: Yes + + AppAnalytics: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppAnalytics.framework + Private: Yes + + MobileTimerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileTimerSupport.framework + Private: Yes + + IconFoundation: + + Version: 493 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IconFoundation.framework + Private: Yes + + ExchangeGraphAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeGraphAPI.framework + Private: Yes + + SemanticDocumentManagement: + + Version: 3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SemanticDocumentManagement.framework + Private: Yes + + MediaControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaControl.framework + Private: Yes + + Koa: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Koa.framework + Private: Yes + + GeoServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoServicesCore.framework + Private: Yes + + Anvil: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Anvil.framework + Private: Yes + + PrintingPrivate: + + Version: 18 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrintingPrivate.framework + Private: Yes + + WeatherCore: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherCore.framework + Private: Yes + + PhoneNumbers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneNumbers.framework + Private: Yes + + MediaGroups: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaGroups.framework + Private: Yes + + IOImageLoader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOImageLoader.framework + Private: Yes + + RequestDispatcherBridges: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RequestDispatcherBridges.framework + Private: Yes + + PhotosIntelligenceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosIntelligenceCore.framework + Private: Yes + + RemoteXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteXPC.framework + Private: Yes + + MatterPlugin: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MatterPlugin.framework + Private: Yes + + WorkflowResponsiveness: + + Version: 383.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowResponsiveness.framework + Private: Yes + + FinanceKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinanceKitUI.framework + Private: Yes + + ContextSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextSync.framework + Private: Yes + + TranslationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationUI.framework + Private: Yes + + CalendarDraw: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDraw.framework + Private: Yes + + CloudKitCodeProtobuf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitCodeProtobuf.framework + Private: Yes + + AirPlayReceiver: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayReceiver.framework + Private: Yes + + InstallProgress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallProgress.framework + Private: Yes + + IASUtilitiesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IASUtilitiesCore.framework + Private: Yes + + BiometricKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricKitUI.framework + Private: Yes + + AuthKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthKitUI.framework + Private: Yes + + MomentsIntelligence: + + Version: 206.0.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MomentsIntelligence.framework + Private: Yes + + MediaMiningKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaMiningKit.framework + Private: Yes + + AppIntentsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppIntentsServices.framework + Private: Yes + + RemoteManagementProtocol: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementProtocol.framework + Private: Yes + + SiriReferenceResolutionDataModel: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolutionDataModel.framework + Private: Yes + + SonicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SonicKit.framework + Private: Yes + + AppleFSCompression: + + Version: 170 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFSCompression.framework + Private: Yes + + NetworkStatistics: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkStatistics.framework + Private: Yes + + ReflectionInternal: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReflectionInternal.framework + Private: Yes + + AppleIDSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetup.framework + Private: Yes + + ContactsAutocompleteUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework + Private: Yes + + FindMyDeviceUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDeviceUI.framework + Private: Yes + + CalendarDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDaemon.framework + Private: Yes + + PrivateMLClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateMLClient.framework + Private: Yes + + AACCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AACCore.framework + Private: Yes + + ProactiveBlendingLayer_iOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveBlendingLayer_iOS.framework + Private: Yes + + ProactiveSummarization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSummarization.framework + Private: Yes + + AppleConvergedFirmwareUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleConvergedFirmwareUpdater.framework + Private: Yes + + CoreFollowUp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreFollowUp.framework + Private: Yes + + OnDeviceEvalRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceEvalRuntime.framework + Private: Yes + + C2: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/C2.framework + Private: Yes + + CloudSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSettings.framework + Private: Yes + + MediaFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaFoundation.framework + Private: Yes + + CacheDelete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CacheDelete.framework + Private: Yes + + SafetyMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafetyMonitor.framework + Private: Yes + + StoreKitUIMac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreKitUIMac.framework + Private: Yes + + MobileStoreDemoCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileStoreDemoCore.framework + Private: Yes + + VoiceProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceProcessor.framework + Private: Yes + + OnDeviceStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorage.framework + Private: Yes + + HDRProcessing: + + Version: 1.427.53 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.427.53, Copyright Apple Inc, 2015-2025 + Location: /System/Library/PrivateFrameworks/HDRProcessing.framework + Private: Yes + + login: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/login.framework + Private: Yes + + loginsupport: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/login.framework/Frameworks/loginsupport.framework + Private: Yes + + SearchAssets: + + Version: 3404.77.2.14.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchAssets.framework + Private: Yes + + WidgetObservation: + + Version: 1459.4.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WidgetObservation.framework + Private: Yes + + PAImagingCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PAImagingCore.framework + Private: Yes + + CalendarFoundation: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarFoundation.framework + Private: Yes + + ToolKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToolKit.framework + Private: Yes + + SystemOverride: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemOverride.framework + Private: Yes + + Wallpaper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Wallpaper.framework + Private: Yes + + Mail: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mail.framework + Private: Yes + + GenerativeExperiencesRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiencesRuntime.framework + Private: Yes + + SiriUIBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUIBridge.framework + Private: Yes + + SiriWellnessIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriWellnessIntents.framework + Private: Yes + + FindMyLocate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyLocate.framework + Private: Yes + + iTunesCloud: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iTunesCloud.framework + Private: Yes + + DynamicDesktop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DynamicDesktop.framework + Private: Yes + + UniversalAccess: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework + Private: Yes + + UAEHCommon: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/UAEHCommon.framework + Private: Yes + + UniversalAccessCore: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/UniversalAccessCore.framework + Private: Yes + + Zoom: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalAccess.framework/Frameworks/Zoom.framework + Private: Yes + + SiriCalendarIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCalendarIntents.framework + Private: Yes + + AGXGPURawCounter: + + Version: 325.34.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AGXGPURawCounter.framework + Private: Yes + + IntelligenceFlowFeedbackDataCollector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowFeedbackDataCollector.framework + Private: Yes + + EXDisplayPipe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EXDisplayPipe.framework + Private: Yes + + FindMyCloudKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCloudKit.framework + Private: Yes + + GameKitServices: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameKitServices.framework + Private: Yes + + CoreMotionAlgorithms: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreMotionAlgorithms.framework + Private: Yes + + GPUSupport: + + Version: 21.1.1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: GPUSupport 21.1.1.0.0 + Location: /System/Library/PrivateFrameworks/GPUSupport.framework + Private: Yes + + SampleAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SampleAnalysis.framework + Private: Yes + + SAHelper: + + Version: 385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SampleAnalysis.framework/Frameworks/SAHelper.framework + Private: Yes + + AdCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdCore.framework + Private: Yes + + VoiceShortcuts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceShortcuts.framework + Private: Yes + + AppSupport: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSupport.framework + Private: Yes + + Bosporus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bosporus.framework + Private: Yes + + HIDRMUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMUI.framework + Private: Yes + + CoreDAV: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDAV.framework + Private: Yes + + CoreSpeech: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeech.framework + Private: Yes + + RunningBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RunningBoardServices.framework + Private: Yes + + AOSKit: + + Version: 1.07 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSKit.framework + Private: Yes + + ContactsAutocomplete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAutocomplete.framework + Private: Yes + + TCCSystemMigration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCCSystemMigration.framework + Private: Yes + + AAAFoundationSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AAAFoundationSwift.framework + Private: Yes + + AVConference: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework + Private: Yes + + LegacyHandle: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework + Private: Yes + + GKSPerformance: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/GKSPerformance.framework + Private: Yes + + ViceroyTrace: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework + Private: Yes + + SimpleKeyExchange: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework + Private: Yes + + snatmap: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework + Private: Yes + + ICE: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework + Private: Yes + + JetPack: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetPack.framework + Private: Yes + + AccessibilityAudit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityAudit.framework + Private: Yes + + SiriSuggestionsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsSupport.framework + Private: Yes + + WirelessProximity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessProximity.framework + Private: Yes + + CoreUARP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUARP.framework + Private: Yes + + LinguisticData: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinguisticData.framework + Private: Yes + + KnowledgeGraphKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KnowledgeGraphKit.framework + Private: Yes + + SiriSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSettingsUI.framework + Private: Yes + + FMIPCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMIPCore.framework + Private: Yes + + ConfigurationProfiles: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationProfiles.framework + Private: Yes + + CoreUtilsSwift: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsSwift.framework + Private: Yes + + SiriInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInference.framework + Private: Yes + + HomeKitDaemonLegacy: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/HomeKitDaemonLegacy.framework + Private: Yes + + CallHistoryToolKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallHistoryToolKit.framework + Private: Yes + + HeadGestures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadGestures.framework + Private: Yes + + FindMyDevice: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDevice.framework + Private: Yes + + AppleDisplayTCONControl: + + Version: 70 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDisplayTCONControl.framework + Private: Yes + + UIRecording: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIRecording.framework + Private: Yes + + TCC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCC.framework + Private: Yes + + MMCS: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MMCS.framework + Private: Yes + + GamePolicy: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GamePolicy.framework + Private: Yes + + PhotosFormats: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosFormats.framework + Private: Yes + + TextGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextGeneration.framework + Private: Yes + + ProactiveCDNDownloader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveCDNDownloader.framework + Private: Yes + + SiriMessageTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessageTypes.framework + Private: Yes + + ContinuousDialogManagerService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContinuousDialogManagerService.framework + Private: Yes + + NotesSupport: + + Version: 2.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesSupport.framework + Private: Yes + + CoreRC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRC.framework + Private: Yes + + TextInputMenuUI: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputMenuUI.framework + Private: Yes + + CorePDF: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePDF.framework + Private: Yes + + UIKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitServices.framework + Private: Yes + + SecCodeWrapper: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecCodeWrapper.framework + Private: Yes + + SiriMailInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailInternal.framework + Private: Yes + + Seeding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Seeding.framework + Private: Yes + + SiriAudioIntentUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioIntentUtils.framework + Private: Yes + + MobileSystemServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSystemServices.framework + Private: Yes + + CompanionServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CompanionServices.framework + Private: Yes + + AccessibilityPerformance: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityPerformance.framework + Private: Yes + + AssistiveControlSupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistiveControlSupport.framework + Private: Yes + + GPUInfo: + + Version: 1.3.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUInfo.framework + Private: Yes + + CoreUI: + + Version: 2.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUI.framework + Private: Yes + + ManagedSettingsObjC: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedSettingsObjC.framework + Private: Yes + + AvatarKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarKit.framework + Private: Yes + + USDLib_FormatLoaderProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USDLib_FormatLoaderProxy.framework + Private: Yes + + PromotedContentJetSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentJetSupport.framework + Private: Yes + + SiriSharedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSharedUI.framework + Private: Yes + + AuthenticationServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthenticationServicesCore.framework + Private: Yes + + SPShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPShared.framework + Private: Yes + + GraphCompute: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphCompute.framework + Private: Yes + + GeoServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoServices.framework + Private: Yes + + ProtocolBuffer: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtocolBuffer.framework + Private: Yes + + CallHistory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallHistory.framework + Private: Yes + + CommonUtilities: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommonUtilities.framework + Private: Yes + + FedStats: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FedStats.framework + Private: Yes + + DataDetectorsCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectorsCore.framework + Private: Yes + + ProactiveSuggestionClientModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSuggestionClientModel.framework + Private: Yes + + MetadataUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetadataUtilities.framework + Private: Yes + + iPodVoiceOver: + + Version: 1.4.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.4.4, Copyright © 2009-2020 Apple Inc. + Location: /System/Library/PrivateFrameworks/iPodVoiceOver.framework + Private: Yes + + ManagedConfiguration: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedConfiguration.framework + Private: Yes + + DailyBriefingCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DailyBriefingCommon.framework + Private: Yes + + QuickLookNonBaseSystem: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework + Private: Yes + + Stickers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Stickers.framework + Private: Yes + + Tightbeam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tightbeam.framework + Private: Yes + + TrustEvaluationAgent: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework + Private: Yes + + AppSystemSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSystemSettingsUI.framework + Private: Yes + + SafariPlatformSupport: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariPlatformSupport.framework + Private: Yes + + BezelServices: + + Version: 368 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 368 + Location: /System/Library/PrivateFrameworks/BezelServices.framework + Private: Yes + + SkyLight: + + Version: 1.600.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SkyLight.framework + Private: Yes + + SiriSpeechSynthesis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSpeechSynthesis.framework + Private: Yes + + _SonicKit_MusicKit_Packages: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_SonicKit_MusicKit_Packages.framework + Private: Yes + + CoreUtilsExtras: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtilsExtras.framework + Private: Yes + + EmbeddedOSSupportHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddedOSSupportHost.framework + Private: Yes + + InputAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAnalytics.framework + Private: Yes + + WirelessCoexManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessCoexManager.framework + Private: Yes + + DistributedEvaluation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedEvaluation.framework + Private: Yes + + SonicFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SonicFoundation.framework + Private: Yes + + MessageSecurity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageSecurity.framework + Private: Yes + + IMRCSTransfer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMRCSTransfer.framework + Private: Yes + + CloudPhotoServicesConfiguration: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoServicesConfiguration.framework + Private: Yes + + NotificationCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotificationCenterUI.framework + Private: Yes + + VideoEffect: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoEffect.framework + Private: Yes + + RemoteServiceDiscovery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework + Private: Yes + + RealityFusion: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RealityFusion.framework + Private: Yes + + SiriTurnTakingManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTurnTakingManager.framework + Private: Yes + + BatteryCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryCenter.framework + Private: Yes + + AMPDesktopUI: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPDesktopUI.framework + Private: Yes + + GPUWrangler: + + Version: 8.1.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUWrangler.framework + Private: Yes + + DisplayServices: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DisplayServices 3.1 + Location: /System/Library/PrivateFrameworks/DisplayServices.framework + Private: Yes + + SPSupport: + + Version: 10.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPSupport.framework + Private: Yes + + DuetActivityScheduler: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DuetActivityScheduler.framework + Private: Yes + + SoftwareUpdateCoreConnect: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework + Private: Yes + + DocumentUnderstandingClient: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentUnderstandingClient.framework + Private: Yes + + RenderBox: + + Version: 6.4.39.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RenderBox.framework + Private: Yes + + CoreHAP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHAP.framework + Private: Yes + + EAFirmwareUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EAFirmwareUpdater.framework + Private: Yes + + AppleISPEmulator: + + Version: 1.26.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleISPEmulator.framework + Private: Yes + + IOPresentment: + + Version: 67 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOPresentment.framework + Private: Yes + + Proximity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Proximity.framework + Private: Yes + + RemindersAppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersAppIntents.framework + Private: Yes + + LinkPresentation: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkPresentation.framework + Private: Yes + + QuickLookUIIosmac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookUIIosmac.framework + Private: Yes + + OTSVG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OTSVG.framework + Private: Yes + + AccessibilityBundles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityBundles.framework + Private: Yes + + FocusSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FocusSettingsUI.framework + Private: Yes + + DataAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework + Private: Yes + + DACoreDAVGlue: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DACoreDAVGlue.framework + Private: Yes + + DACalDAV: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DACalDAV.framework + Private: Yes + + DADaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DADaemonSupport.framework + Private: Yes + + DASubCal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DASubCal.framework + Private: Yes + + DAPubCal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccess.framework/Frameworks/DAPubCal.framework + Private: Yes + + SystemDesktopAppearance: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemDesktopAppearance.framework + Private: Yes + + CoreAVCHD: + + Version: 6.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAVCHD.framework + Private: Yes + + PaperKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaperKit.framework + Private: Yes + + OSASyncProxyClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSASyncProxyClient.framework + Private: Yes + + AppSandbox: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSandbox.framework + Private: Yes + + WiFiCloudSyncEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiCloudSyncEngine.framework + Private: Yes + + SiriContactsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsIntents.framework + Private: Yes + + ScreenContinuityServices: + + Version: 50.4.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenContinuityServices.framework + Private: Yes + + ServiceExtensionsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ServiceExtensionsCore.framework + Private: Yes + + DataDetectorsNaturalLanguage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework + Private: Yes + + DarwinDirectoryInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectoryInternal.framework + Private: Yes + + PlugInKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlugInKit.framework + Private: Yes + + PowerlogFullOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogFullOperators.framework + Private: Yes + + SignpostMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostMetrics.framework + Private: Yes + + BiometricKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricKit.framework + Private: Yes + + NeutrinoCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeutrinoCore.framework + Private: Yes + + DiagnosticExtensionsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticExtensionsDaemon.framework + Private: Yes + + ProfileValidatedAppIdentity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProfileValidatedAppIdentity.framework + Private: Yes + + SetupKit: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupKit.framework + Private: Yes + + VoiceActions: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceActions.framework + Private: Yes + + SpotlightEmbedding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightEmbedding.framework + Private: Yes + + CorePrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePrediction.framework + Private: Yes + + AppleKeyStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleKeyStore.framework + Private: Yes + + WPDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WPDaemon.framework + Private: Yes + + SiriAutoComplete: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAutoComplete.framework + Private: Yes + + ScreenTimeUICore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeUICore.framework + Private: Yes + + UniversalControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalControl.framework + Private: Yes + + PlatformSSOUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSOUI.framework + Private: Yes + + TeaDB: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaDB.framework + Private: Yes + + InfoQueryPersonalizationFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InfoQueryPersonalizationFeatures.framework + Private: Yes + + MediaControlSender: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaControlSender.framework + Private: Yes + + IconServices: + + Version: 493 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IconServices.framework + Private: Yes + + SettingsHost: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SettingsHost.framework + Private: Yes + + RapportUI: + + Version: 6.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RapportUI.framework + Private: Yes + + Tungsten: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Tungsten.framework + Private: Yes + + MigrationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MigrationKit.framework + Private: Yes + + MediaKit: + + Version: 16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Esoteric Media Manipulation + Location: /System/Library/PrivateFrameworks/MediaKit.framework + Private: Yes + + PasswordManagerUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PasswordManagerUI.framework + Private: Yes + + MFAAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MFAAuthentication.framework + Private: Yes + + AutoFillUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoFillUI.framework + Private: Yes + + AirPlayRoutePrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayRoutePrediction.framework + Private: Yes + + CoreLocationReplay: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationReplay.framework + Private: Yes + + PhotoAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoAnalysis.framework + Private: Yes + + HIDPreferences: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDPreferences.framework + Private: Yes + + MessagesKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesKit.framework + Private: Yes + + StoreKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreKitMacHelper.framework + Private: Yes + + TrustKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustKit.framework + Private: Yes + + AccessibilityPlatformTranslation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityPlatformTranslation.framework + Private: Yes + + WritingTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WritingTools.framework + Private: Yes + + AppleSauce: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSauce.framework + Private: Yes + + MailSupport: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailSupport.framework + Private: Yes + + TextUnderstandingShared: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextUnderstandingShared.framework + Private: Yes + + PDS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PDS.framework + Private: Yes + + HomeKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKit.framework + Private: Yes + + SiriAppLaunchIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppLaunchIntents.framework + Private: Yes + + FrontBoardServices: + + Version: 943.5.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FrontBoardServices.framework + Private: Yes + + ContactsWidgetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsWidgetUI.framework + Private: Yes + + IntelligenceFlowRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowRuntime.framework + Private: Yes + + AGXCompilerCore: + + Version: 325.34.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AGXCompilerCore.framework + Private: Yes + + CPAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPAnalytics.framework + Private: Yes + + GenerativeAssistantSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantSettings.framework + Private: Yes + + OSD: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSD.framework + Private: Yes + + CardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CardServices.framework + Private: Yes + + IntelligentRouting: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRouting.framework + Private: Yes + + DMCUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCUtilities.framework + Private: Yes + + RelativeMotion: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RelativeMotion.framework + Private: Yes + + MaterialKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MaterialKit.framework + Private: Yes + + ContextualActionsClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualActionsClient.framework + Private: Yes + + PersonaKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonaKit.framework + Private: Yes + + kperf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/kperf.framework + Private: Yes + + HomePlatformSettingsUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomePlatformSettingsUI.framework + Private: Yes + + PhotosGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosGraph.framework + Private: Yes + + AppleServiceToolkit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleServiceToolkit.framework + Private: Yes + + IntelligencePlatformCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformCore.framework + Private: Yes + + DeviceDiscoveryUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceDiscoveryUI.framework + Private: Yes + + PersonalAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalAudio.framework + Private: Yes + + ExpansionSlotSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExpansionSlotSupport.framework + Private: Yes + + AppSSO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSO.framework + Private: Yes + + PreferencePanesSupport: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreferencePanesSupport.framework + Private: Yes + + IntentsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsServices.framework + Private: Yes + + DeviceIdentity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceIdentity.framework + Private: Yes + + ClockMenuExtraPreferences: + + Version: 1.1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClockMenuExtraPreferences.framework + Private: Yes + + IntelligencePlatformLibrary: + + Version: 100.42.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformLibrary.framework + Private: Yes + + ChronoCore: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoCore.framework + Private: Yes + + Calculate: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Calculate.framework + Private: Yes + + PreviewsFoundationOS: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsFoundationOS.framework + Private: Yes + + PreviewsOSSupportUI: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsOSSupportUI.framework + Private: Yes + + LanguageModeling: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LanguageModeling.framework + Private: Yes + + CalendarIntegrationSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarIntegrationSupport.framework + Private: Yes + + IntelligenceFlowContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowContext.framework + Private: Yes + + PAImaging: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PAImaging.framework + Private: Yes + + LocalAuthenticationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationUI.framework + Private: Yes + + CloudServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudServices.framework + Private: Yes + + LockdownMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LockdownMode.framework + Private: Yes + + FlowFrameKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlowFrameKit.framework + Private: Yes + + SpeechRecognitionCommandServices: + + Version: 3.1.65.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionCommandServices.framework + Private: Yes + + FedStatsPluginCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FedStatsPluginCore.framework + Private: Yes + + StorageUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageUI.framework + Private: Yes + + VectorSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VectorSearch.framework + Private: Yes + + SearchAds: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchAds.framework + Private: Yes + + PacketParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PacketParser.framework + Private: Yes + + PrivateCloudCompute: + + Version: 2250.22 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateCloudCompute.framework + Private: Yes + + SpotlightIndex: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightIndex.framework + Private: Yes + + ApplePDPHelper: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePDPHelper.framework + Private: Yes + + AvatarKitContent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarKitContent.framework + Private: Yes + + ResponseUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ResponseUI.framework + Private: Yes + + HearingModeSettingsUIMacOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeSettingsUIMacOS.framework + Private: Yes + + PoirotBlocks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotBlocks.framework + Private: Yes + + ViewBridge: + + Version: 769.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ViewBridge.framework + Private: Yes + + LiftUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiftUI.framework + Private: Yes + + PersonalizationPortraitInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizationPortraitInternals.framework + Private: Yes + + FindMyBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyBluetooth.framework + Private: Yes + + ReminderKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKit.framework + Private: Yes + + MLModelSpecification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLModelSpecification.framework + Private: Yes + + SiriContactsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsUI.framework + Private: Yes + + ScoreBoard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScoreBoard.framework + Private: Yes + + TrialProto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrialProto.framework + Private: Yes + + CloudAsset: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAsset.framework + Private: Yes + + ScreenTimeCore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeCore.framework + Private: Yes + + ImageHarmonizationKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ImageHarmonizationKit.framework + Private: Yes + + ContextKitExtraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKitExtraction.framework + Private: Yes + + ModalityXObjects: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModalityXObjects.framework + Private: Yes + + PrintKit: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrintKit.framework + Private: Yes + + SpeechRecognitionCore: + + Version: 6.3.30.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework + Private: Yes + + SiriAppResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppResolution.framework + Private: Yes + + AudioToolboxCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioToolboxCore.framework + Private: Yes + + LighthouseCoreMLFeatureStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLFeatureStore.framework + Private: Yes + + VideoProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoProcessing.framework + Private: Yes + + NotesPreviewKit: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesPreviewKit.framework + Private: Yes + + UniversalHIDKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalHIDKit.framework + Private: Yes + + BaseBoard: + + Version: 694.5.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BaseBoard.framework + Private: Yes + + AssetViewer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetViewer.framework + Private: Yes + + LocalSpeechRecognitionBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalSpeechRecognitionBridge.framework + Private: Yes + + UIIntelligenceSupportAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceSupportAgent.framework + Private: Yes + + AVFCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFCore.framework + Private: Yes + + SpeechDetector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechDetector.framework + Private: Yes + + ToneKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToneKit.framework + Private: Yes + + MobileStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileStorage.framework + Private: Yes + + MessagesSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesSettingsUI.framework + Private: Yes + + XCTestSupport: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTestSupport.framework + Private: Yes + + Portrait: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Portrait.framework + Private: Yes + + HearingModeService_Private: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingModeService_Private.framework + Private: Yes + + Suggestions: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Suggestions.framework + Private: Yes + + ProactiveSummarizationClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSummarizationClient.framework + Private: Yes + + PassKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitUI.framework + Private: Yes + + PrivateSearchProtocols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchProtocols.framework + Private: Yes + + ReplicatorCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorCore.framework + Private: Yes + + AudioSessionServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioSessionServer.framework + Private: Yes + + MediaConversionService: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaConversionService.framework + Private: Yes + + SiriFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFoundation.framework + Private: Yes + + HumanUnderstandingEvidence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUnderstandingEvidence.framework + Private: Yes + + RemoteConfiguration: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteConfiguration.framework + Private: Yes + + CoreLocationProtobuf: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework + Private: Yes + + DiagnosticExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticExtensions.framework + Private: Yes + + Settings: + + Version: 207.3.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Settings.framework + Private: Yes + + SiriNotificationsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotificationsIntents.framework + Private: Yes + + MachineSettings: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: MachineSettings Framework + Location: /System/Library/PrivateFrameworks/MachineSettings.framework + Private: Yes + + PromptKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromptKit.framework + Private: Yes + + TipKitServices: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipKitServices.framework + Private: Yes + + CoreBluetoothUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreBluetoothUI.framework + Private: Yes + + GenerativeExperiences: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeExperiences.framework + Private: Yes + + ResponseKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ResponseKit.framework + Private: Yes + + AppleGVACore: + + Version: 113.56 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleGVACore.framework + Private: Yes + + SearchUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchUI.framework + Private: Yes + + Archetype: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Archetype.framework + Private: Yes + + WeatherDaemon: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherDaemon.framework + Private: Yes + + CalendarDatabase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarDatabase.framework + Private: Yes + + PoirotUDFs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotUDFs.framework + Private: Yes + + SpatialAudioServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpatialAudioServices.framework + Private: Yes + + NotesSiriUI: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesSiriUI.framework + Private: Yes + + HeroDataClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeroDataClient.framework + Private: Yes + + GameCenterOverlayService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterOverlayService.framework + Private: Yes + + GRDBInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GRDBInternal.framework + Private: Yes + + SiriDialogEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriDialogEngine.framework + Private: Yes + + ReplayKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplayKitMacHelper.framework + Private: Yes + + Coordination: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Coordination.framework + Private: Yes + + InternetAccounts: + + Version: 2.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternetAccounts.framework + Private: Yes + + MediaML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaML.framework + Private: Yes + + MCCFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MCCFoundation.framework + Private: Yes + + SiriGestureBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriGestureBridge.framework + Private: Yes + + CoreSuggestionsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsInternals.framework + Private: Yes + + icloudMCCKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/icloudMCCKit.framework + Private: Yes + + SafariSafeBrowsing: + + Version: 621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework + Private: Yes + + ContactsMetrics: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsMetrics.framework + Private: Yes + + ModelCatalog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelCatalog.framework + Private: Yes + + HomeKitFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitFeatures.framework + Private: Yes + + PrivateMLClientInferenceProvider: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateMLClientInferenceProvider.framework + Private: Yes + + CoreSceneUnderstanding: + + Version: 1.69.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSceneUnderstanding.framework + Private: Yes + + HWAdapter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HWAdapter.framework + Private: Yes + + BookCoverUtility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookCoverUtility.framework + Private: Yes + + PasswordServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PasswordServer.framework + Private: Yes + + GenerativeModels: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeModels.framework + Private: Yes + + AirTrafficHost: + + Version: 4024.500.19 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AirTrafficHost.framework + Private: Yes + + SiriKitRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitRuntime.framework + Private: Yes + + DocumentCamera: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentCamera.framework + Private: Yes + + ClassKitNotificationUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassKitNotificationUI.framework + Private: Yes + + HealthDiagnosticExtensionCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDiagnosticExtensionCore.framework + Private: Yes + + SiriSuggestionsAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsAPI.framework + Private: Yes + + BackgroundTaskManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework + Private: Yes + + FindMyLocateObjCWrapper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyLocateObjCWrapper.framework + Private: Yes + + XOJITExecutor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XOJITExecutor.framework + Private: Yes + + AccessoryNowPlaying: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessoryNowPlaying.framework + Private: Yes + + GPURawCounter: + + Version: 34 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPURawCounter.framework + Private: Yes + + LoginUIKit: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoginUIKit.framework + Private: Yes + + LoginUICore: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoginUIKit.framework/Frameworks/LoginUICore.framework + Private: Yes + + BookLibraryCore: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookLibraryCore.framework + Private: Yes + + AudioServerDriverTransports_Base: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_Base.framework + Private: Yes + + Safari: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Safari.framework + Private: Yes + + Dendrite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Dendrite.framework + Private: Yes + + SPFinder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPFinder.framework + Private: Yes + + RTTUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTTUI.framework + Private: Yes + + Transparency: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Transparency.framework + Private: Yes + + AudioAnalyticsExternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalyticsExternal.framework + Private: Yes + + DiagnosticsSessionAvailability: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticsSessionAvailability.framework + Private: Yes + + DeviceCheckInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceCheckInternal.framework + Private: Yes + + WebContentRestrictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebContentRestrictions.framework + Private: Yes + + Bom: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bom.framework + Private: Yes + + BlockMonitoring: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BlockMonitoring.framework + Private: Yes + + USTBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USTBridge.framework + Private: Yes + + BookDataStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookDataStore.framework + Private: Yes + + StoreFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreFoundation.framework + Private: Yes + + TimeMachinePrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeMachinePrivate.framework + Private: Yes + + OfficeImport: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OfficeImport.framework + Private: Yes + + AskPermission: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskPermission.framework + Private: Yes + + SpotlightServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightServices.framework + Private: Yes + + Focus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Focus.framework + Private: Yes + + SiriVirtualDeviceResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVirtualDeviceResolution.framework + Private: Yes + + CoreSpeechExclave: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechExclave.framework + Private: Yes + + AMPSharing: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPSharing.framework + Private: Yes + + NewDeviceOutreach: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewDeviceOutreach.framework + Private: Yes + + AirPlaySender: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySender.framework + Private: Yes + + Sentry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sentry.framework + Private: Yes + + UserFS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserFS.framework + Private: Yes + + XCTTargetBootstrap: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework + Private: Yes + + PaymentUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaymentUI.framework + Private: Yes + + WebBookmarksSwift: + + Version: 18.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebBookmarksSwift.framework + Private: Yes + + SpeakerRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeakerRecognition.framework + Private: Yes + + PeopleSuggester: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PeopleSuggester.framework + Private: Yes + + OpenDirectoryConfigUI: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework + Private: Yes + + HIDRMClientKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMClientKit.framework + Private: Yes + + SFSymbols: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SFSymbols.framework + Private: Yes + + HomeKitBackingStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitBackingStore.framework + Private: Yes + + FamilyControls: + + Version: 4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyControls.framework + Private: Yes + + SiriTranslationUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTranslationUI.framework + Private: Yes + + ZeoliteLanguage: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZeoliteLanguage.framework + Private: Yes + + ContactsDonationFeedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsDonationFeedback.framework + Private: Yes + + AppStoreUtilities: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreUtilities.framework + Private: Yes + + LocationAccessStore: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocationAccessStore.framework + Private: Yes + + ConstantClasses: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConstantClasses.framework + Private: Yes + + ProactiveExperimentsInternals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveExperimentsInternals.framework + Private: Yes + + CorePhoneNumbers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePhoneNumbers.framework + Private: Yes + + PowerLog: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerLog.framework + Private: Yes + + HID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HID.framework + Private: Yes + + CoreThemeDefinition: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThemeDefinition.framework + Private: Yes + + AggregateDictionaryHistory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AggregateDictionaryHistory.framework + Private: Yes + + SharingUI: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharingUI.framework + Private: Yes + + UVCFamily: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCFamily.framework + Private: Yes + + CoreWiFi: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreWiFi.framework + Private: Yes + + DFRDisplay: + + Version: 185 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRDisplay.framework + Private: Yes + + SpotlightKnowledge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightKnowledge.framework + Private: Yes + + GenerativeFunctionsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctionsFoundation.framework + Private: Yes + + MobileIcons: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileIcons.framework + Private: Yes + + SiriMessagesCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesCommon.framework + Private: Yes + + SystemMigration_SDKHeaders: + + Version: 5739.100.175 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/SystemMigration_SDKHeaders.framework + Private: Yes + + CoreADI: + + Version: 8.7.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: 64-bit + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreADI.framework + Private: Yes + + WebPrivacy: + + Version: 44 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebPrivacy.framework + Private: Yes + + ProactiveSupportStubs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSupportStubs.framework + Private: Yes + + AudioAnalyticsBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalyticsBase.framework + Private: Yes + + LiveTranscription: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveTranscription.framework + Private: Yes + + RemoteHID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteHID.framework + Private: Yes + + KerberosHelper: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KerberosHelper.framework + Private: Yes + + SiriNotebook: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotebook.framework + Private: Yes + + GraphComputeRT: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphComputeRT.framework + Private: Yes + + HealthKitAdditions: + + Version: 5200.4.25 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthKitAdditions.framework + Private: Yes + + ChronoServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoServices.framework + Private: Yes + + IMDMessageServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDMessageServices.framework + Private: Yes + + SystemWake: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemWake.framework + Private: Yes + + AppleFirmwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFirmwareUpdate.framework + Private: Yes + + IOAccelerator: + + Version: 485 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOAccelerator.framework + Private: Yes + + FindMyMessaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyMessaging.framework + Private: Yes + + ReplicatorEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorEngine.framework + Private: Yes + + CMCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCapture.framework + Private: Yes + + GraphicsAppSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework + Private: Yes + + HomeKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitCore.framework + Private: Yes + + CDDataAccessExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccessExpress.framework + Private: Yes + + ContextKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKitCore.framework + Private: Yes + + HealthDaemonFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDaemonFoundation.framework + Private: Yes + + BagKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BagKit.framework + Private: Yes + + SiriOntologyProtobuf: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOntologyProtobuf.framework + Private: Yes + + SMBClientEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SMBClientEngine.framework + Private: Yes + + ParavirtualizedANE: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParavirtualizedANE.framework + Private: Yes + + PegasusAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusAPI.framework + Private: Yes + + TransparencyDetailsViewMac: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TransparencyDetailsViewMac.framework + Private: Yes + + WeatherAnalytics: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherAnalytics.framework + Private: Yes + + IOPlatformPluginFamily: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework + Private: Yes + + VisualGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualGeneration.framework + Private: Yes + + CoreThreadRadio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThreadRadio.framework + Private: Yes + + DeviceLink: + + Version: 5.0 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DeviceLink.framework + Private: Yes + + AUSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AUSettings.framework + Private: Yes + + ANECompiler: + + Version: 8.5.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANECompiler.framework + Private: Yes + + MessagesHelperKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessagesHelperKit.framework + Private: Yes + + AppleLDAP: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleLDAP.framework + Private: Yes + + AirPlaySupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySupport.framework + Private: Yes + + RegulatoryDomain: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RegulatoryDomain.framework + Private: Yes + + ExtensionFoundation: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionFoundation.framework + Private: Yes + + WorkoutAnnouncements: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkoutAnnouncements.framework + Private: Yes + + PhotosImagingFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework + Private: Yes + + SystemMigration: + + Version: 5739.100.175 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigration.framework + Private: Yes + + LowPowerMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LowPowerMode.framework + Private: Yes + + ConfigProfileHelper: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigProfileHelper.framework + Private: Yes + + NPTKit: + + Version: 2.14.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NPTKit.framework + Private: Yes + + UserNotificationsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsServices.framework + Private: Yes + + FeatureFlags: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureFlags.framework + Private: Yes + + PowerlogDatabaseReader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogDatabaseReader.framework + Private: Yes + + CoreUtils: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreUtils.framework + Private: Yes + + DesktopServicesPriv: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework + Private: Yes + + WebDriver: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebDriver.framework + Private: Yes + + JavaScriptAppleEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaScriptAppleEvents.framework + Private: Yes + + AudioTransportCommon: + + Version: 300.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioTransportCommon.framework + Private: Yes + + VisualTestKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/VisualTestKit.framework + Private: Yes + + AppSystemSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSystemSettings.framework + Private: Yes + + SiriLiminal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriLiminal.framework + Private: Yes + + IOGPU: + + Version: 104.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOGPU.framework + Private: Yes + + PromotedContentJetClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentJetClient.framework + Private: Yes + + CoreCDPUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDPUI.framework + Private: Yes + + CoreFollowUpUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreFollowUpUI.framework + Private: Yes + + AdPlatforms: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatforms.framework + Private: Yes + + UsageTracking: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UsageTracking.framework + Private: Yes + + Admin: + + Version: 13.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 13.0, Copyright © 1998-2013 Apple Inc. + Location: /System/Library/PrivateFrameworks/Admin.framework + Private: Yes + + DataAccessExpress: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataAccessExpress.framework + Private: Yes + + LiveExecutionResultsRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsRuntime.framework + Private: Yes + + MallocStackLogging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MallocStackLogging.framework + Private: Yes + + PIRGeoProtos: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PIRGeoProtos.framework + Private: Yes + + MessageProtection: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageProtection.framework + Private: Yes + + MFiAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MFiAuthentication.framework + Private: Yes + + RealityIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RealityIO.framework + Private: Yes + + FaceTimeFeatureControl: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeFeatureControl.framework + Private: Yes + + MediaRemoteDaemonServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaRemoteDaemonServices.framework + Private: Yes + + DeepThoughtBiomeFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepThoughtBiomeFoundation.framework + Private: Yes + + FamilyNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyNotification.framework + Private: Yes + + MediaPlaybackCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaPlaybackCore.framework + Private: Yes + + CoreFP: + + Version: 4.10.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreFP.framework + Private: Yes + + DirectResource: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectResource.framework + Private: Yes + + AuthKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AuthKit.framework + Private: Yes + + CloudSharingUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSharingUI.framework + Private: Yes + + DesignLibrary: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DesignLibrary.framework + Private: Yes + + ReminderKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKitInternal.framework + Private: Yes + + CryptexServer: + + Version: 493.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptexServer.framework + Private: Yes + + PreviewsUIKitMacHelper: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsUIKitMacHelper.framework + Private: Yes + + MilAneflow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MilAneflow.framework + Private: Yes + + PowerlogLiteOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogLiteOperators.framework + Private: Yes + + IMTransferAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferAgent.framework + Private: Yes + + Mangrove: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mangrove.framework + Private: Yes + + NLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NLP.framework + Private: Yes + + CoreAccessories: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAccessories.framework + Private: Yes + + AMPLibrary: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AMPLibrary.framework + Private: Yes + + ReplicatorServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReplicatorServices.framework + Private: Yes + + GeoUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoUIFramework.framework + Private: Yes + + SocialLayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialLayer.framework + Private: Yes + + AppContainer: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppContainer.framework + Private: Yes + + CoreWLANKit: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 16.0, Copyright © 2011-2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreWLANKit.framework + Private: Yes + + AccelerateGPU: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccelerateGPU.framework + Private: Yes + + PhotoFoundationLegacy: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoFoundationLegacy.framework + Private: Yes + + apfs_boot_mount: + + Version: 2332.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/apfs_boot_mount.framework + Private: Yes + + IASUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IASUtilities.framework + Private: Yes + + SentencePiece: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SentencePiece.framework + Private: Yes + + SidecarCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SidecarCore.framework + Private: Yes + + MetricsKit: + + Version: 2.8.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricsKit.framework + Private: Yes + + QueryParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QueryParser.framework + Private: Yes + + TrustedAccessory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustedAccessory.framework + Private: Yes + + XARTRecovery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XARTRecovery.framework + Private: Yes + + SpotlightReceiver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightReceiver.framework + Private: Yes + + MLCompilerRuntime: + + Version: 3404.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLCompilerRuntime.framework + Private: Yes + + NetAppsUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetAppsUtilities.framework + Private: Yes + + LighthouseCoreMLModelStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLModelStore.framework + Private: Yes + + CBORLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CBORLibrary.framework + Private: Yes + + PegasusPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusPersistence.framework + Private: Yes + + SiriActivationFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriActivationFoundation.framework + Private: Yes + + CloudFamilyRestrictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudFamilyRestrictions.framework + Private: Yes + + CoreJapaneseEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreJapaneseEngine.framework + Private: Yes + + MotionSensorLogging: + + Version: 0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MotionSensorLogging.framework + Private: Yes + + IMCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMCore.framework + Private: Yes + + InstallerDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallerDiagnostics.framework + Private: Yes + + Restore: + + Version: 2.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Restore.framework + Private: Yes + + SpotlightDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightDaemon.framework + Private: Yes + + GPUCompiler: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUCompiler.framework + Private: Yes + + DAAPKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DAAPKit.framework + Private: Yes + + SpaceAttribution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpaceAttribution.framework + Private: Yes + + ShaderGraph: + + Version: 107.0.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShaderGraph.framework + Private: Yes + + DataDeliveryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDeliveryServices.framework + Private: Yes + + QuickLookThumbnailing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework + Private: Yes + + SiriTurnRestatement: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTurnRestatement.framework + Private: Yes + + NearbySessions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearbySessions.framework + Private: Yes + + AppleLOM: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleLOM.framework + Private: Yes + + DocumentUnderstanding: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DocumentUnderstanding.framework + Private: Yes + + IntelligentRoutingServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingServices.framework + Private: Yes + + AVFoundationCF: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFoundationCF.framework + Private: Yes + + MediaAnalysisPhotosServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisPhotosServices.framework + Private: Yes + + SnippetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetUI.framework + Private: Yes + + CoreAutoLayout: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAutoLayout.framework + Private: Yes + + AppStoreDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreDaemon.framework + Private: Yes + + OSAnalyticsPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework + Private: Yes + + VoiceServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceServices.framework + Private: Yes + + AXMediaUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXMediaUtilities.framework + Private: Yes + + Noticeboard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Noticeboard.framework + Private: Yes + + Darwinup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Darwinup.framework + Private: Yes + + WindowManagement: + + Version: 278.4.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WindowManagement.framework + Private: Yes + + FocusEngine: + + Version: 8444.1.402 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FocusEngine.framework + Private: Yes + + MobileIdentityServiceUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileIdentityServiceUI.framework + Private: Yes + + DistributedSensing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedSensing.framework + Private: Yes + + MicroLocationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocationDaemon.framework + Private: Yes + + ProximityAppleIDSetup: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProximityAppleIDSetup.framework + Private: Yes + + Chirp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Chirp.framework + Private: Yes + + Sage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sage.framework + Private: Yes + + Hydra: + + Version: 1.1.9 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Hydra.framework + Private: Yes + + ProactiveEventTracker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveEventTracker.framework + Private: Yes + + RemoteManagementStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementStore.framework + Private: Yes + + KoaMapper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KoaMapper.framework + Private: Yes + + SiriPrivateLearningLogging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningLogging.framework + Private: Yes + + PhotoFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoFoundation.framework + Private: Yes + + ProactiveInputPredictions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveInputPredictions.framework + Private: Yes + + Rapport: + + Version: 6.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Rapport.framework + Private: Yes + + ArchetypeEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ArchetypeEngine.framework + Private: Yes + + IntelligenceFlowPlannerSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowPlannerSupport.framework + Private: Yes + + DMCEnrollmentLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCEnrollmentLibrary.framework + Private: Yes + + BiomeStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeStorage.framework + Private: Yes + + PreviewsMessagingOS: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsMessagingOS.framework + Private: Yes + + WirelessDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WirelessDiagnostics.framework + Private: Yes + + MicroLocationUtilities: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocationUtilities.framework + Private: Yes + + FolderActionsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FolderActionsKit.framework + Private: Yes + + RTBuddyCrashlogDecoder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTBuddyCrashlogDecoder.framework + Private: Yes + + ANSTKit: + + Version: 2.5.14 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANSTKit.framework + Private: Yes + + AXRuntime: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXRuntime.framework + Private: Yes + + AVKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVKitMacHelper.framework + Private: Yes + + ScreenSharingServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharingServer.framework + Private: Yes + + ComputeSafeguards: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ComputeSafeguards.framework + Private: Yes + + UserSafety: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserSafety.framework + Private: Yes + + MobileAssetUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAssetUpdater.framework + Private: Yes + + AOSAccountsLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSAccountsLite.framework + Private: Yes + + SiriAutoCompleteAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAutoCompleteAPI.framework + Private: Yes + + WebGPU: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 20621.1.15.11.10, Copyright 2003-2025 Apple Inc.; Copyright 1997 Martin Jones ; Copyright 1998, 1999 Torben Weis ; Copyright 1998, 1999, 2002 Waldo Bastian ; Copyright 1998-2000 Lars Knoll ; Copyright 1999, 2001 Antti Koivisto ; Copyright 1999-2001 Harri Porten ; Copyright 2000 Simon Hausmann ; Copyright 2000, 2001 Dirk Mueller ; Copyright 2000, 2001 Peter Kelly ; Copyright 2000 Daniel Molkentin ; Copyright 2000 Stefan Schimanski ; Copyright 1998-2000 Netscape Communications Corporation; Copyright 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper; Copyright 2001, 2002 Expat maintainers. + Location: /System/Library/PrivateFrameworks/WebGPU.framework + Private: Yes + + TipKitCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipKitCore.framework + Private: Yes + + AudioServerDriverTransports_IOP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_IOP.framework + Private: Yes + + MediaMLServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaMLServices.framework + Private: Yes + + PowerExperience: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerExperience.framework + Private: Yes + + PeopleUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PeopleUI.framework + Private: Yes + + BridgeOSInstallReporting: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSInstallReporting.framework + Private: Yes + + NotesAnalytics: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesAnalytics.framework + Private: Yes + + SiriPrivateLearningAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningAnalytics.framework + Private: Yes + + BiomeFlexibleStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeFlexibleStorage.framework + Private: Yes + + IMAP: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAP.framework + Private: Yes + + SiriOrchestrationServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOrchestrationServices.framework + Private: Yes + + yara: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/yara.framework + Private: Yes + + NewsToday: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsToday.framework + Private: Yes + + DeviceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceManagement.framework + Private: Yes + + CoreServicesInternal: + + Version: 505 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreServicesInternal.framework + Private: Yes + + RevealCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RevealCore.framework + Private: Yes + + ProactiveExperiments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveExperiments.framework + Private: Yes + + Email: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Email.framework + Private: Yes + + IsolatedCoreAudioClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IsolatedCoreAudioClient.framework + Private: Yes + + AppStoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreUI.framework + Private: Yes + + ProductKit: + + Version: 2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProductKit.framework + Private: Yes + + IOAccelMemoryInfo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework + Private: Yes + + Backup: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Backup.framework + Private: Yes + + PersonalizedSensing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizedSensing.framework + Private: Yes + + PDSAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PDSAgent.framework + Private: Yes + + SiriNLUTypes: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNLUTypes.framework + Private: Yes + + _JetUI_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_JetUI_SwiftUI.framework + Private: Yes + + UserSafetyUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserSafetyUI.framework + Private: Yes + + HeadphoneProxFeatureService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneProxFeatureService.framework + Private: Yes + + WallpaperExtensionKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WallpaperExtensionKit.framework + Private: Yes + + caulk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/caulk.framework + Private: Yes + + LocationSupport: + + Version: 2960.0.57 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocationSupport.framework + Private: Yes + + BiomeLibrary: + + Version: 100.42.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeLibrary.framework + Private: Yes + + IMTranscoderAgent: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTranscoderAgent.framework + Private: Yes + + MobileDevice: + + Version: 1784.102.1 + Obtained from: Apple + Last Modified: 26.04.2025, 13:41 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/MobileDevice.framework + Private: Yes + + StickerKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StickerKitInternal.framework + Private: Yes + + TokenGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGeneration.framework + Private: Yes + + CommonAuth: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommonAuth.framework + Private: Yes + + AFKUser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AFKUser.framework + Private: Yes + + StorageManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageManagement.framework + Private: Yes + + LighthouseModelMonitoring: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseModelMonitoring.framework + Private: Yes + + IntelligencePlatform: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatform.framework + Private: Yes + + CoreNLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNLP.framework + Private: Yes + + PencilKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PencilKit.framework + Private: Yes + + MemoryDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MemoryDiagnostics.framework + Private: Yes + + FinderSyncPriv: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinderSyncPriv.framework + Private: Yes + + Recap: + + Version: 159.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Recap.framework + Private: Yes + + AppPredictionFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionFoundation.framework + Private: Yes + + PersonaUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonaUI.framework + Private: Yes + + APFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APFoundation.framework + Private: Yes + + AppStoreFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreFoundation.framework + Private: Yes + + TextToSpeechKonaSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechKonaSupport.framework + Private: Yes + + iCloudDriveService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudDriveService.framework + Private: Yes + + ShazamKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamKitUI.framework + Private: Yes + + SwiftASN1Internal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftASN1Internal.framework + Private: Yes + + CalendarNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarNotification.framework + Private: Yes + + ActionKitUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionKitUI.framework + Private: Yes + + DigitalTouchShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DigitalTouchShared.framework + Private: Yes + + PowerlogCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogCore.framework + Private: Yes + + CoreDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDiagnostics.framework + Private: Yes + + OSAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSAnalytics.framework + Private: Yes + + libmalloc_exclaves_introspector: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/libmalloc_exclaves_introspector.framework + Private: Yes + + CoreDuet: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuet.framework + Private: Yes + + DoNotDisturb: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturb.framework + Private: Yes + + CameraColorProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CameraColorProcessing.framework + Private: Yes + + ExtensionKitSettings: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionKitSettings.framework + Private: Yes + + AudioAccessoryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAccessoryServices.framework + Private: Yes + + AudioServerDriverTransports_IOA2: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerDriverTransports_IOA2.framework + Private: Yes + + AppleCredentialManager: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleCredentialManager.framework + Private: Yes + + ScreenSharing: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharing.framework + Private: Yes + + GPUToolsDiagnostics: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GPUToolsDiagnostics.framework + Private: Yes + + MusicKitPlaybackSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicKitPlaybackSupport.framework + Private: Yes + + Geode: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Geode.framework + Private: Yes + + HomeKitDaemonFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitDaemonFoundation.framework + Private: Yes + + AddressBookAutocomplete: + + Version: 14.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AddressBookAutocomplete.framework + Private: Yes + + GenerativeFunctionsInstrumentation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctionsInstrumentation.framework + Private: Yes + + GameControllerFoundation: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameControllerFoundation.framework + Private: Yes + + Lookup: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Lookup.framework + Private: Yes + + CMCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCaptureCore.framework + Private: Yes + + UniversalHID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalHID.framework + Private: Yes + + BusinessChatService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessChatService.framework + Private: Yes + + TVPlayback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVPlayback.framework + Private: Yes + + SystemServiceMonitor: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemServiceMonitor.framework + Private: Yes + + EmbeddingService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddingService.framework + Private: Yes + + MapsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSupport.framework + Private: Yes + + CoreLocationTiles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreLocationTiles.framework + Private: Yes + + SyncedModels: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedModels.framework + Private: Yes + + CloudRecommendation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudRecommendation.framework + Private: Yes + + ProactiveSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveSupport.framework + Private: Yes + + AppIntentSchemas: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppIntentSchemas.framework + Private: Yes + + ShareKit: + + Version: 871 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShareKit.framework + Private: Yes + + FaceTimeMacHelperCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeMacHelperCore.framework + Private: Yes + + QueryUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QueryUnderstanding.framework + Private: Yes + + TextInput: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInput.framework + Private: Yes + + PhotosMediaFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosMediaFoundation.framework + Private: Yes + + TimelineUI: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/TimelineUI.framework + Private: Yes + + GraphicsServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GraphicsServices.framework + Private: Yes + + ChunkingLibrary: + + Version: 2200.114.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChunkingLibrary.framework + Private: Yes + + RemotePairingDevice: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/RemotePairingDevice.framework + Private: Yes + + AppleIDSetupDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetupDaemon.framework + Private: Yes + + SnippetKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetKit.framework + Private: Yes + + SystemMigrationNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigrationNetwork.framework + Private: Yes + + OSEligibility: + + Version: 181.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSEligibility.framework + Private: Yes + + AcousticMaterials: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AcousticMaterials.framework + Private: Yes + + ContactsAccounts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsAccounts.framework + Private: Yes + + IMAssistantCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAssistantCore.framework + Private: Yes + + PreviewsInjection: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsInjection.framework + Private: Yes + + SafetyMonitorUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafetyMonitorUI.framework + Private: Yes + + AutomationMode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutomationMode.framework + Private: Yes + + SiriNotebookUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNotebookUI.framework + Private: Yes + + NewsCore: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsCore.framework + Private: Yes + + SDAPI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SDAPI.framework + Private: Yes + + SoftwareUpdate: + + Version: 6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdate.framework + Private: Yes + + FMCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCore.framework + Private: Yes + + PhotoLibraryServicesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoLibraryServicesCore.framework + Private: Yes + + CoreAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAnalytics.framework + Private: Yes + + Lexicon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Lexicon.framework + Private: Yes + + IDS: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDS.framework + Private: Yes + + BridgeXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeXPC.framework + Private: Yes + + Osprey: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Osprey.framework + Private: Yes + + SiriUI: + + Version: 3404.72.1.14.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUI.framework + Private: Yes + + PaymentUIBase: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PaymentUIBase.framework + Private: Yes + + AudioDSPManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioDSPManager.framework + Private: Yes + + OnDeviceStorageCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorageCore.framework + Private: Yes + + HealthKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthKit.framework + Private: Yes + + CoreAUC: + + Version: 568.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAUC.framework + Private: Yes + + DoNotDisturbKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturbKit.framework + Private: Yes + + AccessibilitySharedSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework + Private: Yes + + ShareServicesCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShareServicesCore.framework + Private: Yes + + MobileAssetExclaveServices: + + Version: 1487.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAssetExclaveServices.framework + Private: Yes + + HealthDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDaemon.framework + Private: Yes + + BookUtility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookUtility.framework + Private: Yes + + AdPlatformsCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatformsCommon.framework + Private: Yes + + CoreNameParser: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNameParser.framework + Private: Yes + + SiriInCall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInCall.framework + Private: Yes + + AppleSRP: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSRP.framework + Private: Yes + + AirPlaySenderKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlaySenderKit.framework + Private: Yes + + TextRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextRecognition.framework + Private: Yes + + ApplicationFirewall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplicationFirewall.framework + Private: Yes + + WorkflowUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUI.framework + Private: Yes + + FindMyCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCore.framework + Private: Yes + + ContactsUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsUICore.framework + Private: Yes + + CoreKE: + + Version: 7.9.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreKE.framework + Private: Yes + + DeviceExpertUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceExpertUI.framework + Private: Yes + + TextComposer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextComposer.framework + Private: Yes + + AppStoreDaemonUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreDaemonUI.framework + Private: Yes + + SiriSocialConversation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSocialConversation.framework + Private: Yes + + SymptomDiagnosticReporter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework + Private: Yes + + EventMetaDataExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventMetaDataExtractor.framework + Private: Yes + + CSCSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CSCSupport.framework + Private: Yes + + SiriInferenceIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInferenceIntents.framework + Private: Yes + + ShazamInsights: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamInsights.framework + Private: Yes + + TelephonyUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TelephonyUtilities.framework + Private: Yes + + ModelCatalogRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelCatalogRuntime.framework + Private: Yes + + AccountsDaemon: + + Version: 113 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsDaemon.framework + Private: Yes + + SoftLinking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftLinking.framework + Private: Yes + + PegasusConfiguration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusConfiguration.framework + Private: Yes + + ContainerManagerUser: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerUser.framework + Private: Yes + + AskToCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskToCore.framework + Private: Yes + + UserNotificationsSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsSettings.framework + Private: Yes + + ASEProcessing: + + Version: 1.41.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.41.0, Copyright Apple Inc, 2015-2024 + Location: /System/Library/PrivateFrameworks/ASEProcessing.framework + Private: Yes + + Futhark: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Futhark.framework + Private: Yes + + CDDataAccess: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework + Private: Yes + + DACoreDAVGlue: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DACoreDAVGlue.framework + Private: Yes + + DACalDAV: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DACalDAV.framework + Private: Yes + + DADaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework + Private: Yes + + OpenDirectoryConfig: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework + Private: Yes + + SignpostSupport: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostSupport.framework + Private: Yes + + UIIntelligenceSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIIntelligenceSupport.framework + Private: Yes + + SiriNetwork: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNetwork.framework + Private: Yes + + NotesShared: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesShared.framework + Private: Yes + + ProximityAppleIDSetupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProximityAppleIDSetupUI.framework + Private: Yes + + SiriRemembers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriRemembers.framework + Private: Yes + + FWAVC: + + Version: 501.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FWAVC.framework + Private: Yes + + NetFSServer: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetFSServer.framework + Private: Yes + + MessageUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MessageUIMacHelper.framework + Private: Yes + + KeyboardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeyboardServices.framework + Private: Yes + + DrawingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DrawingKit.framework + Private: Yes + + WebBookmarks: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebBookmarks.framework + Private: Yes + + InstallCoordination: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstallCoordination.framework + Private: Yes + + Bootability: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Bootability.framework + Private: Yes + + Leonardo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Leonardo.framework + Private: Yes + + SiriFlowEnvironment: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFlowEnvironment.framework + Private: Yes + + FeatureFlagsSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework + Private: Yes + + DoubleAgent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoubleAgent.framework + Private: Yes + + QuickLookGeneration: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookGeneration.framework + Private: Yes + + DeviceToDeviceManager: + + Version: 39.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceToDeviceManager.framework + Private: Yes + + Symbolication: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symbolication.framework + Private: Yes + + Synapse: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Synapse.framework + Private: Yes + + KRExperiments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KRExperiments.framework + Private: Yes + + AppleHIDTransportSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleHIDTransportSupport.framework + Private: Yes + + SocialServices: + + Version: 87 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialServices.framework + Private: Yes + + StatusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StatusKit.framework + Private: Yes + + IAP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IAP.framework + Private: Yes + + NeutrinoKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeutrinoKit.framework + Private: Yes + + GeometryCompression: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeometryCompression.framework + Private: Yes + + NeuralNetworks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeuralNetworks.framework + Private: Yes + + Montreal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Montreal.framework + Private: Yes + + AppleVA: + + Version: 6.2.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVA.framework + Private: Yes + + VectorKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VectorKit.framework + Private: Yes + + SiriCoreMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCoreMetrics.framework + Private: Yes + + PortraitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PortraitCore.framework + Private: Yes + + SiriSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestions.framework + Private: Yes + + MLCompilerServices: + + Version: 3404.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLCompilerServices.framework + Private: Yes + + WiFiAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiAnalytics.framework + Private: Yes + + CloudDocs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudDocs.framework + Private: Yes + + CommunicationsFilter: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommunicationsFilter.framework + Private: Yes + + SiriCam: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCam.framework + Private: Yes + + FamilyCircleUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyCircleUI.framework + Private: Yes + + ArgumentParserInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ArgumentParserInternal.framework + Private: Yes + + QLCharts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QLCharts.framework + Private: Yes + + ExclaveFDRDecode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExclaveFDRDecode.framework + Private: Yes + + MobileBluetooth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileBluetooth.framework + Private: Yes + + GPUToolsCapture: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GPUToolsCapture.framework + Private: Yes + + ReminderKitUI: + + Version: 1225.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ReminderKitUI.framework + Private: Yes + + ShazamCore: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShazamCore.framework + Private: Yes + + SiriTimeAlarmInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeAlarmInternal.framework + Private: Yes + + MarkupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MarkupUI.framework + Private: Yes + + AttributeGraph: + + Version: 6.4.39.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AttributeGraph.framework + Private: Yes + + ParsecModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsecModel.framework + Private: Yes + + AIMLExperimentationAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AIMLExperimentationAnalytics.framework + Private: Yes + + Slideshows: + + Version: 4.5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework + Private: Yes + + OpusFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework/Frameworks/OpusFoundation.framework + Private: Yes + + OpusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Slideshows.framework/Frameworks/OpusKit.framework + Private: Yes + + UIAccessibility: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIAccessibility.framework + Private: Yes + + VoiceTrigger: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceTrigger.framework + Private: Yes + + TypistFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TypistFramework.framework + Private: Yes + + UIUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIUnderstanding.framework + Private: Yes + + FTAWD: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTAWD.framework + Private: Yes + + AppSSOCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOCore.framework + Private: Yes + + ExchangeWebServices: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeWebServices.framework + Private: Yes + + SmartRepliesUI: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartRepliesUI.framework + Private: Yes + + Reveal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Reveal.framework + Private: Yes + + PerfPowerServicesReader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerServicesReader.framework + Private: Yes + + ExclaveSISPTestServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExclaveSISPTestServices.framework + Private: Yes + + ScreenReader: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework + Private: Yes + + ScreenReaderBrailleDriver: + + Version: 10 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Get Info String: Copyright © 2008-2011 Apple Inc. All Rights Reserved. + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderBrailleDriver.framework + Private: Yes + + ScreenReaderOutput: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/ScreenReaderOutput.framework + Private: Yes + + BrailleTranslation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReader.framework/Frameworks/BrailleTranslation.framework + Private: Yes + + SmartReplies: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartReplies.framework + Private: Yes + + EncoreXPCService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EncoreXPCService.framework + Private: Yes + + OmniSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OmniSearch.framework + Private: Yes + + DiskImages2: + + Version: 385.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskImages2.framework + Private: Yes + + _SonicKit_MusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_SonicKit_MusicKit.framework + Private: Yes + + InAppMessages: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InAppMessages.framework + Private: Yes + + FontServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FontServices.framework + Private: Yes + + LiveExecutionResultsProbe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsProbe.framework + Private: Yes + + PhotoImaging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoImaging.framework + Private: Yes + + PreviewsServicesUI: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsServicesUI.framework + Private: Yes + + SiriTimeTimerInternal: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeTimerInternal.framework + Private: Yes + + Cosmo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Cosmo.framework + Private: Yes + + AppleAccount: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAccount.framework + Private: Yes + + NetAuth: + + Version: 6.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetAuth.framework + Private: Yes + + SpeechObjects: + + Version: 9.0.72 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpeechObjects.framework + Private: Yes + + FindMyStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyStorage.framework + Private: Yes + + InputToolKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputToolKit.framework + Private: Yes + + LinkServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkServices.framework + Private: Yes + + ACSEFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACSEFoundation.framework + Private: Yes + + AppPredictionToolsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionToolsInternal.framework + Private: Yes + + GameCenterFoundation: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterFoundation.framework + Private: Yes + + KeyboardLayouts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeyboardLayouts.framework + Private: Yes + + FamilyCircle: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyCircle.framework + Private: Yes + + FoundInAppsPlugins: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FoundInAppsPlugins.framework + Private: Yes + + MacinTalk: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MacinTalk.framework + Private: Yes + + PhotoPrintProduct: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoPrintProduct.framework + Private: Yes + + NewsURLBucket: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsURLBucket.framework + Private: Yes + + MLRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLRuntime.framework + Private: Yes + + SharePointManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharePointManagement.framework + Private: Yes + + NewDeviceOutreachMacUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewDeviceOutreachMacUI.framework + Private: Yes + + APFS: + + Version: 2332.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APFS.framework + Private: Yes + + AppleIDAuthSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework + Private: Yes + + DeviceSpecSupport: + + Version: 5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceSpecSupport.framework + Private: Yes + + WeatherData: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherData.framework + Private: Yes + + AdID: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdID.framework + Private: Yes + + OnDeviceStorageInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnDeviceStorageInternal.framework + Private: Yes + + SoftwareUpdateCoreSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework + Private: Yes + + MapsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsUI.framework + Private: Yes + + UVFSXPCService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVFSXPCService.framework + Private: Yes + + FileProvider: + + Version: 2882.101.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProvider.framework + Private: Yes + + TestFlightCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TestFlightCore.framework + Private: Yes + + MMCSServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MMCSServices.framework + Private: Yes + + SiriUserSegments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUserSegments.framework + Private: Yes + + SensitiveContentAnalysisUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensitiveContentAnalysisUI.framework + Private: Yes + + CloudAssets: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAssets.framework + Private: Yes + + DRMFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DRMFoundation.framework + Private: Yes + + SymptomShared: + + Version: 2022.100.26 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomShared.framework + Private: Yes + + ACDEClient: + + Version: 2.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACDEClient.framework + Private: Yes + + SEService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SEService.framework + Private: Yes + + IPTelephony: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/IPTelephony.framework + Private: Yes + + SiriTTSTraining: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTSTraining.framework + Private: Yes + + DialogEngine: + + Version: 3404.15.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DialogEngine.framework + Private: Yes + + GeoAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoAnalytics.framework + Private: Yes + + CoreCDPInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDPInternal.framework + Private: Yes + + SiriMessageBus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessageBus.framework + Private: Yes + + HumanUnderstandingFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUnderstandingFoundation.framework + Private: Yes + + GenerativeAssistantActions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantActions.framework + Private: Yes + + SiriInformationSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInformationSearch.framework + Private: Yes + + MorphunSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorphunSwift.framework + Private: Yes + + Recount: + + Version: 36 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Recount.framework + Private: Yes + + ProactiveDaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveDaemonSupport.framework + Private: Yes + + ProofReader: + + Version: 2.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProofReader.framework + Private: Yes + + SiriSuggestionsBaseModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsBaseModel.framework + Private: Yes + + TextInputTestingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputTestingKit.framework + Private: Yes + + FindMyCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCommon.framework + Private: Yes + + SiriOrchestration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOrchestration.framework + Private: Yes + + FMFCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMFCore.framework + Private: Yes + + PerformanceAnalysis: + + Version: 1.385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceAnalysis.framework + Private: Yes + + UniversalDrag: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UniversalDrag.framework + Private: Yes + + SpatialConnect: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpatialConnect.framework + Private: Yes + + DiskImages: + + Version: 671.100.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskImages.framework + Private: Yes + + RemoteViewServices: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteViewServices.framework + Private: Yes + + LighthouseBitacoraFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseBitacoraFramework.framework + Private: Yes + + SafariFoundation: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariFoundation.framework + Private: Yes + + CoreRecents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRecents.framework + Private: Yes + + NewsURLResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsURLResolution.framework + Private: Yes + + Dyld: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Dyld.framework + Private: Yes + + IntelligenceFlowShared: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowShared.framework + Private: Yes + + FusionTracker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FusionTracker.framework + Private: Yes + + UserActivity: + + Version: 551 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserActivity.framework + Private: Yes + + HIDAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDAnalytics.framework + Private: Yes + + OAHSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OAHSoftwareUpdate.framework + Private: Yes + + WatchdogServiceManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchdogServiceManagement.framework + Private: Yes + + ASRBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ASRBridge.framework + Private: Yes + + AppleIDSSOAuthentication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework + Private: Yes + + LearnedFeatures: + + Version: 7.63.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LearnedFeatures.framework + Private: Yes + + NetworkServiceProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkServiceProxy.framework + Private: Yes + + ContactsUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsUIMacHelper.framework + Private: Yes + + PersonalIntelligenceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalIntelligenceCore.framework + Private: Yes + + TimeMachine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeMachine.framework + Private: Yes + + MathTypesetting: + + Version: 3.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MathTypesetting.framework + Private: Yes + + PowerlogControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogControl.framework + Private: Yes + + MIL: + + Version: 3404.16 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MIL.framework + Private: Yes + + BusinessServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessServices.framework + Private: Yes + + UserManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserManagement.framework + Private: Yes + + EmailDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailDaemon.framework + Private: Yes + + UXKit: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UXKit.framework + Private: Yes + + AppleNVMe: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleNVMe.framework + Private: Yes + + SiriNLUOverrides: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriNLUOverrides.framework + Private: Yes + + CTBlastDoorSupport: + + Version: 12322 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CTBlastDoorSupport.framework + Private: Yes + + MediaRemote: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaRemote.framework + Private: Yes + + PersistentConnection: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersistentConnection.framework + Private: Yes + + iCalendar: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCalendar.framework + Private: Yes + + PrivateSearchCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchCore.framework + Private: Yes + + NotesUI: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesUI.framework + Private: Yes + + SignpostCollection: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostCollection.framework + Private: Yes + + core80211DriverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/core80211DriverKit.framework + Private: Yes + + CoreRecognition: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRecognition.framework + Private: Yes + + SiriSuggestionsIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsIntelligence.framework + Private: Yes + + SiriEntityMatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriEntityMatcher.framework + Private: Yes + + USTBridgeConnection: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/USTBridgeConnection.framework + Private: Yes + + HearingUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingUtilities.framework + Private: Yes + + nt: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/nt.framework + Private: Yes + + SearchUICardKitProviderSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchUICardKitProviderSupport.framework + Private: Yes + + GenerativeFunctions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeFunctions.framework + Private: Yes + + Morpheus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Morpheus.framework + Private: Yes + + ChronoUIServices: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoUIServices.framework + Private: Yes + + FeedbackService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackService.framework + Private: Yes + + CalculateUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalculateUI.framework + Private: Yes + + IMDaemonCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDaemonCore.framework + Private: Yes + + CoreAccessibility: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAccessibility.framework + Private: Yes + + SiriHomeAccessoryFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriHomeAccessoryFramework.framework + Private: Yes + + HelpData: + + Version: 2.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Copyright 2000-2021, Apple Computer, Inc. + Location: /System/Library/PrivateFrameworks/HelpData.framework + Private: Yes + + BehaviorMiner: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BehaviorMiner.framework + Private: Yes + + SystemMigrationUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemMigrationUtils.framework + Private: Yes + + MediaAnalysisBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisBlastDoorSupport.framework + Private: Yes + + CoreNavigation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreNavigation.framework + Private: Yes + + UnifiedMessagingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UnifiedMessagingKit.framework + Private: Yes + + PostSiriEngagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PostSiriEngagement.framework + Private: Yes + + lighthouse_runtime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/lighthouse_runtime.framework + Private: Yes + + AppleGVA: + + Version: 113.56 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleGVA.framework + Private: Yes + + FaceTimeTouchBarSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeTouchBarSupport.framework + Private: Yes + + AppNotificationsLoggingClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppNotificationsLoggingClient.framework + Private: Yes + + GPUToolsTransport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GPUToolsTransport.framework + Private: Yes + + FMCoreLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCoreLite.framework + Private: Yes + + PowerUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerUI.framework + Private: Yes + + SecureTransactionService: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureTransactionService.framework + Private: Yes + + MediaServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaServices.framework + Private: Yes + + ProactiveMagicalMoments: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveMagicalMoments.framework + Private: Yes + + MapsSuggestions: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSuggestions.framework + Private: Yes + + _JetEngine_SwiftUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_JetEngine_SwiftUI.framework + Private: Yes + + CPMLBestShim: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPMLBestShim.framework + Private: Yes + + WorkflowUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUICore.framework + Private: Yes + + GenerativeAssistantCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantCommon.framework + Private: Yes + + AVFCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVFCapture.framework + Private: Yes + + CoreSpeechUtils: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpeechUtils.framework + Private: Yes + + RecapPerformanceTesting: + + Version: 50 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RecapPerformanceTesting.framework + Private: Yes + + WellnessUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WellnessUI.framework + Private: Yes + + CoreSuggestionsML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsML.framework + Private: Yes + + ODDIFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ODDIFramework.framework + Private: Yes + + XprotectFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XprotectFramework.framework + Private: Yes + + AccountsUISettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsUISettings.framework + Private: Yes + + iPodUpdater: + + Version: 308 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iPodUpdater.framework + Private: Yes + + PrototypeTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrototypeTools.framework + Private: Yes + + TVAppServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVAppServices.framework + Private: Yes + + FindMyPairing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyPairing.framework + Private: Yes + + CalendarUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUIKit.framework + Private: Yes + + MetalTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetalTools.framework + Private: Yes + + CryptexKit: + + Version: 493.101.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptexKit.framework + Private: Yes + + OpenAPIRuntimeInternal: + + Version: 1.8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenAPIRuntimeInternal.framework + Private: Yes + + SiriPlaybackControlIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPlaybackControlIntents.framework + Private: Yes + + ContactsPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsPersistence.framework + Private: Yes + + IntlPreferences: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntlPreferences.framework + Private: Yes + + SpectroKit: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpectroKit.framework + Private: Yes + + SensingPredictServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensingPredictServices.framework + Private: Yes + + AppleMediaServicesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUI.framework + Private: Yes + + PlatformSSO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSO.framework + Private: Yes + + TranslationAPISupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationAPISupport.framework + Private: Yes + + SnippetUI_Proto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetUI_Proto.framework + Private: Yes + + BrailleSymbology: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BrailleSymbology.framework + Private: Yes + + AutoFillCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoFillCore.framework + Private: Yes + + CoreEmoji: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreEmoji.framework + Private: Yes + + MobileObliteration: + + Version: 320.100.15 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileObliteration.framework + Private: Yes + + AppleDepth: + + Version: 137.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDepth.framework + Private: Yes + + AppStoreKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppStoreKit.framework + Private: Yes + + DeviceDiscoveryUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceDiscoveryUICore.framework + Private: Yes + + IntentsUICardKitProviderSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsUICardKitProviderSupport.framework + Private: Yes + + SiriKitFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriKitFlow.framework + Private: Yes + + FaceTimeNotificationServiceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationServiceCore.framework + Private: Yes + + ContextualUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualUnderstanding.framework + Private: Yes + + BiomePubSub: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomePubSub.framework + Private: Yes + + APConfigurationSystem: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APConfigurationSystem.framework + Private: Yes + + AppleDeviceQuerySupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDeviceQuerySupport.framework + Private: Yes + + AvailabilityKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvailabilityKit.framework + Private: Yes + + AXCoreUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXCoreUtilities.framework + Private: Yes + + URLFormatting: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/URLFormatting.framework + Private: Yes + + acfs: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/acfs.framework + Private: Yes + + QOSToolkit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QOSToolkit.framework + Private: Yes + + VisualIntelligence: + + Version: 0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualIntelligence.framework + Private: Yes + + WiFiPeerToPeer: + + Version: 725.36.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiPeerToPeer.framework + Private: Yes + + ProactiveML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveML.framework + Private: Yes + + OSASubmissionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSASubmissionClient.framework + Private: Yes + + MobileActivationMacOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileActivationMacOS.framework + Private: Yes + + AppleSystemInfo: + + Version: 3.1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleSystemInfo.framework + Private: Yes + + KeychainCircle: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KeychainCircle.framework + Private: Yes + + SoftwareUpdateCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateCore.framework + Private: Yes + + UserNotificationsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsCore.framework + Private: Yes + + CoreSVG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSVG.framework + Private: Yes + + SiriRequestDispatcher: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriRequestDispatcher.framework + Private: Yes + + TextInputUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputUI.framework + Private: Yes + + BiomeFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeFoundation.framework + Private: Yes + + MorpheusExtensions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorpheusExtensions.framework + Private: Yes + + MicroLocation: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MicroLocation.framework + Private: Yes + + DFRBrightness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRBrightness.framework + Private: Yes + + SiriCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCore.framework + Private: Yes + + SetupAssistantSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantSupport.framework + Private: Yes + + HIDDisplay: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDDisplay.framework + Private: Yes + + MultitouchSupport: + + Version: 8440.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MultitouchSupport.framework + Private: Yes + + DeepThought: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepThought.framework + Private: Yes + + CoreSuggestions: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestions.framework + Private: Yes + + SyncedDefaultsDaemon: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedDefaultsDaemon.framework + Private: Yes + + SearchFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SearchFoundation.framework + Private: Yes + + FlightUtilitiesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlightUtilitiesCore.framework + Private: Yes + + EmailAddressing: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailAddressing.framework + Private: Yes + + SystemStatusUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatusUI.framework + Private: Yes + + AudioSession: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioSession.framework + Private: Yes + + PassKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitServices.framework + Private: Yes + + CPMS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CPMS.framework + Private: Yes + + NeighborhoodActivityConduit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NeighborhoodActivityConduit.framework + Private: Yes + + AdPlatformsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdPlatformsInternal.framework + Private: Yes + + SecurityTokend: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecurityTokend.framework + Private: Yes + + HomeAutomationUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAutomationUIFramework.framework + Private: Yes + + PromotedContentPrediction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentPrediction.framework + Private: Yes + + ToneLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ToneLibrary.framework + Private: Yes + + PhotosPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosPlayer.framework + Private: Yes + + NewsAnalyticsUpload: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsAnalyticsUpload.framework + Private: Yes + + QuickLookSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookSupport.framework + Private: Yes + + IO80211: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IO80211.framework + Private: Yes + + PreviewsServices: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsServices.framework + Private: Yes + + UAUPlugin: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UAUPlugin.framework + Private: Yes + + CoreCapture: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCapture.framework + Private: Yes + + ScreenSharingKit: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenSharingKit.framework + Private: Yes + + VisualPairing: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualPairing.framework + Private: Yes + + PhotosUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIFoundation.framework + Private: Yes + + IPConfiguration: + + Version: 1.21 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1,21 + Location: /System/Library/PrivateFrameworks/IPConfiguration.framework + Private: Yes + + AVKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AVKitCore.framework + Private: Yes + + SentencePieceInternal: + + Version: 52.206 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SentencePieceInternal.framework + Private: Yes + + AppPredictionUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionUI.framework + Private: Yes + + CharacterPicker: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CharacterPicker.framework + Private: Yes + + CoreSpotlightImportDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSpotlightImportDaemon.framework + Private: Yes + + ALDataTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ALDataTypes.framework + Private: Yes + + DeviceTreeKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceTreeKit.framework + Private: Yes + + HealthDomainsTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HealthDomainsTools.framework + Private: Yes + + PoirotSQLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PoirotSQLite.framework + Private: Yes + + StoreJavaScript: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreJavaScript.framework + Private: Yes + + StoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StoreUI.framework + Private: Yes + + Human: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Human.framework + Private: Yes + + DASDelegate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DASDelegate.framework + Private: Yes + + FaceTimeMessageStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeMessageStore.framework + Private: Yes + + TimeSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TimeSync.framework + Private: Yes + + GeoKit: + + Version: 2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GeoKit.framework + Private: Yes + + PassKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitCore.framework + Private: Yes + + AOSUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AOSUI.framework + Private: Yes + + DeviceActivityConductor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceActivityConductor.framework + Private: Yes + + SiriSettingsIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSettingsIntents.framework + Private: Yes + + CoreSuggestionsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSuggestionsUI.framework + Private: Yes + + CalendarUIKitInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUIKitInternal.framework + Private: Yes + + DendriteIngest: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DendriteIngest.framework + Private: Yes + + AppleMediaServicesKitSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesKitSupport.framework + Private: Yes + + DirectoryServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryServer.framework + Private: Yes + + CFDirectoryServer: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirectoryServer.framework + Private: Yes + + NetworkMenusCommon: + + Version: 2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkMenusCommon.framework + Private: Yes + + AppleIDSetupUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleIDSetupUI.framework + Private: Yes + + PreviewsOSSupport: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PreviewsOSSupport.framework + Private: Yes + + ExposureNotificationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExposureNotificationDaemon.framework + Private: Yes + + SiriDailyBriefingInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriDailyBriefingInternal.framework + Private: Yes + + CorePhotogrammetry: + + Version: 2.59.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CorePhotogrammetry.framework + Private: Yes + + MetricKitSource: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitSource.framework + Private: Yes + + GridDataServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GridDataServices.framework + Private: Yes + + LiveFS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveFS.framework + Private: Yes + + DisplayTransportServices: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DisplayTransportServices.framework + Private: Yes + + CoreEmbeddedSpeechRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreEmbeddedSpeechRecognition.framework + Private: Yes + + MetricMeasurement: + + Version: 0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricMeasurement.framework + Private: Yes + + MDMClientLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MDMClientLibrary.framework + Private: Yes + + EAP8021X: + + Version: 14.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EAP8021X.framework + Private: Yes + + CVNLP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CVNLP.framework + Private: Yes + + AudioPasscode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioPasscode.framework + Private: Yes + + TrialServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrialServer.framework + Private: Yes + + AppleMediaServicesUIDynamic: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUIDynamic.framework + Private: Yes + + AppleVPA: + + Version: 3.30.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVPA.framework + Private: Yes + + SiriCrossDeviceArbitration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCrossDeviceArbitration.framework + Private: Yes + + IOMobileFramebuffer: + + Version: 343.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework + Private: Yes + + LocalAuthenticationCoreUI: + + Version: 1656.100.223 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationCoreUI.framework + Private: Yes + + AppleAccountUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAccountUI.framework + Private: Yes + + MobileAsset: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAsset.framework + Private: Yes + + IMTransferServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferServices.framework + Private: Yes + + RuntimeInternal: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RuntimeInternal.framework + Private: Yes + + JoinRequests: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JoinRequests.framework + Private: Yes + + VDAF: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VDAF.framework + Private: Yes + + QuickLookIosmac: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 5.0, Copyright Apple Inc. 2007-2013 + Location: /System/Library/PrivateFrameworks/QuickLookIosmac.framework + Private: Yes + + SyncServicesUI: + + Version: 8.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncServicesUI.framework + Private: Yes + + SiriMailOntology: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailOntology.framework + Private: Yes + + SiriInformationTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInformationTypes.framework + Private: Yes + + AskToDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AskToDaemon.framework + Private: Yes + + SiriSuggestionsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSuggestionsKit.framework + Private: Yes + + ActionPredictionHeuristicsInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionPredictionHeuristicsInternal.framework + Private: Yes + + HumanUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HumanUI.framework + Private: Yes + + UVCFrameProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCFrameProcessor.framework + Private: Yes + + WidgetRenderer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WidgetRenderer.framework + Private: Yes + + TextToSpeechMauiSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechMauiSupport.framework + Private: Yes + + SiriObservation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriObservation.framework + Private: Yes + + FMF: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMF.framework + Private: Yes + + TCCInterface: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TCCInterface.framework + Private: Yes + + PhotosUIPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIPrivate.framework + Private: Yes + + SystemAdministrationInterface: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemAdministrationInterface.framework + Private: Yes + + BackgroundSystemTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackgroundSystemTasks.framework + Private: Yes + + CloudSubscriptionFeatures: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudSubscriptionFeatures.framework + Private: Yes + + SocialAppsCore: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialAppsCore.framework + Private: Yes + + BoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BoardServices.framework + Private: Yes + + ContainerManagerCommon: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerCommon.framework + Private: Yes + + FaceTimeNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotification.framework + Private: Yes + + ConfigurationProfilesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConfigurationProfilesUI.framework + Private: Yes + + SiriMailUIModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailUIModel.framework + Private: Yes + + TextToSpeechBundleSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechBundleSupport.framework + Private: Yes + + SignalCompression: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignalCompression.framework + Private: Yes + + LinkMetadata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkMetadata.framework + Private: Yes + + SiriPrivateLearningInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPrivateLearningInference.framework + Private: Yes + + IntentsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsFoundation.framework + Private: Yes + + TipsUI: + + Version: 778.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsUI.framework + Private: Yes + + CloudKitDaemon: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitDaemon.framework + Private: Yes + + TeaFoundation: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaFoundation.framework + Private: Yes + + NearField: + + Version: 354.27 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearField.framework + Private: Yes + + SAML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SAML.framework + Private: Yes + + IdleTimerServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IdleTimerServices.framework + Private: Yes + + CalendarMigration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarMigration.framework + Private: Yes + + WalletBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WalletBlastDoorSupport.framework + Private: Yes + + EcosystemAnalytics: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EcosystemAnalytics.framework + Private: Yes + + WritingToolsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WritingToolsUI.framework + Private: Yes + + LocalAuthenticationCore: + + Version: 1656.100.223 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationCore.framework + Private: Yes + + UnifiedAssetFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UnifiedAssetFramework.framework + Private: Yes + + SiriTimeInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTimeInternal.framework + Private: Yes + + Quagga: + + Version: 177 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Quagga.framework + Private: Yes + + ManagedClient: + + Version: 17.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedClient.framework + Private: Yes + + SpotlightResources: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightResources.framework + Private: Yes + + iWorkXPC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iWorkXPC.framework + Private: Yes + + AssistantServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantServices.framework + Private: Yes + + MobileSoftwareUpdate: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSoftwareUpdate.framework + Private: Yes + + Ensemble: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Ensemble.framework + Private: Yes + + WorkflowUIServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowUIServices.framework + Private: Yes + + HomeKitEventRouter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitEventRouter.framework + Private: Yes + + StreamingExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StreamingExtractor.framework + Private: Yes + + CoreLSKD: + + Version: 19.18.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/CoreLSKD.framework + Private: Yes + + UIKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitMacHelper.framework + Private: Yes + + UpdatePreboot: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: UpdatePreboot version 1.0, Copyright © 2021 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/UpdatePreboot.framework + Private: Yes + + ClassKitUI: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClassKitUI.framework + Private: Yes + + SharingXPCServices: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharingXPCServices.framework + Private: Yes + + MediaAgnosticUSB: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAgnosticUSB.framework + Private: Yes + + NotesUIServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesUIServices.framework + Private: Yes + + VideoToolboxParavirtualizationSupport: + + Version: 40.5.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework + Private: Yes + + AAAFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AAAFoundation.framework + Private: Yes + + SiriInferenceFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInferenceFlow.framework + Private: Yes + + CollectionsInternal: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CollectionsInternal.framework + Private: Yes + + SiriTaskEngagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTaskEngagement.framework + Private: Yes + + RemindersIntentsFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersIntentsFramework.framework + Private: Yes + + FeatureStore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeatureStore.framework + Private: Yes + + SiriXShimTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriXShimTools.framework + Private: Yes + + DistributedTimers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedTimers.framework + Private: Yes + + iCloudSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudSettings.framework + Private: Yes + + _AppIntentsServices_AppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_AppIntentsServices_AppIntents.framework + Private: Yes + + Espresso: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Espresso.framework + Private: Yes + + AccessibilityUtilities: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilityUtilities.framework + Private: Yes + + IMSharedUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMSharedUI.framework + Private: Yes + + ktrace: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ktrace.framework + Private: Yes + + JetUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JetUI.framework + Private: Yes + + IMFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMFoundation.framework + Private: Yes + + AppleMobileFileIntegrity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework + Private: Yes + + TeaSettings: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TeaSettings.framework + Private: Yes + + Heimdal: + + Version: 4.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Heimdal.framework + Private: Yes + + DirectoryEditor: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DirectoryEditor.framework + Private: Yes + + EventKitUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventKitUICore.framework + Private: Yes + + SiriMessagesFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesFlow.framework + Private: Yes + + ProtoDataExtractor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtoDataExtractor.framework + Private: Yes + + ApplePhotonDetectorServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ApplePhotonDetectorServices.framework + Private: Yes + + PegasusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PegasusKit.framework + Private: Yes + + DiagnosticRequestService: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticRequestService.framework + Private: Yes + + MDSChannel: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MDSChannel.framework + Private: Yes + + Symptoms: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/Symptoms.framework + Private: Yes + + SymptomEvaluator: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomEvaluator.framework + Private: Yes + + SymptomAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework + Private: Yes + + SymptomPresentationLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationLite.framework + Private: Yes + + SymptomPresentationFeed: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework + Private: Yes + + ManagedEvent: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/ManagedEvent.framework + Private: Yes + + IDSFoundation: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSFoundation.framework + Private: Yes + + SiriPhoneIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPhoneIntents.framework + Private: Yes + + CryptoKitPrivate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptoKitPrivate.framework + Private: Yes + + TrustedPeers: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TrustedPeers.framework + Private: Yes + + SiriFindMy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriFindMy.framework + Private: Yes + + MetricsFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricsFramework.framework + Private: Yes + + SoftwareUpdateMacController: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SoftwareUpdateMacController.framework + Private: Yes + + CloudFamilyRestrictionsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudFamilyRestrictionsDaemon.framework + Private: Yes + + IOKitten: + + Version: 300.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOKitten.framework + Private: Yes + + CoreHandwriting: + + Version: 161 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreHandwriting.framework + Private: Yes + + CloudPhotoLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework + Private: Yes + + TokenGenerationInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGenerationInference.framework + Private: Yes + + SemanticPerception: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SemanticPerception.framework + Private: Yes + + PlatformSSOCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlatformSSOCore.framework + Private: Yes + + FindMyServerInteraction: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyServerInteraction.framework + Private: Yes + + SecurityUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecurityUICore.framework + Private: Yes + + Coherence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Coherence.framework + Private: Yes + + TipsCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsCore.framework + Private: Yes + + SharedWebCredentials: + + Version: 1001 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SharedWebCredentials.framework + Private: Yes + + UVCExtension: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UVCExtension.framework + Private: Yes + + MailUI: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailUI.framework + Private: Yes + + AdaptiveVoiceShortcuts: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AdaptiveVoiceShortcuts.framework + Private: Yes + + Cards: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Cards.framework + Private: Yes + + CommerceKit: + + Version: 1.2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommerceKit.framework + Private: Yes + + CommerceCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommerceKit.framework/Frameworks/CommerceCore.framework + Private: Yes + + MorphunAssets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MorphunAssets.framework + Private: Yes + + CMPhoto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMPhoto.framework + Private: Yes + + NewsTransport: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsTransport.framework + Private: Yes + + SmartRepliesServer: + + Version: 73.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SmartRepliesServer.framework + Private: Yes + + AppleJPEG: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleJPEG.framework + Private: Yes + + SensitiveContentAnalysisML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SensitiveContentAnalysisML.framework + Private: Yes + + CSExattrCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CSExattrCrypto.framework + Private: Yes + + CloudAttestation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAttestation.framework + Private: Yes + + BookKit: + + Version: 2247 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookKit.framework + Private: Yes + + MediaAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysis.framework + Private: Yes + + HomeKitEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitEvents.framework + Private: Yes + + EmailFoundation: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmailFoundation.framework + Private: Yes + + ScreenTimeSwift: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeSwift.framework + Private: Yes + + ExchangeNotes: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeNotes.framework + Private: Yes + + IntelligentRoutingDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingDaemon.framework + Private: Yes + + CoreBrightness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreBrightness.framework + Private: Yes + + PhotosSwiftUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosSwiftUICore.framework + Private: Yes + + RecoveryOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RecoveryOS.framework + Private: Yes + + kperfdata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/kperfdata.framework + Private: Yes + + TVRemoteCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVRemoteCore.framework + Private: Yes + + ProactiveContextClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveContextClient.framework + Private: Yes + + PhotosUIEdit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUIEdit.framework + Private: Yes + + Catalyst: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Catalyst.framework + Private: Yes + + ContactsDonation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsDonation.framework + Private: Yes + + DarwinDirectoryQuery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectoryQuery.framework + Private: Yes + + MobileInstallation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileInstallation.framework + Private: Yes + + InstalledContentLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InstalledContentLibrary.framework + Private: Yes + + BluetoothServicesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothServicesUI.framework + Private: Yes + + SiriTasks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTasks.framework + Private: Yes + + RemoteCoreML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteCoreML.framework + Private: Yes + + FindMyDaemonSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyDaemonSupport.framework + Private: Yes + + FeedbackCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FeedbackCore.framework + Private: Yes + + EnhancedLoggingState: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EnhancedLoggingState.framework + Private: Yes + + AssetCacheServicesExtensions: + + Version: 135.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssetCacheServicesExtensions.framework + Private: Yes + + JavaScriptOSA: + + Version: 1.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaScriptOSA.framework + Private: Yes + + BridgeOSObliteration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSObliteration.framework + Private: Yes + + AssertionServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssertionServices.framework + Private: Yes + + FaceTimeNotificationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationCore.framework + Private: Yes + + HeadphoneSettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneSettingsUI.framework + Private: Yes + + LocalAuthenticationRecoveryUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalAuthenticationRecoveryUI.framework + Private: Yes + + ControlCenter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ControlCenter.framework + Private: Yes + + UserNotificationsKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UserNotificationsKit.framework + Private: Yes + + StorageKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StorageKit.framework + Private: Yes + + SignpostNotification: + + Version: 1.151.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SignpostNotification.framework + Private: Yes + + MediaGroupsDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaGroupsDaemon.framework + Private: Yes + + perfdata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/perfdata.framework + Private: Yes + + AppleScript: + + Version: 2.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleScript.framework + Private: Yes + + GenerativeAssistantEnablementFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantEnablementFlow.framework + Private: Yes + + CalDAV: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalDAV.framework + Private: Yes + + PhotosIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosIntelligence.framework + Private: Yes + + ScreenTimeUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeUI.framework + Private: Yes + + PerformanceControlKit: + + Version: 1175.100.103 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceControlKit.framework + Private: Yes + + WiFiVelocity: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiVelocity.framework + Private: Yes + + CoreDuetContext: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetContext.framework + Private: Yes + + AutoLoop: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoLoop.framework + Private: Yes + + SystemAdministration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: SystemAdministration Framework + Location: /System/Library/PrivateFrameworks/SystemAdministration.framework + Private: Yes + + Timeline: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Timeline.framework + Private: Yes + + NetworkInfo: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NetworkInfo.framework + Private: Yes + + ShortcutDropletServices: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShortcutDropletServices.framework + Private: Yes + + vCard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/vCard.framework + Private: Yes + + SiriTranslationIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTranslationIntents.framework + Private: Yes + + MultiverseSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MultiverseSupport.framework + Private: Yes + + VideoSubscriberAccountUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideoSubscriberAccountUI.framework + Private: Yes + + AXAssetLoader: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AXAssetLoader.framework + Private: Yes + + LinkPresentationStyleSheetParsing: + + Version: 272 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LinkPresentationStyleSheetParsing.framework + Private: Yes + + MetricKitCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitCore.framework + Private: Yes + + VoiceControl: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceControl.framework + Private: Yes + + AppSupportUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSupportUI.framework + Private: Yes + + GCoreFramework: + + Version: 1026.100.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GCoreFramework.framework + Private: Yes + + FTServices: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FTServices.framework + Private: Yes + + InAppMessagesCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InAppMessagesCore.framework + Private: Yes + + CoreOC: + + Version: 10.13.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOC.framework + Private: Yes + + FrontBoard: + + Version: 943.5.17 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FrontBoard.framework + Private: Yes + + AppleJPEGXL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleJPEGXL.framework + Private: Yes + + SystemStatus: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatus.framework + Private: Yes + + CoreThreadCommissionerService: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThreadCommissionerService.framework + Private: Yes + + EDPSecurity: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EDPSecurity.framework + Private: Yes + + WebFilterDNS: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WebFilterDNS.framework + Private: Yes + + ImagePlaygroundInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ImagePlaygroundInternal.framework + Private: Yes + + OAuth: + + Version: 25 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OAuth.framework + Private: Yes + + iCloudQuotaUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudQuotaUI.framework + Private: Yes + + ShimGameServices: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ShimGameServices.framework + Private: Yes + + AmbientDisplay: + + Version: 149 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AmbientDisplay.framework + Private: Yes + + DiagnosticLogCollection: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework + Private: Yes + + GameServicesCore: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameServicesCore.framework + Private: Yes + + SpeechDictionary: + + Version: 9.0.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 9.0.4 + Location: /System/Library/PrivateFrameworks/SpeechDictionary.framework + Private: Yes + + SiriReferenceResolution: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolution.framework + Private: Yes + + WindowManager: + + Version: 278.4.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WindowManager.framework + Private: Yes + + FindMyMac: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyMac.framework + Private: Yes + + CMCaptureDevice: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CMCaptureDevice.framework + Private: Yes + + JavaLaunching: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/JavaLaunching.framework + Private: Yes + + GenerativeModelsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeModelsFoundation.framework + Private: Yes + + WiFiPolicy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WiFiPolicy.framework + Private: Yes + + CoreRoutine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRoutine.framework + Private: Yes + + QuickLookThumbnailGeneration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailGeneration.framework + Private: Yes + + PowerlogHelperdOperators: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PowerlogHelperdOperators.framework + Private: Yes + + MobileContainerManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileContainerManager.framework + Private: Yes + + BrightnessControl: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BrightnessControl.framework + Private: Yes + + AltruisticBodyPoseKit: + + Version: 5.8 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AltruisticBodyPoseKit.framework + Private: Yes + + ANEClientSignals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANEClientSignals.framework + Private: Yes + + PrivateFederatedLearning: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateFederatedLearning.framework + Private: Yes + + HomeAppIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeAppIntents.framework + Private: Yes + + ExtensionKit: + + Version: 97 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExtensionKit.framework + Private: Yes + + AppleDepthCore: + + Version: 137.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleDepthCore.framework + Private: Yes + + ExchangeSync: + + Version: 2007 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ExchangeSync.framework + Private: Yes + + LighthouseCoreMLModelAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseCoreMLModelAnalysis.framework + Private: Yes + + Geometry: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Geometry.framework + Private: Yes + + PassKitMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitMacHelper.framework + Private: Yes + + IntelligencePlatformCompute: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligencePlatformCompute.framework + Private: Yes + + CoordinationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoordinationCore.framework + Private: Yes + + InternationalSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternationalSupport.framework + Private: Yes + + SiriUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUIFoundation.framework + Private: Yes + + VFXBase: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/VFXBase.framework + Private: Yes + + NewsFoundation: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsFoundation.framework + Private: Yes + + AppAttestInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppAttestInternal.framework + Private: Yes + + CVAMatrix: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CVAMatrix.framework + Private: Yes + + GameCenterUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterUI.framework + Private: Yes + + DiagnosticRequest: + + Version: 1.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiagnosticRequest.framework + Private: Yes + + SwiftUIAccessibility: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftUIAccessibility.framework + Private: Yes + + MailWebProcessSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailWebProcessSupport.framework + Private: Yes + + IntelligenceFlow: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlow.framework + Private: Yes + + GameCenterUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterUICore.framework + Private: Yes + + Jet: + + Version: 11.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Jet.framework + Private: Yes + + MLAssetIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLAssetIO.framework + Private: Yes + + DFRFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DFRFoundation.framework + Private: Yes + + ContextKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextKit.framework + Private: Yes + + GraphKit: + + Version: 1.0.5 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/GraphKit.framework + Private: Yes + + AppleNeuralEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleNeuralEngine.framework + Private: Yes + + StocksKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StocksKit.framework + Private: Yes + + CloudAssetDaemon: + + Version: 2250.36.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudAssetDaemon.framework + Private: Yes + + SiriMailUI: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMailUI.framework + Private: Yes + + ProDisplayLibrary: + + Version: 9.4.6 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProDisplayLibrary.framework + Private: Yes + + BackBoardHIDEventFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackBoardHIDEventFoundation.framework + Private: Yes + + ProactiveBlendingLayer_macOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProactiveBlendingLayer_macOS.framework + Private: Yes + + PodcastServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastServices.framework + Private: Yes + + AssistantSettingsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantSettingsFoundation.framework + Private: Yes + + CoreCDP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreCDP.framework + Private: Yes + + RemoteManagement: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagement.framework + Private: Yes + + ACIAdapter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ACIAdapter.framework + Private: Yes + + LiveExecutionResultsFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LiveExecutionResultsFoundation.framework + Private: Yes + + HIDRMKit: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HIDRMKit.framework + Private: Yes + + SiriInstrumentation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriInstrumentation.framework + Private: Yes + + InputAccessoriesSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAccessoriesSettings.framework + Private: Yes + + WatchdogClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchdogClient.framework + Private: Yes + + FuseBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FuseBoardServices.framework + Private: Yes + + MetricKitServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetricKitServices.framework + Private: Yes + + MailCore: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailCore.framework + Private: Yes + + EFILogin: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EFILogin.framework + Private: Yes + + PhotoLibraryServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoLibraryServices.framework + Private: Yes + + RESync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RESync.framework + Private: Yes + + NotesEditor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesEditor.framework + Private: Yes + + oncrpc: + + Version: 10.9 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/oncrpc.framework + Private: Yes + + PhotosUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosUICore.framework + Private: Yes + + DistributedTimersDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DistributedTimersDaemon.framework + Private: Yes + + VisualUnderstanding: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VisualUnderstanding.framework + Private: Yes + + OSIntelligence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSIntelligence.framework + Private: Yes + + Mondrian: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Mondrian.framework + Private: Yes + + SidecarUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SidecarUI.framework + Private: Yes + + SiriReferenceResolver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriReferenceResolver.framework + Private: Yes + + ProtectedCloudStorage: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework + Private: Yes + + ASOctaneSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ASOctaneSupport.framework + Private: Yes + + ConversationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConversationKit.framework + Private: Yes + + EmbeddedAcousticRecognition: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework + Private: Yes + + RTCReporting: + + Version: 13.1.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTCReporting.framework + Private: Yes + + LLMCache: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LLMCache.framework + Private: Yes + + MailService: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MailService.framework + Private: Yes + + NotesHTML: + + Version: 4.12.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NotesHTML.framework + Private: Yes + + PersonalizationPortrait: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PersonalizationPortrait.framework + Private: Yes + + RemoteManagementModel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementModel.framework + Private: Yes + + SiriMASPFLTraining: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMASPFLTraining.framework + Private: Yes + + PacketFilter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PacketFilter.framework + Private: Yes + + SpotlightLinguistics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightLinguistics.framework + Private: Yes + + AppleAppSupport: + + Version: 1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleAppSupport.framework + Private: Yes + + OSInstaller: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSInstaller.framework + Private: Yes + + SAObjects: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SAObjects.framework + Private: Yes + + XQuery: + + Version: 1.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: XQuery version 1.3.1, Copyright (c) 2004-2012 Apple Inc. + Location: /System/Library/PrivateFrameworks/XQuery.framework + Private: Yes + + VideosUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideosUICore.framework + Private: Yes + + WatchListKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WatchListKit.framework + Private: Yes + + FinderKit: + + Version: 15.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FinderKit.framework + Private: Yes + + MapsSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MapsSync.framework + Private: Yes + + PackageUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PackageUIKit.framework + Private: Yes + + HTTPTypesInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HTTPTypesInternal.framework + Private: Yes + + AboutSettings: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AboutSettings.framework + Private: Yes + + AppleMediaServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServices.framework + Private: Yes + + IncomingCallFilter: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IncomingCallFilter.framework + Private: Yes + + IMAVCore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMAVCore.framework + Private: Yes + + MiniSoftwareUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MiniSoftwareUpdate.framework + Private: Yes + + LocalStatusKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LocalStatusKit.framework + Private: Yes + + PassKitMacHelperTemp: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitMacHelperTemp.framework + Private: Yes + + PhotosKnowledgeGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosKnowledgeGraph.framework + Private: Yes + + IOCEC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IOCEC.framework + Private: Yes + + CoreSymbolication: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSymbolication.framework + Private: Yes + + SiriTTS: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriTTS.framework + Private: Yes + + VoiceShortcutClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceShortcutClient.framework + Private: Yes + + GenerationalStorage: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerationalStorage.framework + Private: Yes + + MusicUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicUI.framework + Private: Yes + + StoreServices: + + Version: 1 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/StoreServices.framework + Private: Yes + + SnippetCommands: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SnippetCommands.framework + Private: Yes + + SyncedDefaults: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SyncedDefaults.framework + Private: Yes + + AppleFlatBuffers: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleFlatBuffers.framework + Private: Yes + + SiriVideoIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriVideoIntents.framework + Private: Yes + + SecureChannel: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SecureChannel.framework + Private: Yes + + IMSharedUtilities: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMSharedUtilities.framework + Private: Yes + + PnROnDeviceFramework: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PnROnDeviceFramework.framework + Private: Yes + + BiometricSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiometricSupport.framework + Private: Yes + + TelephonyBlastDoorSupport: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TelephonyBlastDoorSupport.framework + Private: Yes + + ParsingInternal: + + Version: 0.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsingInternal.framework + Private: Yes + + MediaExperience: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaExperience.framework + Private: Yes + + DVD: + + Version: 4.1.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DVD.framework + Private: Yes + + GameCenterServerClient: + + Version: 819.4.46 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameCenterServerClient.framework + Private: Yes + + StickerFoundationInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StickerFoundationInternal.framework + Private: Yes + + CoreRealityIO: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreRealityIO.framework + Private: Yes + + SiriCorrections: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriCorrections.framework + Private: Yes + + AppPredictionInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionInternal.framework + Private: Yes + + PerformanceTrace: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerformanceTrace.framework + Private: Yes + + HDAInterface: + + Version: 600.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: HDAInterface 600.2, Copyright © 2000-2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/HDAInterface.framework + Private: Yes + + FindMyCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FindMyCrypto.framework + Private: Yes + + GameControllerSettings: + + Version: 12.4.12 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GameControllerSettings.framework + Private: Yes + + NumberAdder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NumberAdder.framework + Private: Yes + + AppPredictionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPredictionClient.framework + Private: Yes + + CoreDuetSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetSync.framework + Private: Yes + + DMCApps: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DMCApps.framework + Private: Yes + + ContactsFoundation: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContactsFoundation.framework + Private: Yes + + FMCoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FMCoreUI.framework + Private: Yes + + AccessibilitySettingsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySettingsUI.framework + Private: Yes + + AlgosScoreFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AlgosScoreFramework.framework + Private: Yes + + MTLCompiler: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLCompiler.framework + Private: Yes + + SafariShared: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariShared.framework + Private: Yes + + OpenAPIURLSessionInternal: + + Version: 1.0.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OpenAPIURLSessionInternal.framework + Private: Yes + + PlugInKitDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PlugInKitDaemon.framework + Private: Yes + + UARPiCloud: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UARPiCloud.framework + Private: Yes + + DebugSymbols: + + Version: 216 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DebugSymbols.framework + Private: Yes + + InputAnalyticsServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputAnalyticsServer.framework + Private: Yes + + CardKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CardKit.framework + Private: Yes + + ConsoleKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ConsoleKit.framework + Private: Yes + + VoiceControlUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VoiceControlUI.framework + Private: Yes + + SocialUI: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SocialUI.framework + Private: Yes + + AutoBugCaptureCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AutoBugCaptureCore.framework + Private: Yes + + DTXConnectionServices: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DTXConnectionServices.framework + Private: Yes + + ManagedSettingsSupport: + + Version: 242.4.10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedSettingsSupport.framework + Private: Yes + + MobileTimer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileTimer.framework + Private: Yes + + CoreKDL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreKDL.framework + Private: Yes + + InternationalTextSearch: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternationalTextSearch.framework + Private: Yes + + CinematicFraming: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CinematicFraming.framework + Private: Yes + + HMFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HMFoundation.framework + Private: Yes + + APTransport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/APTransport.framework + Private: Yes + + FileProviderDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FileProviderDaemon.framework + Private: Yes + + SuggestionsSpotlightMetrics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SuggestionsSpotlightMetrics.framework + Private: Yes + + FRC: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FRC.framework + Private: Yes + + DataDetectors: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DataDetectors.framework + Private: Yes + + LockoutUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LockoutUI.framework + Private: Yes + + CascadeSets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CascadeSets.framework + Private: Yes + + EasyConfig: + + Version: 7.7 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EasyConfig.framework + Private: Yes + + ChronoKit: + + Version: 537.5.41 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ChronoKit.framework + Private: Yes + + CDMFoundation: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CDMFoundation.framework + Private: Yes + + SleepHealthUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SleepHealthUI.framework + Private: Yes + + ContextualSuggestionClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContextualSuggestionClient.framework + Private: Yes + + NexusDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NexusDaemon.framework + Private: Yes + + DiagnosticsKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Universal + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /System/Library/PrivateFrameworks/DiagnosticsKit.framework + Private: Yes + + MediaAnalysisServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaAnalysisServices.framework + Private: Yes + + iCloudNotification: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudNotification.framework + Private: Yes + + OnBoardingKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OnBoardingKit.framework + Private: Yes + + RoomScanCore: + + Version: 20.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RoomScanCore.framework + Private: Yes + + _Coherence_CloudKit_Private: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_Coherence_CloudKit_Private.framework + Private: Yes + + MatrixKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MatrixKit.framework + Private: Yes + + InputTranscoder: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InputTranscoder.framework + Private: Yes + + IDSKVStore: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSKVStore.framework + Private: Yes + + HearingCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HearingCore.framework + Private: Yes + + RemoteTextInput: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteTextInput.framework + Private: Yes + + CalendarWidget: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarWidget.framework + Private: Yes + + SiriAppLaunchUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAppLaunchUIFramework.framework + Private: Yes + + PIP: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PIP.framework + Private: Yes + + PerfPowerMetricMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerMetricMonitor.framework + Private: Yes + + CascadeEngine: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CascadeEngine.framework + Private: Yes + + AccessibilitySharedUISupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySharedUISupport.framework + Private: Yes + + MTLSimImplementation: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLSimImplementation.framework + Private: Yes + + IDSBlastDoorSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IDSBlastDoorSupport.framework + Private: Yes + + WallpaperFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WallpaperFoundation.framework + Private: Yes + + StocksCore: + + Version: 7.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StocksCore.framework + Private: Yes + + TransparencyUI: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TransparencyUI.framework + Private: Yes + + AggregateDictionary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AggregateDictionary.framework + Private: Yes + + Marrs: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Marrs.framework + Private: Yes + + TextInputUIMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputUIMacHelper.framework + Private: Yes + + ScreenTimeServiceUI: + + Version: 3.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenTimeServiceUI.framework + Private: Yes + + DEPClientLibrary: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DEPClientLibrary.framework + Private: Yes + + CoreServicesStore: + + Version: 1141.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreServicesStore.framework + Private: Yes + + XGBoostFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XGBoostFramework.framework + Private: Yes + + LighthouseDataProcessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseDataProcessor.framework + Private: Yes + + AtomicsInternal: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AtomicsInternal.framework + Private: Yes + + SpotlightServerKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SpotlightServerKit.framework + Private: Yes + + DiskSpaceDiagnostics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DiskSpaceDiagnostics.framework + Private: Yes + + FaceTimeNotificationViewBridge: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeNotificationViewBridge.framework + Private: Yes + + MobileKeyBag: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileKeyBag.framework + Private: Yes + + MTLSimDriver: + + Version: 368.11.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MTLSimDriver.framework + Private: Yes + + H13ISPServices: + + Version: 9.500 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/H13ISPServices.framework + Private: Yes + + AudioAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioAnalytics.framework + Private: Yes + + OctagonTrust: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OctagonTrust.framework + Private: Yes + + SetupAssistantFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SetupAssistantFramework.framework + Private: Yes + + RapidResourceDelivery: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RapidResourceDelivery.framework + Private: Yes + + _MusicKitInternal_MediaPlayer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/_MusicKitInternal_MediaPlayer.framework + Private: Yes + + SiriIntentEvents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriIntentEvents.framework + Private: Yes + + IntelligenceFlowAppIntentsPreviewToolSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowAppIntentsPreviewToolSupport.framework + Private: Yes + + Sharing: + + Version: 2060.50.171.1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sharing.framework + Private: Yes + + RunningBoard: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RunningBoard.framework + Private: Yes + + SiriUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriUICore.framework + Private: Yes + + Feedback: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Feedback.framework + Private: Yes + + CalendarLink: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarLink.framework + Private: Yes + + SPOwner: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SPOwner.framework + Private: Yes + + ContentKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContentKit.framework + Private: Yes + + XOJIT: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XOJIT.framework + Private: Yes + + TextInputCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputCore.framework + Private: Yes + + SafeEjectGPU: + + Version: 44 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafeEjectGPU.framework + Private: Yes + + BatteryUIKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BatteryUIKit.framework + Private: Yes + + DoNotDisturbServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DoNotDisturbServer.framework + Private: Yes + + AppleVirtualPlatform: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleVirtualPlatform.framework + Private: Yes + + TailspinSymbolication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TailspinSymbolication.framework + Private: Yes + + AppSSOUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppSSOUI.framework + Private: Yes + + AppPlaceholderSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppPlaceholderSync.framework + Private: Yes + + TextInputCJK: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextInputCJK.framework + Private: Yes + + EfiSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EfiSupport.framework + Private: Yes + + ManagedConfigurationFiles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedConfigurationFiles.framework + Private: Yes + + SiriPowerInstrumentation: + + Version: 1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework + Private: Yes + + LoggingSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LoggingSupport.framework + Private: Yes + + Engram: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Engram.framework + Private: Yes + + AttentionAwareness: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AttentionAwareness.framework + Private: Yes + + LighthouseBackground: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LighthouseBackground.framework + Private: Yes + + CoreAudioOrchestration: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreAudioOrchestration.framework + Private: Yes + + AirPlayReceiverKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AirPlayReceiverKit.framework + Private: Yes + + PhotoEditing: + + Version: 751.0.104 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotoEditing.framework + Private: Yes + + CoreIK: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreIK.framework + Private: Yes + + RemoteManagementUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteManagementUI.framework + Private: Yes + + OSUpdate: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSUpdate.framework + Private: Yes + + WorkflowEditor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowEditor.framework + Private: Yes + + PhoneNumberResolver: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhoneNumberResolver.framework + Private: Yes + + BusinessFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BusinessFoundation.framework + Private: Yes + + OSPersonalization: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OSPersonalization.framework + Private: Yes + + PassKitUIFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKitUIFoundation.framework + Private: Yes + + RTTUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RTTUtilities.framework + Private: Yes + + SiriEmergencyIntents: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriEmergencyIntents.framework + Private: Yes + + ClockUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ClockUIFramework.framework + Private: Yes + + iCloudDriveCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iCloudDriveCore.framework + Private: Yes + + GroupKitCrypto: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GroupKitCrypto.framework + Private: Yes + + IMDPersistence: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMDPersistence.framework + Private: Yes + + ModelManagerServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ModelManagerServices.framework + Private: Yes + + PhysicsKit: + + Version: 41.4.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhysicsKit.framework + Private: Yes + + SiriAudioInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAudioInternal.framework + Private: Yes + + SafariSwift: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSwift.framework + Private: Yes + + IntentsCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntentsCore.framework + Private: Yes + + H16ISPServices: + + Version: 3.512 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/H16ISPServices.framework + Private: Yes + + EventKitExternalSync: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/EventKitExternalSync.framework + Private: Yes + + TokenGenerationCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TokenGenerationCore.framework + Private: Yes + + CalendarUI: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CalendarUI.framework + Private: Yes + + AlarmUIFramework: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AlarmUIFramework.framework + Private: Yes + + SettingsHostUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SettingsHostUI.framework + Private: Yes + + AssistantStateProxy: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AssistantStateProxy.framework + Private: Yes + + SCEP: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SCEP.framework + Private: Yes + + ZeoliteFramework: + + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ZeoliteFramework.framework + Private: Yes + + GenerativeAssistantUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GenerativeAssistantUI.framework + Private: Yes + + CoreOCModules: + + Version: 10.13.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreOCModules.framework + Private: Yes + + DarwinDirectory: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DarwinDirectory.framework + Private: Yes + + PassKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PassKit.framework + Private: Yes + + DeauthorizationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeauthorizationKit.framework + Private: Yes + + QuickLookThumbnailingDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/QuickLookThumbnailingDaemon.framework + Private: Yes + + CryptoKitCBridging: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CryptoKitCBridging.framework + Private: Yes + + ActionPredictionHeuristics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ActionPredictionHeuristics.framework + Private: Yes + + CloudKitCode: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitCode.framework + Private: Yes + + SafariSharedUI: + + Version: 20621 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SafariSharedUI.framework + Private: Yes + + PhotosensitivityProcessing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PhotosensitivityProcessing.framework + Private: Yes + + MediaCoreUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaCoreUI.framework + Private: Yes + + FaceTimeTouchBarProtocols: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FaceTimeTouchBarProtocols.framework + Private: Yes + + MobileSpotlightIndex: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework + Private: Yes + + ANEServices: + + Version: 8.510 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ANEServices.framework + Private: Yes + + StreamingZip: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StreamingZip.framework + Private: Yes + + CloudTelemetryTools: + + Version: 13.1.47 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudTelemetryTools.framework + Private: Yes + + OmniSearchTypes: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/OmniSearchTypes.framework + Private: Yes + + AudioServerApplication: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AudioServerApplication.framework + Private: Yes + + CommunicationSafetySettingsUI: + + Version: 30.3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CommunicationSafetySettingsUI.framework + Private: Yes + + Apple80211: + + Version: 17.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 17.0, Copyright © 2000–2019 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/Apple80211.framework + Private: Yes + + MediaStream: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MediaStream.framework + Private: Yes + + SwiftSQLite: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftSQLite.framework + Private: Yes + + XPCSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/XPCSupport.framework + Private: Yes + + Uninstall: + + Version: 1.0.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Uninstall.framework + Private: Yes + + BookKitFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BookKitFoundation.framework + Private: Yes + + WeatherFoundation: + + Version: 1.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WeatherFoundation.framework + Private: Yes + + TVLibrary: + + Version: 1.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TVLibrary.framework + Private: Yes + + ContainerManagerSystem: + + Version: MobileContainerManager-689.100.6~278 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ContainerManagerSystem.framework + Private: Yes + + VideosUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VideosUI.framework + Private: Yes + + RemoteUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemoteUI.framework + Private: Yes + + PrivateSearchClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PrivateSearchClient.framework + Private: Yes + + PodcastsFoundation: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastsFoundation.framework + Private: Yes + + FamilyControlsObjC: + + Version: 1204.4.5 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FamilyControlsObjC.framework + Private: Yes + + GamePolicyServices: + + Version: 2.4.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/GamePolicyServices.framework + Private: Yes + + SiriOntology: + + Version: 3404.75.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriOntology.framework + Private: Yes + + MLIR_ML: + + Version: 1.4.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MLIR_ML.framework + Private: Yes + + Navigation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Navigation.framework + Private: Yes + + BackBoardServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BackBoardServices.framework + Private: Yes + + CoreChineseEngine: + + Version: 104 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreChineseEngine.framework + Private: Yes + + AppleMediaServicesUIPaymentSheets: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppleMediaServicesUIPaymentSheets.framework + Private: Yes + + TipsDaemon: + + Version: 11.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TipsDaemon.framework + Private: Yes + + TextToSpeechVoiceBankingUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextToSpeechVoiceBankingUI.framework + Private: Yes + + UIKitSystemAppServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/UIKitSystemAppServices.framework + Private: Yes + + AvatarPersistence: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AvatarPersistence.framework + Private: Yes + + BiomeStreams: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeStreams.framework + Private: Yes + + BiomeSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeSync.framework + Private: Yes + + CollectionViewCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CollectionViewCore.framework + Private: Yes + + SiriMessagesUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriMessagesUI.framework + Private: Yes + + BluetoothAudio: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothAudio.framework + Private: Yes + + Sleep: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Sleep.framework + Private: Yes + + SessionFoundation: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SessionFoundation.framework + Private: Yes + + FlexMusicKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlexMusicKit.framework + Private: Yes + + BiomeDSL: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BiomeDSL.framework + Private: Yes + + IntelligenceEngine: + + Version: 3402.2.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceEngine.framework + Private: Yes + + MSUDataAccessor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MSUDataAccessor.framework + Private: Yes + + BridgeOSInstall: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BridgeOSInstall.framework + Private: Yes + + IMTransferAgentClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IMTransferAgentClient.framework + Private: Yes + + DASDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DASDaemon.framework + Private: Yes + + DCERPC: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DCERPC.framework + Private: Yes + + BulkSymbolication: + + Version: 1.385.13 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BulkSymbolication.framework + Private: Yes + + MetalSerializer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MetalSerializer.framework + Private: Yes + + CipherML: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CipherML.framework + Private: Yes + + ScreenReaderCore: + + Version: 10 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ScreenReaderCore.framework + Private: Yes + + TemplateKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TemplateKit.framework + Private: Yes + + DeviceManagementTools: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeviceManagementTools.framework + Private: Yes + + iLifeMediaBrowser: + + Version: 2.19.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework + Private: Yes + + HomeDataModel: + + Version: 8.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeDataModel.framework + Private: Yes + + AppState: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AppState.framework + Private: Yes + + RemindersUICore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/RemindersUICore.framework + Private: Yes + + SwiftASN1: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SwiftASN1.framework + Private: Yes + + MobileAccessoryUpdater: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MobileAccessoryUpdater.framework + Private: Yes + + TranslationDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TranslationDaemon.framework + Private: Yes + + SystemStatusServer: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SystemStatusServer.framework + Private: Yes + + HelloWorldMacHelper: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HelloWorldMacHelper.framework + Private: Yes + + Planks: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Planks.framework + Private: Yes + + BlastDoor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BlastDoor.framework + Private: Yes + + PodcastsKit: + + Version: 1.1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PodcastsKit.framework + Private: Yes + + ComputationalGraph: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ComputationalGraph.framework + Private: Yes + + LimitAdTracking: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LimitAdTracking.framework + Private: Yes + + Netrb: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Netrb.framework + Private: Yes + + VFXAssets: + + Version: 16.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/VFXAssets.framework + Private: Yes + + SiriContactsCommon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriContactsCommon.framework + Private: Yes + + MusicLibrary: + + Version: 1.0.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MusicLibrary.framework + Private: Yes + + CallstackAnalysis: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CallstackAnalysis.framework + Private: Yes + + DeepVideoProcessingCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/DeepVideoProcessingCore.framework + Private: Yes + + IntelligenceFlowContextRuntime: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligenceFlowContextRuntime.framework + Private: Yes + + ParsecSubscriptionServiceSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework + Private: Yes + + FlightUtilities: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FlightUtilities.framework + Private: Yes + + FramePacing: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/FramePacing.framework + Private: Yes + + CoreSDB: + + Version: 10.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreSDB.framework + Private: Yes + + AIMLInstrumentationStreams: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AIMLInstrumentationStreams.framework + Private: Yes + + HomeKitDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitDaemon.framework + Private: Yes + + CoreDuetDaemonProtocol: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework + Private: Yes + + PromotedContentSupport: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PromotedContentSupport.framework + Private: Yes + + NearFieldPrivateServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NearFieldPrivateServices.framework + Private: Yes + + SMBClient: + + Version: 6.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SMBClient.framework + Private: Yes + + MCCKitCategorization_macOS: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/MCCKitCategorization_macOS.framework + Private: Yes + + SymptomReporter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SymptomReporter.framework + Private: Yes + + InternalSwiftProtobuf: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework + Private: Yes + + AppleShareClientCore: + + Version: 5.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: Low Level AppleShare Client Framework, Copyright © 2000 - 2024, Apple Inc. + Location: /System/Library/PrivateFrameworks/AppleShareClientCore.framework + Private: Yes + + HomeKitMatter: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HomeKitMatter.framework + Private: Yes + + CloudKitDistributedSync: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CloudKitDistributedSync.framework + Private: Yes + + WorkflowKit: + + Version: 7.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/WorkflowKit.framework + Private: Yes + + CoreCaptureDaemon: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: 1.0, Copyright © 2015 Apple Inc. All rights reserved. + Location: /System/Library/PrivateFrameworks/CoreCaptureDaemon.framework + Private: Yes + + SiriIdentityInternal: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriIdentityInternal.framework + Private: Yes + + HeadphoneManager: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/HeadphoneManager.framework + Private: Yes + + CTLazuliSupport: + + Version: 12322 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CTLazuliSupport.framework + Private: Yes + + KnowledgeMonitor: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/KnowledgeMonitor.framework + Private: Yes + + STSXPCHelperClient: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/STSXPCHelperClient.framework + Private: Yes + + PerfPowerServicesMetadata: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/PerfPowerServicesMetadata.framework + Private: Yes + + SleepHealth: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SleepHealth.framework + Private: Yes + + SiriAnalytics: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriAnalytics.framework + Private: Yes + + DSExternalDisplay: + + Version: 3.1 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Get Info String: DSExternalDisplay 3.1 + Location: /System/Library/PrivateFrameworks/DSExternalDisplay.framework + Private: Yes + + Trial: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/Trial.framework + Private: Yes + + TextGenerationInference: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/TextGenerationInference.framework + Private: Yes + + IntelligentRoutingMediaBundles: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/IntelligentRoutingMediaBundles.framework + Private: Yes + + BluetoothServices: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/BluetoothServices.framework + Private: Yes + + NewsDaemon: + + Version: 10.3 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/NewsDaemon.framework + Private: Yes + + ManagedOrganizationContacts: + + Version: 1.2 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/ManagedOrganizationContacts.framework + Private: Yes + + AccessibilitySupport: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework + Private: Yes + + AccessibilityKit: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityKit.framework + Private: Yes + + AccessibilityEvents: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityEvents.framework + Private: Yes + + AccessibilityVisuals: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityVisuals.framework + Private: Yes + + AccessibilityFoundation: + + Version: 2.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccessibilitySupport.framework/Frameworks/AccessibilityFoundation.framework + Private: Yes + + AccountsUI: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/AccountsUI.framework + Private: Yes + + SiriSignals: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SiriSignals.framework + Private: Yes + + StatusKitAgentCore: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/StatusKitAgentCore.framework + Private: Yes + + CoreThread: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/CoreThread.framework + Private: Yes + + SummarizationKit: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/SummarizationKit.framework + Private: Yes + + LibraryRepair: + + Version: 1.0 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /System/Library/PrivateFrameworks/LibraryRepair.framework + Private: Yes + + CoreRepairKit: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Frameworks/CoreRepairKit.framework + Private: No + + Python: + + Version: 3.13.3, (c) 2001-2024 Python Software Foundation. + Obtained from: Identified Developer + Last Modified: 12.04.2025, 13:50 + Kind: Universal + Signed by: Developer ID Application: Python Software Foundation (BMM5U3QVKW), Developer ID Certification Authority, Apple Root CA + Get Info String: Python Runtime and Library + Location: /Library/Frameworks/Python.framework + Private: No + + CoreRepairCore: + + Version: 1.0 + Obtained from: Apple + Last Modified: 12.04.2025, 08:16 + Kind: Apple Silicon + Signed by: Software Signing, Apple Code Signing Certification Authority, Apple Root CA + Location: /Library/Frameworks/CoreRepairCore.framework + Private: No + + iTunesLibrary: + + Version: 13.5.4 + Obtained from: Unknown + Last Modified: 12.04.2025, 08:16 + Location: /Library/Frameworks/iTunesLibrary.framework + Private: No + +Graphics/Displays: + + Apple M3: + + Chipset Model: Apple M3 + Type: GPU + Bus: Built-In + Total Number of Cores: 8 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina Display + Resolution: 2560 x 1664 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: Yes + Connection Type: Internal + +Hardware: + + Hardware Overview: + + Model Name: MacBook Air + Model Identifier: Mac15,12 + Model Number: MC8J4LL/A + Chip: Apple M3 + Total Number of Cores: 8 (4 performance and 4 efficiency) + Memory: 16 GB + System Firmware Version: 11881.101.1 + OS Loader Version: 11881.101.1 + Serial Number (system): F992X00WRJ + Hardware UUID: EBBBA7A3-C701-55D7-9490-A651759B5894 + Provisioning UDID: 00008122-0009384A11EA801C + Activation Lock Status: Enabled + +Installations: + + macOS 15.2: + + Version: 15,2 + Source: Apple + Install Date: 21.02.2025, 07:34 + + MAContent10_AssetPack_0048_AlchemyPadsDigitalHolyGhost: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0310_UB_DrumMachineDesignerGB: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0312_UB_UltrabeatKitsGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0314_AppleLoopsHipHop1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0315_AppleLoopsElectroHouse1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0316_AppleLoopsDubstep1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0317_AppleLoopsModernRnB1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0320_AppleLoopsChillwave1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0321_AppleLoopsIndieDisco: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0322_AppleLoopsDiscoFunk1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0323_AppleLoopsVintageBreaks: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0324_AppleLoopsBluesGarage: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0325_AppleLoopsGarageBand1: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0354_EXS_PianoSteinway: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:36 + + MAContent10_AssetPack_0357_EXS_BassAcousticUprightJazz: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0358_EXS_BassElectricFingerStyle: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0371_EXS_GuitarsAcoustic: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0375_EXS_GuitarsVintageStrat: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0482_EXS_OrchWoodwindAltoSax: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0484_EXS_OrchWoodwindClarinetSolo: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0487_EXS_OrchWoodwindFluteSolo: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0491_EXS_OrchBrass: + + Version: 3.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0509_EXS_StringsEnsemble: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0536_DrummerClapsCowbell: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0537_DrummerShaker: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0538_DrummerSticks: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0539_DrummerTambourine: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0540_PlugInSettingsGB: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0554_AppleLoopsDiscoFunk2: + + Version: 2.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0557_IRsSharedAUX: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0560_LTPBasicPiano1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0593_DrummerSoCalGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0597_LTPChordTrainer: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0598_LTPBasicGuitar1: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0615_GBLogicAlchemyEssentials: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0637_AppleLoopsDrummerKyle: + + Version: 3.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0646_AppleLoopsDrummerElectronic: + + Version: 3.1.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MAContent10_AssetPack_0806_PlugInSettingsGBLogic: + + Version: 2.0.0.0 + Source: Apple + Install Date: 21.02.2025, 07:37 + + MobileAssets: + + Source: Apple + Install Date: 21.02.2025, 07:38 + + Keynote: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + Pages: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + Numbers: + + Version: 14,2 + Source: Apple + Install Date: 21.02.2025, 07:38 + + iMovie: + + Version: 10.4.2 + Source: Apple + Install Date: 21.02.2025, 07:39 + + GarageBand: + + Version: 10.4.11 + Source: Apple + Install Date: 21.02.2025, 07:39 + + XProtectCloudKitUpdate: + + Version: 5293 + Source: Apple + Install Date: 09.04.2025, 00:23 + + XProtectPlistConfigData: + + Version: 5293 + Source: Apple + Install Date: 09.04.2025, 00:34 + + MRTConfigData: + + Version: 1,93 + Source: Apple + Install Date: 09.04.2025, 00:34 + + Gatekeeper Compatibility Data: + + Version: 1,0 + Source: Apple + Install Date: 09.04.2025, 00:34 + + XProtectPayloads: + + Version: 151 + Source: Apple + Install Date: 09.04.2025, 00:34 + + ‎WhatsApp: + + Version: 25.10.72 + Source: 3rd Party + Install Date: 09.04.2025, 00:45 + + V2BOX: + + Version: 9.5.1 + Source: 3rd Party + Install Date: 09.04.2025, 00:45 + + Xcode: + + Version: 16,3 + Source: Apple + Install Date: 09.04.2025, 00:53 + + Telegram: + + Version: 11,8 + Source: 3rd Party + Install Date: 09.04.2025, 00:56 + + SF Symbols: + + Source: Apple + Install Date: 09.04.2025, 12:09 + + RosettaUpdateAuto: + + Source: Apple + Install Date: 09.04.2025, 20:54 + + Python: + + Source: 3rd Party + Install Date: 12.04.2025, 13:50 + + Command Line Tools for Xcode: + + Version: 16,3 + Source: Apple + Install Date: 12.04.2025, 13:56 + + XProtectCloudKitUpdate: + + Version: 5295 + Source: Apple + Install Date: 16.04.2025, 12:18 + + XProtectPlistConfigData: + + Version: 5295 + Source: Apple + Install Date: 16.04.2025, 13:45 + + XProtectPlistConfigData: + + Version: 5296 + Source: Apple + Install Date: 23.04.2025, 12:19 + + macOS 15.4.1: + + Version: 15.4.1 + Source: Apple + Install Date: 25.04.2025, 20:17 + + RosettaUpdateAuto: + + Source: Apple + Install Date: 25.04.2025, 20:17 + + Prodrafts: + + Version: 4.2.6 + Source: 3rd Party + Install Date: 10.05.2025, 15:47 + + Tanks Blitz: + + Version: 11.10.0 + Source: 3rd Party + Install Date: 12.05.2025, 23:17 + + Userscripts-Mac-App: + + Version: 4.7.1 + Source: 3rd Party + Install Date: 13.05.2025, 21:09 + + XProtectPlistConfigData: + + Version: 5297 + Source: Apple + Install Date: 13.05.2025, 22:50 + + XProtectCloudKitUpdate: + + Version: 5297 + Source: Apple + Install Date: 14.05.2025, 08:55 + +Language & Region: + + User Settings: + + Requested Linguistic Assets: ru, ru_RU, en, en_RU, bg, uk, fr, de, fi + Siri Language: ru-RU + Siri Voice Gender: Female + Siri Voice Language: ru-RU + Calendar: Gregorian + Country Code: RU + Current Input Source: com.apple.keylayout.ABC + Language Code: ru + Locale: ru_RU + Preferred Interface Languages: ru-RU + Uses Metric System: Yes + + System Settings: + + Country Code: RU + OS Interface Languages: en, en-GB, en-AU, en-IN, zh-Hans, zh-Hant, zh-HK, ja, es, es-US, es-419, fr, fr-CA, de, ru, pt-BR, pt-PT, it, ko, tr, nl, ar, th, sv, da, vi, nb, pl, fi, id, he, el, ro, hu, cs, ca, sk, uk, hr, ms, hi, sl + System Preferred Interface Languages: ru-RU + Locale: ru_RU + Text Direction: Left-To-Right + Uses Metric System: No + + Recovery Partition Settings: + + Keyboard Code: 252 + Locale: ru + +Locations: + + Automatic: + + Active Location: Yes + Services: + Ethernet Adapter (en3): + Type: Ethernet + BSD Device Name: en3 + Hardware (MAC) Address: 12:c3:4f:96:68:ab + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Ethernet Adapter (en4): + Type: Ethernet + BSD Device Name: en4 + Hardware (MAC) Address: 12:c3:4f:96:68:ac + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Thunderbolt Bridge: + Type: Bridge + BSD Device Name: bridge0 + Hardware (MAC) Address: 36:bf:29:b6:65:c0 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Wi-Fi: + Type: IEEE80211 + BSD Device Name: en0 + Hardware (MAC) Address: c4:84:fc:05:95:19 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + IEEE80211: + Join Mode: Automatic + V2BOX: + Type: VPN + IPv4: + Configuration Method: VPN + IPv6: + Configuration Method: Automatic + VPN: + AuthenticationMethod: Password + DesignatedRequirement: (anchor apple generic and certificate leaf[field.1.2.840.113635.100.6.1.9] /* exists */ or anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = "5AC5438XDR") and identifier "hossin.asaadi.V2Box.PacketTunnel" + Disconnect on Fast User Switch: No + Disconnect on Idle: No + Disconnect on Idle Timer: 0 + Disconnect on Logout: No + Disconnect on Sleep: No + DisconnectOnWake: 0 + DisconnectOnWakeTimer: 0 + NEProviderBundleIdentifier: hossin.asaadi.V2Box.PacketTunnel + OnDemandEnabled: 0 + RemoteAddress: localhost + +Logs: + + Apple System Log (ASL) Messages: + + Source: /var/log/asl + Size: 133 KB (132 886 bytes) + Last Modified: 15.05.2025, 12:34 + Recent Contents: ... +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:34:15 bootlog[0]: BOOT_TIME 1740112455 883911 +21 февр. 2025 г., 07:40:31 bootlog[0]: BOOT_TIME 1740112831 776000 +8 апр. 2025 г., 18:24:59 bootlog[0]: BOOT_TIME 1744125899 324371 +8 апр. 2025 г., 18:34:40 shutdown[389]: SHUTDOWN_TIME: 1744126480 29885 +9 апр. 2025 г., 00:15:30 bootlog[0]: BOOT_TIME 1744146930 858489 +9 апр. 2025 г., 00:15:47 loginwindow[133]: USER_PROCESS: 133 console +9 апр. 2025 г., 00:15:51 loginwindow[133]: DEAD_PROCESS: 133 console +9 апр. 2025 г., 00:15:51 loginwindow[133]: USER_PROCESS: 133 console +9 апр. 2025 г., 00:17:11 loginwindow[761]: USER_PROCESS: 761 console +9 апр. 2025 г., 01:03:08 sessionlogoutd[2556]: DEAD_PROCESS: 761 console +9 апр. 2025 г., 01:03:08 shutdown[2559]: SHUTDOWN_TIME: 1744149788 331947 +9 апр. 2025 г., 01:03:23 bootlog[0]: BOOT_TIME 1744149803 128356 +9 апр. 2025 г., 01:03:36 loginwindow[150]: USER_PROCESS: 150 console +9 апр. 2025 г., 20:55:50 login[16948]: USER_PROCESS: 16948 ttys000 +9 апр. 2025 г., 20:56:06 login[16948]: DEAD_PROCESS: 16948 ttys000 +12 апр. 2025 г., 13:47:13 login[48639]: USER_PROCESS: 48639 ttys003 +12 апр. 2025 г., 13:52:15 login[48639]: DEAD_PROCESS: 48639 ttys003 +12 апр. 2025 г., 13:52:16 login[48964]: USER_PROCESS: 48964 ttys003 +12 апр. 2025 г., 14:51:36 login[48964]: DEAD_PROCESS: 48964 ttys003 +12 апр. 2025 г., 14:51:38 login[54411]: USER_PROCESS: 54411 ttys003 +14 апр. 2025 г., 12:23:10 login[54411]: DEAD_PROCESS: 54411 ttys003 +22 апр. 2025 г., 22:22:14 login[45929]: USER_PROCESS: 45929 ttys002 +22 апр. 2025 г., 22:24:25 login[45929]: DEAD_PROCESS: 45929 ttys002 +22 апр. 2025 г., 22:24:29 login[46101]: USER_PROCESS: 46101 ttys002 +25 апр. 2025 г., 20:11:30 login[46101]: DEAD_PROCESS: 46101 ttys002 +25 апр. 2025 г., 20:11:32 sessionlogoutd[89089]: DEAD_PROCESS: 150 console +25 апр. 2025 г., 20:11:32 loginwindow[89097]: USER_PROCESS: 89097 console +25 апр. 2025 г., 20:12:56 reboot[89162]: SHUTDOWN_TIME: 1745601176 139065 +25 апр. 2025 г., 20:16:10 bootlog[0]: BOOT_TIME 1745601370 306733 +25 апр. 2025 г., 20:17:12 loginwindow[448]: USER_PROCESS: 448 console +25 апр. 2025 г., 20:17:41 login[1184]: USER_PROCESS: 1184 ttys000 +26 апр. 2025 г., 17:08:22 login[1184]: DEAD_PROCESS: 1184 ttys000 +8 мая 2025 г., 00:11:55 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:29:02 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:46:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:46:35 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +8 мая 2025 г., 00:57:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:15:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:32:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:46:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 01:58:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:14:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:29:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:45:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 02:59:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:16:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:33:07 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 03:48:09 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:05:10 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:21:31 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:36:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 04:53:09 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:10:51 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:26:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 05:44:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:02:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:19:36 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:35:10 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 06:51:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:11:32 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:29:12 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 07:46:52 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:02:17 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:18:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:35:05 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 08:51:12 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:10:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:26:34 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:41:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 09:55:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:15:31 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:30:43 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 10:47:51 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:12:26 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:29:47 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:45:53 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 11:57:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:14:11 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:30:52 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:46:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 12:58:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:14:41 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:30:23 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:47:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 13:59:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:16:30 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:34:18 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 14:54:38 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:16:35 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:32:29 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 15:47:40 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:01:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:17:13 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:32:56 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 16:50:27 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:02:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:18:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:35:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 17:52:08 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:03:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:13:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:29:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 18:53:04 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:10:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:27:22 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 19:44:48 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:00:30 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:13:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:29:42 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 20:47:26 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:03:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:14:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:31:57 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 21:48:54 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:04:58 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:15:37 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:32:19 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:43:48 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 22:57:06 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:04:58 login[91366]: USER_PROCESS: 91366 ttys000 +8 мая 2025 г., 23:08:16 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:18:44 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:29:32 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:41:39 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:52:23 syslogd[410]: ASL Sender Statistics +8 мая 2025 г., 23:58:48 login[91366]: DEAD_PROCESS: 91366 ttys000 +8 мая 2025 г., 23:58:49 login[93756]: USER_PROCESS: 93756 ttys000 +9 мая 2025 г., 00:02:33 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:12:37 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:22:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:30:05 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +9 мая 2025 г., 00:32:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:43:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 00:53:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:17:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:37:12 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 01:53:59 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:10:55 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:25:58 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:41:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 02:59:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:17:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:37:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 03:56:12 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:13:42 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:31:15 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 04:49:01 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:05:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:21:40 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:39:05 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 05:56:51 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:15:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:31:47 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 06:49:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:07:58 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:33:45 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 07:50:21 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:08:15 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:26:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 08:44:28 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:02:07 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:17:25 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:35:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 09:52:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:09:02 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:19:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:35:31 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 10:57:37 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:15:40 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:37:47 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 11:54:08 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:12:30 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:37:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 12:56:11 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:10:11 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:21:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:23:56 login[95621]: USER_PROCESS: 95621 ttys003 +9 мая 2025 г., 13:32:02 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:44:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 13:57:22 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: (null) +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 14:01:34 CoreDeviceService[97517]: (null) +9 мая 2025 г., 14:01:58 login[97541]: USER_PROCESS: 97541 ttys007 +9 мая 2025 г., 14:02:22 login[97541]: DEAD_PROCESS: 97541 ttys007 +9 мая 2025 г., 14:08:08 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:21:34 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:34:56 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:47:44 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 14:57:54 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:08:50 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:32:32 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:50:17 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 15:57:10 login[93756]: DEAD_PROCESS: 93756 ttys000 +9 мая 2025 г., 16:01:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:11:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: (null) +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 16:17:55 CoreDeviceService[2088]: (null) +9 мая 2025 г., 16:21:43 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:34:31 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:45:01 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 16:56:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:06:35 login[3938]: USER_PROCESS: 3938 ttys000 +9 мая 2025 г., 17:06:35 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:18:14 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: (null) +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 17:26:48 CoreDeviceService[4793]: (null) +9 мая 2025 г., 17:31:18 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:42:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 17:52:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:02:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:12:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:24:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:34:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:44:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: This is here just to make sure we empty our found devices queue +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: (null) +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: Failed to subscribe for booted OS device notifications. +9 мая 2025 г., 18:48:19 CoreDeviceService[8506]: (null) +9 мая 2025 г., 18:54:10 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:04:27 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:14:38 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:24:46 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:39:06 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:49:24 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 19:59:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:11:41 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:26:57 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:37:26 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:47:28 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 20:57:48 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:08:09 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:18:27 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:33:20 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 21:50:39 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:02:49 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:06:02 login[3938]: DEAD_PROCESS: 3938 ttys000 +9 мая 2025 г., 22:11:30 login[18488]: USER_PROCESS: 18488 ttys000 +9 мая 2025 г., 22:13:00 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:24:38 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:36:58 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 22:47:03 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 23:06:38 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 23:06:46 login[95621]: DEAD_PROCESS: 95621 ttys003 +9 мая 2025 г., 23:06:46 login[18488]: DEAD_PROCESS: 18488 ttys000 +9 мая 2025 г., 23:06:48 login[23990]: USER_PROCESS: 23990 ttys000 +9 мая 2025 г., 23:06:48 login[23990]: DEAD_PROCESS: 23990 ttys000 +9 мая 2025 г., 23:26:14 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 23:36:32 syslogd[410]: ASL Sender Statistics +9 мая 2025 г., 23:50:12 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 00:05:05 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 00:25:50 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 00:42:01 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:42:01 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +10 мая 2025 г., 00:57:50 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 01:14:20 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 01:30:24 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 01:48:25 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:06:25 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:16:56 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:27:07 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:37:08 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:48:07 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 02:58:08 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:08:09 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:18:24 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:29:09 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:39:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:49:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 03:59:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 04:09:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 04:19:11 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 04:29:11 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 04:39:11 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 04:49:12 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:00:11 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:10:13 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:21:12 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:31:13 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:41:14 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 05:51:14 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:01:15 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:11:15 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:21:15 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:31:16 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:42:15 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 06:52:16 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:02:17 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:12:46 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:23:17 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:33:18 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:44:17 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 07:54:18 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:04:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:15:49 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:25:49 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:35:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:45:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 08:56:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:06:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:16:52 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:27:47 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:37:47 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:47:53 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 09:58:52 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:08:53 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:18:54 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:29:53 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:39:54 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:49:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 10:59:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 11:09:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 11:19:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 11:29:56 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 11:39:57 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 11:50:56 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:00:57 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:10:58 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:21:19 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:31:25 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:42:00 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 12:52:00 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:02:00 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:12:00 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:22:59 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:32:59 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:43:01 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 13:58:27 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 14:11:06 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 14:22:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 14:46:00 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 14:56:01 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 15:06:11 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 15:19:18 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 15:30:37 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 15:42:30 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 15:52:31 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 16:03:47 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 16:19:09 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 16:34:09 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 16:45:51 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 16:55:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 17:07:07 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 17:18:54 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 17:29:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 17:44:02 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 18:00:12 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 18:22:25 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 18:34:44 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 18:55:53 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 19:13:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 19:13:55 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 19:29:56 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 19:46:07 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 20:04:36 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 20:18:39 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 20:37:10 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 20:53:41 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 21:10:35 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 21:28:24 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 21:45:05 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 21:59:43 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 22:14:02 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 22:25:27 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 22:37:40 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 22:50:21 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 23:08:20 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 23:24:24 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 23:39:22 syslogd[410]: ASL Sender Statistics +10 мая 2025 г., 23:49:24 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 00:02:24 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 00:20:41 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 00:39:09 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:39:09 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +11 мая 2025 г., 00:55:04 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 01:11:08 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 01:26:54 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 01:42:40 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 01:59:22 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 02:21:57 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 02:38:52 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 02:57:23 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 03:13:19 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 03:30:45 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 03:48:12 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 04:05:02 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 04:22:55 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 04:41:35 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 04:59:03 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 05:17:02 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 05:33:31 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 05:52:03 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 06:13:30 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 06:31:23 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 06:48:59 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 07:05:57 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 07:21:20 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 07:39:08 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 07:56:24 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 08:12:15 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 08:29:14 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 08:45:28 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 08:57:24 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 09:15:47 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 09:34:09 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 09:50:09 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 10:16:10 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 10:34:17 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 10:51:20 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 11:17:03 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 11:35:06 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 11:53:20 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 12:18:54 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 12:34:35 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 12:51:18 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 13:01:24 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 13:18:41 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 13:29:11 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 13:40:52 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 14:01:50 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 14:12:02 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 14:22:06 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 14:36:36 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 14:46:50 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:00:05 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:12:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:22:47 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:33:19 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:44:12 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 15:54:14 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 16:04:30 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 16:14:32 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 16:32:43 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 16:42:43 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 16:53:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:03:56 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:14:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:25:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:35:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:45:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 17:55:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:05:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:15:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:25:07 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:35:08 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:45:12 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 18:57:27 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 19:08:56 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 19:21:55 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 19:33:25 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 19:45:11 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 20:00:31 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 20:15:10 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 20:26:42 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 20:40:08 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 20:54:17 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 21:06:31 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 21:17:25 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 21:28:33 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 21:40:07 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 21:55:07 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 22:10:08 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 22:20:14 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 22:38:01 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 22:56:41 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 23:14:05 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 23:31:26 syslogd[410]: ASL Sender Statistics +11 мая 2025 г., 23:45:49 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 00:03:03 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 00:19:03 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 00:36:46 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:36:46 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +12 мая 2025 г., 00:52:57 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 01:08:36 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 01:22:17 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 01:40:09 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 01:55:46 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 02:11:45 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 02:23:17 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 02:40:45 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 02:54:05 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 03:10:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 03:28:29 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 03:45:51 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 04:03:15 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 04:18:44 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 04:34:54 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 04:50:01 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 05:05:17 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 05:22:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 05:39:31 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 05:54:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 06:11:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 06:30:59 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 06:48:19 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 07:06:18 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 07:22:30 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 07:37:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 07:54:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 08:16:08 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 08:34:04 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 08:48:49 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 09:06:20 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 09:17:08 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 09:34:08 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 09:55:19 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 10:06:16 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 10:16:32 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 10:27:44 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 10:38:11 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 10:53:16 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 11:06:22 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 11:17:10 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 11:28:40 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 11:39:26 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 11:49:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 12:07:22 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 12:18:24 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 12:35:26 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 12:52:06 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 13:09:01 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 13:24:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 13:37:43 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 14:01:18 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 14:17:15 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 14:34:35 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 14:44:40 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 15:00:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 15:18:33 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 15:35:06 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 15:45:40 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 15:58:02 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 16:13:22 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 16:30:42 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 16:46:40 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 16:59:37 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 17:17:22 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 17:34:16 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 17:47:40 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 18:13:16 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 18:31:17 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 18:49:07 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 19:06:29 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 19:22:13 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 19:40:13 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 19:56:06 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 20:15:29 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 20:31:06 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 20:48:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 20:58:47 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 21:24:37 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 21:42:12 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 21:59:55 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 22:16:05 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 22:33:15 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 22:49:21 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 23:06:45 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 23:17:31 syslogd[410]: ASL Sender Statistics +12 мая 2025 г., 23:44:17 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 00:01:40 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 00:19:19 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 00:41:41 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:41:41 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +13 мая 2025 г., 00:58:52 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 01:16:42 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 01:27:51 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 01:44:36 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 01:59:42 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 02:15:39 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 02:31:43 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 02:47:33 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 03:03:28 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 03:20:31 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 03:35:53 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 03:51:13 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 04:09:03 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 04:24:26 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 04:40:00 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 04:55:21 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 05:11:06 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 05:34:41 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 05:50:11 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 06:07:30 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 06:24:25 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 06:40:49 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 06:58:12 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 07:15:46 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 07:36:03 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 07:51:08 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 08:08:52 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 08:18:59 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 08:36:53 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 08:55:29 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 09:11:59 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 09:36:34 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 09:51:58 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 10:16:40 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 10:26:44 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 10:37:14 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 10:48:04 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 10:58:10 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 11:08:32 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 11:18:32 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 11:28:58 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 11:54:54 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 12:12:04 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 12:23:34 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 12:36:21 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 12:47:44 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 12:58:25 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 13:10:49 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 13:21:34 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 13:31:35 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 13:43:36 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 14:09:19 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 14:25:29 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 14:40:53 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 15:05:50 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 15:21:22 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 15:36:51 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 15:59:10 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 16:19:53 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 16:36:56 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 16:52:23 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 17:08:52 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 17:29:09 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 17:45:12 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 18:01:11 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 18:16:41 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 18:32:31 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 18:48:50 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 19:10:21 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 19:30:17 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 19:56:16 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 20:13:27 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 20:32:00 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 20:45:33 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 20:56:43 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 21:07:51 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 21:32:33 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 21:48:27 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 22:06:05 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 22:23:42 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 22:40:46 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 22:50:47 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 23:00:47 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 23:11:46 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 23:34:04 syslogd[410]: ASL Sender Statistics +13 мая 2025 г., 23:49:49 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 00:05:34 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 00:16:08 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 00:26:08 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:31:08 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +14 мая 2025 г., 00:36:08 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 01:01:51 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 01:20:03 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 01:32:13 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 01:47:59 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 02:05:45 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 02:21:02 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 02:37:44 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 02:52:15 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 03:08:30 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 03:25:39 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 03:42:37 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 03:58:05 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 04:15:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 04:33:42 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 04:51:34 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 05:07:25 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 05:30:20 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 05:46:00 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 06:03:10 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 06:20:29 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 06:38:27 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 06:55:10 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 07:15:48 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 07:31:48 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 07:54:24 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 08:10:04 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 08:20:25 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 08:40:27 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 08:55:45 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 09:15:30 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 09:27:45 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 09:45:08 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 09:59:29 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 10:23:27 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 10:41:06 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 10:59:19 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 11:16:59 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 11:34:13 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 11:47:47 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 12:00:15 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 12:17:21 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 12:26:25 login[40869]: USER_PROCESS: 40869 ttys000 +14 мая 2025 г., 12:28:26 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 12:38:41 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 12:50:10 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 13:17:04 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 13:28:06 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 13:39:08 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 13:55:32 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 14:14:12 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 14:31:11 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 14:46:34 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 15:00:22 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 15:15:03 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 15:25:10 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 15:35:36 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 15:51:04 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 16:06:33 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 16:22:43 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 16:38:15 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 16:53:59 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 17:10:07 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 17:27:03 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 17:48:36 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 18:04:15 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 18:20:37 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 18:30:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 18:47:24 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 19:02:55 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 19:18:55 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 19:31:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 19:48:56 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 20:05:47 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 20:21:34 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 20:32:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 20:49:41 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 21:06:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 21:24:05 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 21:34:06 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 21:49:32 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 22:06:15 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 22:23:52 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 22:34:58 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 22:50:10 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 23:00:47 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 23:12:22 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 23:17:12 CoreDeviceService[45068]: This is here just to make sure we empty our found devices queue +14 мая 2025 г., 23:17:12 CoreDeviceService[45068]: (null) +14 мая 2025 г., 23:17:12 CoreDeviceService[45068]: Failed to subscribe for booted OS device notifications. +14 мая 2025 г., 23:17:12 CoreDeviceService[45068]: (null) +14 мая 2025 г., 23:39:47 syslogd[410]: ASL Sender Statistics +14 мая 2025 г., 23:57:48 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 00:13:16 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 00:29:15 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 00:46:02 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.cdscheduler" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.install" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". +Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.authd" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.eventmonitor" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mail" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.performance" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.iokit.power" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". +Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.mkb" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 00:46:02 syslogd[410]: Configuration Notice: +ASL Module "com.apple.MessageTracer" claims selected messages. +Those messages may not appear in standard system log files or in the ASL database. +15 мая 2025 г., 01:02:25 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 01:18:14 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 01:38:38 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 02:00:19 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 02:16:23 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 02:33:52 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 02:49:38 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 03:07:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 03:25:28 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 03:41:25 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 03:58:25 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 04:16:38 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 04:34:18 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 04:51:24 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 05:09:14 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 05:34:19 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 05:50:26 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 06:08:29 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 06:26:03 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 06:42:50 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 06:59:15 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 07:18:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 07:34:25 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 07:50:29 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 08:06:06 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 08:19:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 08:36:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 08:53:34 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 09:08:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 09:20:54 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 09:38:57 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 09:55:00 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 10:13:31 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 10:37:34 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 10:54:12 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 11:10:01 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 11:22:53 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 11:46:19 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 12:04:36 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 12:20:34 syslogd[410]: ASL Sender Statistics +15 мая 2025 г., 12:34:27 syslogd[410]: ASL Sender Statistics + + Installer log: + + Source: /var/log/install.log + Size: 3,8 MB (3 772 546 bytes) + Last Modified: 15.05.2025, 12:34 + Recent Contents: ... +2025-05-11 19:35:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-11 19:35:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-11 19:35:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-11 19:35:11+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: minorPrimaryDescriptor: (null) +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + ) +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: No products. +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: softwareupdated: Posting com.apple.softwareupdate.AutoBackgroundScanFinished notification +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Updates available notification already scheduled +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: int main(int, const char **)_block_invoke: Removed old declarations upon successful update +2025-05-11 19:35:13+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUManagedServiceDaemon invalidAndRemoveOldDeclarations]_block_invoke: Removed 0 invalid declarations +2025-05-11 20:17:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-11 20:17:24+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-11 20:17:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-11 20:17:24+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-11 21:36:42+03 MacBook-Air--Main systemmigrationd[34292]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-11 21:36:42+03 MacBook-Air--Main softwareupdated[8580]: Adding client SUUpdateServiceClient pid=34292, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-11 21:36:44+03 MacBook-Air--Main systemmigrationd[34292]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-11 21:37:34+03 MacBook-Air--Main softwareupdated[8580]: Removing client SUUpdateServiceClient pid=34292, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-11 22:10:30+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Posting com.apple.SoftwareUpdate.updatesAvailable notification +2025-05-11 22:10:30+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Canceling updatesAvailableNotificationTimerSource +2025-05-11 22:15:59+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-11 22:15:59+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 22:15:59+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-11 22:16:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 22:16:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-11 22:16:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-11 22:16:07+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-11 22:16:07+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 22:16:07+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-11 22:20:14+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 22:20:14+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-11 22:20:15+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-11 22:20:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-11 22:20:18+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-11 22:20:18+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 02:23:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-12 02:23:17+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-12 02:23:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-12 02:23:17+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-12 08:34:04+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-12 08:34:04+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-12 08:34:04+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-12 08:34:04+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-12 10:00:09+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:00:09+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:00:09+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:00:09+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:00:09+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:00:09+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:00:09+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:04:52+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:04:52+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:04:52+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:06:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:08:30+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:08:30+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:08:30+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:14:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:14:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:14:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:14:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:14:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:18:44+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:18:44+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:18:44+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:20:07+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:22:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:22:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:22:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:27:44+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:27:44+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:27:44+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:27:44+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:27:44+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:28:52+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:28:52+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:28:52+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:28:52+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:31:04+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:31:04+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:31:04+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:38:12+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:38:12+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:38:12+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:38:12+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:38:12+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:42:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:42:22+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:42:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:42:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:45:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:45:03+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:45:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:45:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:47:37+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:47:37+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:47:37+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:53:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:53:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:53:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:53:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:53:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 10:55:29+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 10:55:29+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 10:55:29+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 10:56:35+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:07:23+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:07:23+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 11:07:23+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:08:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:10:23+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:10:23+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 11:10:23+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:12:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:24:32+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:24:32+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 11:24:32+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:25:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:30:57+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:30:57+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 11:30:57+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:33:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:35:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:35:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 11:35:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:37:26+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 11:43:40+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 11:43:40+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 11:43:40+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 14:17:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-12 14:17:16+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-12 14:17:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-12 14:17:16+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-12 17:52:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 17:52:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 17:52:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 17:52:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 17:52:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 17:52:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 17:52:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 17:56:47+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 17:56:47+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 17:56:47+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 20:31:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-12 20:31:06+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-12 20:31:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-12 20:31:06+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-12 21:06:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 21:06:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 21:06:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 21:06:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 21:06:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 21:06:17+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 21:06:17+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 21:07:35+03 Mac systemmigrationd[36899]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-12 21:07:35+03 Mac softwareupdated[8580]: Adding client SUUpdateServiceClient pid=36899, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-12 21:07:37+03 Mac systemmigrationd[36899]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-12 21:07:47+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 21:07:48+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 21:07:48+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:06:57+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:06:57+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:06:57+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:06:57+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:06:57+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:06:57+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:06:58+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 23:14:24+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=36899, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-12 23:15:45+03 Mac appstoreagent[25217]: Current Path: /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent +2025-05-12 23:15:45+03 Mac installd[24029]: PackageKit: Adding client PKInstallDaemonClient pid=25217, uid=501 (/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent) +2025-05-12 23:15:45+03 Mac appstoreagent[25217]: PackageKit: Enqueuing install with framework-specified quality of service (utility) +2025-05-12 23:15:45+03 Mac installd[24029]: PackageKit: Set reponsibility for install to 25217 +2025-05-12 23:15:45+03 Mac installd[24029]: PackageKit: ----- Begin install ----- +2025-05-12 23:15:45+03 Mac installd[24029]: PackageKit: request=PKInstallRequest <1 packages, destination=/> +2025-05-12 23:15:45+03 Mac installd[24029]: PackageKit: packages=( + "PKLeopardPackage " + ) +2025-05-12 23:16:10+03 Mac installd[24029]: PackageKit: Extracting file:///var/folders/l_/9lrym7mj7z92nqd2bf43mz0h0000gn/C/com.apple.appstoreagent/com.apple.appstore/BCEC8740-FEB4-458C-9C7B-5105BB521D1C/ryc15538999595007512855.pkg#com.tanksblitz.pkg (destination=/Library/InstallerSandboxes/.PKInstallSandboxManager/E74BA83C-8E6D-458C-8D02-92716B330036.activeSandbox/Root/Applications, uid=0) +2025-05-12 23:17:31+03 Mac installd[24029]: PackageKit: Verifying code signature on /Library/InstallerSandboxes/.PKInstallSandboxManager/E74BA83C-8E6D-458C-8D02-92716B330036.activeSandbox/Root/Applications/Tanks Blitz.app +2025-05-12 23:17:43+03 Mac installd[24029]: PackageKit: Writing receipt for com.tanksblitz to /Library/InstallerSandboxes/.PKInstallSandboxManager/E74BA83C-8E6D-458C-8D02-92716B330036.activeSandbox/Root +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: prevent user idle system sleep +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: suspending backupd +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: Wrote MAS receipt into Applications/Tanks Blitz.app +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: Wrote MAS Metadata into Applications/Tanks Blitz.app +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/E74BA83C-8E6D-458C-8D02-92716B330036.sandboxTrash for sandbox /Library/InstallerSandboxes/.PKInstallSandboxManager/E74BA83C-8E6D-458C-8D02-92716B330036.activeSandbox +2025-05-12 23:17:44+03 Mac install_monitor[37451]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: Shoving /Library/InstallerSandboxes/.PKInstallSandboxManager/E74BA83C-8E6D-458C-8D02-92716B330036.activeSandbox/Root (2 items) to / +2025-05-12 23:17:44+03 Mac installd[24029]: PackageKit: Parent bundle com.tanksblitz will be atomically shoved. +2025-05-12 23:17:44+03 Mac shove[37452]: /Applications/Tanks Blitz.app: restored [xattr=com.apple.appstore.metadata] with value size 1867 +2025-05-12 23:17:44+03 Mac shove[37452]: [src=noflags] /Applications/Tanks Blitz.app: restored flags 0x0 +2025-05-12 23:17:45+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftCore.dylib +2025-05-12 23:17:45+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftCoreFoundation.dylib +2025-05-12 23:17:45+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftCoreGraphics.dylib +2025-05-12 23:17:45+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftCoreImage.dylib +2025-05-12 23:17:46+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftDarwin.dylib +2025-05-12 23:17:46+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftDispatch.dylib +2025-05-12 23:17:46+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftFoundation.dylib +2025-05-12 23:17:47+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftIOKit.dylib +2025-05-12 23:17:47+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftMetal.dylib +2025-05-12 23:17:47+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftObjectiveC.dylib +2025-05-12 23:17:47+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftQuartzCore.dylib +2025-05-12 23:17:48+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftXPC.dylib +2025-05-12 23:17:48+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftos.dylib +2025-05-12 23:17:48+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/Frameworks/libswiftsimd.dylib +2025-05-12 23:17:59+03 Mac installd[24029]: oahd translated /Applications/Tanks Blitz.app/Contents/MacOS/Tanks Blitz +2025-05-12 23:17:59+03 Mac installd[24029]: PackageKit: Translated 15 binaries. +2025-05-12 23:17:59+03 Mac installd[24029]: PackageKit: Touched bundle /Applications/Tanks Blitz.app +2025-05-12 23:17:59+03 Mac installd[24029]: Installed "Tanks Blitz" (11.10.0) +2025-05-12 23:17:59+03 Mac installd[24029]: Successfully wrote install history to /Library/Receipts/InstallHistory.plist +2025-05-12 23:17:59+03 Mac install_monitor[37451]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: releasing backupd +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: allow user idle system sleep +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: ----- End install ----- +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: 135.1s elapsed install time +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: Cleared responsibility for install from 25217. +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: Running idle tasks +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: Done with sandbox removals +2025-05-12 23:18:00+03 Mac appstoreagent[25217]: PackageKit: Registered bundle file:///Applications/Tanks%20Blitz.app/ for uid 501 +2025-05-12 23:18:00+03 Mac installd[24029]: PackageKit: Removing client PKInstallDaemonClient pid=25217, uid=501 (/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent) +2025-05-12 23:26:41+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 23:26:41+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:26:41+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:26:42+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:26:42+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-12 23:26:42+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-12 23:26:51+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-12 23:26:51+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-12 23:26:51+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 05:16:57+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-13 05:16:57+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-13 05:16:57+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-13 05:16:57+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-13 08:18:59+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-13 08:18:59+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-13 08:18:59+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-13 08:18:59+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-13 10:20:31+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 10:20:31+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 10:20:31+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 10:20:31+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 10:20:31+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 10:20:31+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 10:20:31+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 10:26:54+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 10:26:54+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 10:35:13+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 10:35:13+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 11:01:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 11:01:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 11:01:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 11:01:20+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 11:08:42+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 11:08:42+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 11:08:43+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 11:09:04+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 11:28:58+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 11:28:58+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 11:28:58+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 12:21:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 12:21:33+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 12:21:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 12:21:33+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 12:21:33+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 12:21:33+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 12:21:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 12:44:49+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 12:44:49+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:07:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:07:03+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:07:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 13:10:49+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 13:16:56+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:16:56+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:17:25+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 13:18:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 13:25:48+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:25:48+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:31:46+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:31:46+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:32:47+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 13:34:42+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 13:36:52+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:36:52+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:37:46+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 13:40:15+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:40:15+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 13:40:15+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 13:40:20+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 13:40:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 13:40:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 17:12:19+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 17:12:19+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 17:12:19+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 17:12:19+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 17:12:19+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 17:12:19+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 17:12:19+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 17:12:26+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 17:12:26+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 17:12:32+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-13 17:12:32+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-13 17:12:32+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-13 17:12:32+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-13 17:12:39+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 17:12:39+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 17:12:39+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 20:32:01+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-13 20:32:01+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-13 20:32:01+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-13 20:32:01+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-13 20:33:06+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 20:33:06+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 20:33:06+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 20:33:06+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 20:33:06+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 20:33:06+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 20:33:06+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 21:09:24+03 Mac appstoreagent[25217]: Current Path: /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Adding client PKInstallDaemonClient pid=25217, uid=501 (/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent) +2025-05-13 21:09:24+03 Mac appstoreagent[25217]: PackageKit: Enqueuing install with framework-specified quality of service (utility) +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Set reponsibility for install to 25217 +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: ----- Begin install ----- +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: request=PKInstallRequest <1 packages, destination=/> +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: packages=( + "PKLeopardPackage " + ) +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Extracting file:///var/folders/l_/9lrym7mj7z92nqd2bf43mz0h0000gn/C/com.apple.appstoreagent/com.apple.appstore/2C5FDA47-FEB7-49BA-BC96-79B5BADA031D/zws1977874409219571026.pkg#com.userscripts.macos.pkg (destination=/Library/InstallerSandboxes/.PKInstallSandboxManager/79BD5F3A-B2B8-4A0F-9869-F505299898FF.activeSandbox/Root/Applications, uid=0) +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Verifying code signature on /Library/InstallerSandboxes/.PKInstallSandboxManager/79BD5F3A-B2B8-4A0F-9869-F505299898FF.activeSandbox/Root/Applications/Userscripts.app +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Writing receipt for com.userscripts.macos to /Library/InstallerSandboxes/.PKInstallSandboxManager/79BD5F3A-B2B8-4A0F-9869-F505299898FF.activeSandbox/Root +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: prevent user idle system sleep +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: suspending backupd +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Wrote MAS receipt into Applications/Userscripts.app +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Wrote MAS Metadata into Applications/Userscripts.app +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/79BD5F3A-B2B8-4A0F-9869-F505299898FF.sandboxTrash for sandbox /Library/InstallerSandboxes/.PKInstallSandboxManager/79BD5F3A-B2B8-4A0F-9869-F505299898FF.activeSandbox +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Shoving /Library/InstallerSandboxes/.PKInstallSandboxManager/79BD5F3A-B2B8-4A0F-9869-F505299898FF.activeSandbox/Root (2 items) to / +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Parent bundle com.userscripts.macos will be atomically shoved. +2025-05-13 21:09:24+03 Mac install_monitor[39120]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-13 21:09:24+03 Mac shove[39121]: /Applications/Userscripts.app: restored [xattr=com.apple.appstore.metadata] with value size 1753 +2025-05-13 21:09:24+03 Mac shove[39121]: [src=noflags] /Applications/Userscripts.app: restored flags 0x0 +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: No Intel binaries to translate. +2025-05-13 21:09:24+03 Mac installd[24029]: PackageKit: Touched bundle /Applications/Userscripts.app +2025-05-13 21:09:24+03 Mac installd[24029]: Installed "Userscripts-Mac-App" (4.7.1) +2025-05-13 21:09:24+03 Mac installd[24029]: Successfully wrote install history to /Library/Receipts/InstallHistory.plist +2025-05-13 21:09:24+03 Mac install_monitor[39120]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: releasing backupd +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: allow user idle system sleep +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: ----- End install ----- +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: 0.7s elapsed install time +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: Cleared responsibility for install from 25217. +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: Running idle tasks +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: Done with sandbox removals +2025-05-13 21:09:25+03 Mac appstoreagent[25217]: PackageKit: Registered bundle file:///Applications/Userscripts.app/ for uid 501 +2025-05-13 21:09:25+03 Mac installd[24029]: PackageKit: Removing client PKInstallDaemonClient pid=25217, uid=501 (/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent) +2025-05-13 21:16:40+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 21:16:40+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 21:16:40+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:40:58+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:40:58+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:40:58+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:40:58+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:40:58+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:40:58+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:40:58+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 22:41:04+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:41:04+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:41:04+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 22:42:34+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:42:34+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 22:42:34+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 22:49:33+03 Mac nbagent[25575]: NBUpdateController: Using catalog URL: https://swscan.apple.com/content/catalogs/others/index-noticeboard-10.10-noticeboard-10.9-noticeboard.merged-1.sucatalog +2025-05-13 22:49:33+03 Mac nbagent[25575]: MiniSoftwareUpdate: using pinning policy for swscan.apple.com: MacSoftwareUpdate (included with OS) +2025-05-13 22:49:33+03 Mac nbagent[25575]: MiniSoftwareUpdate: using pinning policy for swdist.apple.com: MacSoftwareUpdate (included with OS) +2025-05-13 22:49:33+03 Mac nbagent[25575]: NBUpdateController: Filtered installable products: ( + ) +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: BackgroundActivity: Starting Background Check Activity +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: BackgroundActivity: Starting background actions now. +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: BackgroundActions: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: SoftwareUpdate: Should Check=YES. Next check=12.05.2025, 16:32 (interval=86280.000000, A/C=YES +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: SoftwareUpdate: Fire periodic check for interval +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: BackgroundActions: checking for updates +2025-05-13 22:50:02+03 Mac softwareupdated[8580]: SUScan: Scan for client pid 8580 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:03+03 Mac softwareupdated[8580]: Got status 200 +2025-05-13 22:50:03+03 Mac softwareupdated[8580]: SUScan: Using catalog https://swscan.apple.com/content/catalogs/others/index-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:04+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'system.ioregistry.fromPath('IODeviceTree:/rom\@0').version') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:05+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:06+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:07+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: JS: 15.4.1 +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: JS: No bundle at/Applications/SafeView.app +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:08+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:09+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:14+03 Mac softwareupdated[8580]: Package Authoring: error running installation-check script: TypeError: null is not an object (evaluating 'cpuFeatures.split') at x-distribution:///installer-gui-script%5B1%5D/installation-check%5B1%5D/@script +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Failed to get bridge device +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUScan: Elapsed scan time = 13.5 +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Refreshing available updates from scan +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Scan (f=1, d=1) completed +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: 1 updates found: + 082-47875 | XProtectPlistConfigData 5297 +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSNotificationBundleHandler: Should notify? NO (Notification pending=0, bundle exists=0, mdmInitiatedNotificationBundleInstall=0) +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: Legacy scan completed +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: 0 user-visible product(s): +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: 1 enabled config-data product(s): 082-47875 (want active updates only) +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: 0 firmware product(s): +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: 0 Critical product(s) - [download and install now: ], [download and queue for post logout now: ], [download only: ], [no action: ] +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: PackageKit: Unregistered a global authorization to daemon. +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActivity: Starting background download now. +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: DO MSU BACKGROUND ACTIONS! +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActivity: Finished Background Check Activity +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: BackgroundActions: Downloading 1 products: Critical [], Config-data [082-47875], Others [] +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SoftwareUpdate: Added background transaction [0x1] for XProtectPlistConfigData_10_15-5297 +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUBackgroundManager: Finished sending products to to download in SUUpdateSession. +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Changing status (_startDownloadingUpdateWithProduct) for key 082-47875 from "not running" to "downloading" +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SoftwareUpdate: starting download of 082-47875 (XProtectPlistConfigData_10_15-5297) +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: Perform background scan +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Starting scan with options: Background=1, MDMInitiated=0, BuddyInitiated=0, requestedPMV=(null)) +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Set bridgeOS catalog override to catalogURL default +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Setting requestedPMV to nil +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: Remaining packages to install for product 082-47875 : com.apple.pkg.XProtectPlistConfigData_10_15.16U4368 +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: ContentLocator: No modified URL found +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: 082-47875: Downloader has Started: + + max concurrent downloads: 10 + 0 active downloads: + 1 queued downloads: + + PKPackageReference: { + AdditionalInfo = { + SUDistributionPackageURLString = "https://swdist.apple.com/content/downloads/57/46/082-47875-A_CBENP9M66O/50xf4ecbwp8rdzosnx5bouua496p93igdz/XProtectPlistConfigData_10_15.pkg"; + SUTOCDigestChecksum = 363677836b1508d7a77edf1f48d409016c7434a0; + }; + HashAlgorithm = 0; + Identifier = "com.apple.pkg.XProtectPlistConfigData_10_15.16U4368"; + Size = 1254599; + URL = "https://swcdn.apple.com/content/downloads/57/46/082-47875-A_CBENP9M66O/50xf4ecbwp8rdzosnx5bouua496p93igdz/XProtectPlistConfigData_10_15.pkg"; + Version = "082-47875"; + } + destination path: /var/folders/zz/zyxvpxvq6csfxvn_n00000s0000068/C/com.apple.SoftwareUpdate/swcdn.apple.com/content/downloads/57/46/082-47875-A_CBENP9M66O/50xf4ecbwp8rdzosnx5bouua496p93igdz/XProtectPlistConfigData_10_15.pkg + initialized: NO + downloaded: 0 + checksummed: 0 + progress increment: 0 + ---- + total bytes queued: 1254599 + bytes completed: 0 + bytes dequeued so far: 0 + current progress: -1.000000 + dequeued progress increment: 0 + progress derating: 1.000000 + --- + download speed: (null) + checksum speed: (null) +2025-05-13 22:50:15+03 Mac softwareupdated[8580]: 082-47875: Starting download of XProtectPlistConfigData_10_15.pkg (Size:1254599, HasIntegrityInformation:NO) with URL https://swcdn.apple.com/content/downloads/57/46/082-47875-A_CBENP9M66O/50xf4ecbwp8rdzosnx5bouua496p93igdz/XProtectPlistConfigData_10_15.pkg +2025-05-13 22:50:16+03 Mac suhelperd[548]: Verifying package at path: /Library/Updates/082-47875/XProtectPlistConfigData_10_15.pkg +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: 082-47875: Downloader has Stopped: + + max concurrent downloads: 10 + 0 active downloads: + 0 queued downloads: + total bytes queued: 1254599 + bytes completed: 1254599 + bytes dequeued so far: 1254599 + current progress: 100.000000 + dequeued progress increment: 0 + progress derating: 1.000000 + --- + download speed: + checksum speed: +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Changing status (_startDownloadingUpdateWithProduct) for key 082-47875 from "downloading" to "downloaded" +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SoftwareUpdate: finished download of 082-47875 +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Stopping transaction with ID [0x1] +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SoftwareUpdate: Removed background transaction [0x1] +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SUBackgroundManager: Finished downloading 082-47875. +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Product 082-47875 has already been downloaded - background installing now +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Running session-idle tasks. +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SoftwareUpdate: isSafe=1 (W=1) +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Checking for inapplicable local products remaining on disk for cleanup +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: PackageKit: Unregistered a global authorization to daemon. +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Adding client SUUpdateServiceClient pid=39367, uid=200, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/SoftwareUpdateConfigData) +2025-05-13 22:50:16+03 Mac system_installd[24033]: PackageKit: Adding client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: PackageKit: Registered a global authorization to daemon, the daemon will be unable to idle exit. +2025-05-13 22:50:16+03 Mac installd[24029]: PackageKit: Adding client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: PackageKit: Registered a global authorization to daemon, the daemon will be unable to idle exit. +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SUBackgroundManager: Waiting for product keys to cancel:( + ) +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SUBackgroundManager: Finished cancelling products:( + ) +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SUUpdateSession startUpdateForProducts: inForeground: NO stageOnly: NO +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: SoftwareUpdate: Added background transaction [0x2] for XProtectPlistConfigData_10_15-5297 +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Changing status (_installProducts) for key 082-47875 from "downloaded" to "waiting to install" +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Changing status (_installProducts) for key 082-47875 from "waiting to install" to "installing" +2025-05-13 22:50:16+03 Mac softwareupdated[8580]: Installing - all non-BaseSystem path products +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Adding client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:17+03 Mac softwareupdated[8580]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-13 22:50:17+03 Mac softwareupdated[8580]: PackageKit: Enqueuing install with default quality of service (background) +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Set reponsibility for install to 8580 +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: ----- Begin install ----- +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: request=PKInstallRequest <1 packages, destination=/> +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: packages=( + "PKLeopardPackage " + ) +2025-05-13 22:50:17+03 Mac system_installd[24033]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Extracting file:///Library/Updates/082-47875/XProtectPlistConfigData_10_15.pkg (destination=/Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox/Root, uid=0) +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: prevent user idle system sleep +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: suspending backupd +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Executing script "preinstall" in /Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox/OpenPath.Cyb7TV/Scripts/com.apple.pkg.XProtectPlistConfigData_10_15.16U4368.UBjdJN +2025-05-13 22:50:17+03 Mac install_monitor[39368]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Using system content trashcan path /Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox/Trashes for sandbox /Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Shoving /Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox/Root (1 items) to / +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Parent bundle com.apple.XProtect will be atomically shoved. +2025-05-13 22:50:17+03 Mac shove[39371]: [src=restricted,nounlink] /: unable to restore flags 0x80000 (error 30) +2025-05-13 22:50:17+03 Mac shove[39371]: [src=noflags] /Library/Apple: restored flags 0x80000 and storage class +2025-05-13 22:50:17+03 Mac shove[39371]: [src=noflags] /Library/Apple: restored flags 0x80000 +2025-05-13 22:50:17+03 Mac system_installd[24033]: PackageKit: Executing script "postinstall" in /Library/Apple/System/Library/InstallerSandboxes/.PKInstallSandboxManager-SystemSoftware/6100FB9B-E3EA-499B-B965-FF7B86F790A4.activeSandbox/OpenPath.Cyb7TV/Scripts/com.apple.pkg.XProtectPlistConfigData_10_15.16U4368.UBjdJN +2025-05-13 22:50:17+03 Mac root[39374]: Running Install Scripts . . . +2025-05-13 22:50:17+03 Mac root[39376]: Begin script: postinstall +2025-05-13 22:50:18+03 Mac root[39380]: End script: postinstall +2025-05-13 22:50:18+03 Mac root[39381]: 1 Install Scripts run. +2025-05-13 22:50:18+03 Mac softwareupdated[8580]: MiniSoftwareUpdate: using pinning policy for swscan.apple.com: MacSoftwareUpdate (included with OS) +2025-05-13 22:50:18+03 Mac system_installd[24033]: PackageKit: Writing system content receipt for com.apple.pkg.XProtectPlistConfigData_10_15.16U4368 to / +2025-05-13 22:50:18+03 Mac system_installd[24033]: PackageKit: No Intel binaries to translate. +2025-05-13 22:50:18+03 Mac system_installd[24033]: Installed "XProtectPlistConfigData" (5297) +2025-05-13 22:50:18+03 Mac system_installd[24033]: Successfully wrote install history to /Library/Receipts/InstallHistory.plist +2025-05-13 22:50:18+03 Mac install_monitor[39368]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: releasing backupd +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: allow user idle system sleep +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: ----- End install ----- +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: 2.0s elapsed install time +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: Cleared responsibility for install from 8580. +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: Running idle tasks +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: installClientDidFinish: Add Key:(082-47875) to _productKeysToDelete +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: PackageKit: Unregistered a global authorization to daemon. +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: Removing client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:19+03 Mac installd[24029]: PackageKit: Removing client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: Removing client PKInstallDaemonClient pid=8580, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated) +2025-05-13 22:50:19+03 Mac system_installd[24033]: PackageKit: Done with sandbox removals +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: MiniSoftwareUpdate: using pinning policy for swdist.apple.com: MacSoftwareUpdate (included with OS) +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Setting SULocalProduct to Unlocked for key:082-47875 +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Changing status (_installProducts) for key 082-47875 from "installing" to "installed" +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Success: Finished installing non-BaseSystem update : 082-47875. Reporting statistics. +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Removing 082-47875 +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Removed local product for 082-47875 (1) +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Resetting FirstCriticalNotificationPostedDate +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Skipping adding config-data update to the journal: 082-47875 +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Stopping transaction with ID [0x2] +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: SoftwareUpdate: Removed background transaction [0x2] +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Running session-idle tasks. +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Checking for inapplicable local products remaining on disk for cleanup +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=39367, uid=200, installAuth=YES rights=(system.install.apple-config-data), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/SoftwareUpdateConfigData) +2025-05-13 22:50:19+03 Mac softwareupdated[8580]: PackageKit: Unregistered a global authorization to daemon. +2025-05-13 22:50:25+03 Mac softwareupdated[8580]: SUOSUMobileSoftwareUpdateController: Scan finished +2025-05-13 22:50:25+03 Mac softwareupdated[8580]: majorPrimaryDescriptor: (null) +2025-05-13 22:50:25+03 Mac softwareupdated[8580]: minorPrimaryDescriptor: SUMacControllerDescriptor(UUID:EB0DF81E-B8EC-5ABA-A69A-A83C36310612 SU:macOS Sequoia 15.5 24F74 (Customer)(SU) SFR:macOS 15.5 24F74 (Customer) BRAIN:24F74 BRIDGEOS:NO((null)) ROSETTA:YES((null)) RECOVERYOS:YES SPLAT:(null)) +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Setting availableMobileSoftwareUpdates = ( + "" + ) +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _updateFilteredAvailableMobileSoftwareDescriptors:mdmInitiated:]: Resetting harvested passcode to nil +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: MSU updates have changed since last scan, do not restrict to full replacements anymore +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: SUOSUBackgroundDownloadEvaluator: is ramped, not downloadable at this time +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: BackgroundActivity: No products eligible for background download. +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: softwareupdated: Posting com.apple.softwareupdate.AutoBackgroundScanFinished notification +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: SUOSUInactivityPredictor: Predicting an inactivity between Tue May 13 22:50:26 2025 and Wed May 14 22:50:26 2025 +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: int main(int, const char **)_block_invoke: Removed old declarations upon successful update +2025-05-13 22:50:26+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 22:50:27+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Predicted inactivity is in the past, posting now +2025-05-13 22:50:27+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon scheduleUpdatesAvailableBSDNotification]_block_invoke: Posting com.apple.SoftwareUpdate.updatesAvailable notification +2025-05-13 22:50:27+03 Mac softwareupdated[8580]: -[SUOSUManagedServiceDaemon invalidAndRemoveOldDeclarations]_block_invoke: Removed 0 invalid declarations +2025-05-13 23:17:26+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 23:17:27+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-13 23:17:27+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-13 23:17:54+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-13 23:18:50+03 Mac systemmigrationd[39664]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-13 23:18:50+03 Mac softwareupdated[8580]: Adding client SUUpdateServiceClient pid=39664, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-13 23:18:53+03 Mac systemmigrationd[39664]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-13 23:19:04+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-13 23:34:36+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=39664, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-13 23:49:54+03 Mac systemmigrationd[39741]: systemmigrationd: Transitioning scanner request from Nothing to Local Volumes. +2025-05-13 23:49:54+03 Mac softwareupdated[8580]: Adding client SUUpdateServiceClient pid=39741, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-13 23:49:56+03 Mac systemmigrationd[39741]: systemmigrationd: Transitioning scanner request from Local Volumes to Nothing. +2025-05-14 00:05:45+03 Mac softwareupdated[8580]: Removing client SUUpdateServiceClient pid=39741, uid=0, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/Resources/systemmigrationd) +2025-05-14 05:13:43+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-14 05:13:43+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-14 05:13:43+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-14 05:13:43+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-14 06:58:23+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:23+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 06:58:23+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 06:58:23+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:23+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 06:58:23+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:23+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 06:58:25+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:25+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 06:58:25+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 06:58:26+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:26+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 06:58:26+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 06:58:46+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 06:58:46+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 06:58:46+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 08:20:30+03 Mac softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-14 08:20:30+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-14 08:20:30+03 Mac softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-14 08:20:30+03 Mac softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-14 08:55:48+03 Mac XProtectUpdateService[26349]: Recorded item in install history database: "XProtectCloudKitUpdate" (5297) +2025-05-14 08:55:48+03 Mac XProtectUpdateService[26349]: Successfully wrote install history to /Library/Receipts/InstallHistory.plist +2025-05-14 11:47:47+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 11:47:47+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 11:47:47+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 11:47:47+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 11:47:47+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 11:47:47+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 11:47:47+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 11:47:55+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 11:47:55+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 11:47:55+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 11:47:59+03 Mac softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 11:47:59+03 Mac loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 11:47:59+03 Mac softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:04:25+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:04:25+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:04:25+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:17:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:17:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:17:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:17:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:17:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:17:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:17:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:20:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:20:02+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:20:02+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:21:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:24:51+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:24:51+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:24:51+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:24:54+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:38:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:38:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:38:41+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:38:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:38:41+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:38:41+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:38:45+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:38:45+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:38:45+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:42:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:42:28+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:42:28+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:50:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:50:21+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:50:21+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 12:59:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:59:16+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:59:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 12:59:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:59:16+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:59:16+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 12:59:16+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 12:59:22+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 14:31:12+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-14 14:31:12+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-14 14:31:12+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-14 14:31:12+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-14 15:15:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:15:03+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:15:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:15:03+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:15:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:15:03+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:15:03+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 15:17:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:17:24+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:17:24+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 15:20:36+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 15:23:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:23:06+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:23:06+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 15:28:53+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:28:53+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:28:53+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:28:53+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:28:53+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 15:28:53+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 15:28:53+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 15:28:58+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 20:21:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-14 20:21:34+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-14 20:21:34+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-14 20:21:34+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-14 22:50:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 22:50:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 22:50:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 22:50:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 22:50:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 22:50:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 22:50:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 23:17:11+03 MacBook-Air--Main Xcode[45062]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-14 23:17:11+03 MacBook-Air--Main Xcode[45062]: Package Authoring Error: PackageInfo bundle reference found without top-level bundle definition. Bundle will be skipped: +2025-05-14 23:19:46+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 23:19:46+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 23:19:46+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 23:22:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 23:22:05+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-14 23:22:05+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on +2025-05-14 23:22:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System will sleep +2025-05-14 23:22:10+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-14 23:22:10+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-15 05:17:55+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-15 05:17:55+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-15 05:17:55+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-15 05:17:55+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-15 08:19:55+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceDaemon: Periodic autoupdate action called +2025-05-15 08:19:55+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon doPeriodicActions]: Doing periodic auto update action +2025-05-15 08:19:55+03 MacBook-Air--Main softwareupdated[8580]: SUOSUServiceClientManager: Chose on-console client: SoftwareUpdateNotificationManager (type = sunm, pid = 23779, uid = 501, path = /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources/SoftwareUpdateNotificationManager.app/Contents/MacOS/SoftwareUpdateNotificationManager) +2025-05-15 08:19:55+03 MacBook-Air--Main softwareupdated[8580]: -[SUOSUServiceDaemon _mobileKeyBagStashStateForUser:]: uid: 501, stashState: 2, result: 0 +2025-05-15 12:34:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-15 12:34:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-15 12:34:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-15 12:34:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-15 12:34:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSULoginCredentialPolicyManager: No update downloaded and prepared. +2025-05-15 12:34:27+03 MacBook-Air--Main loginwindow[448]: +[SUOSULoginCredentialPolicy currentLoginCredentialPolicy] = 0 +2025-05-15 12:34:27+03 MacBook-Air--Main softwareupdated[8580]: SUOSUPowerEventObserver: System has powered on + + + Disc recording log: + + Source: /Users/main/Library/Logs/DiscRecording.log + Size: 354 bytes + Last Modified: 08.05.2025, 23:03 + Recent Contents: + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk11s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk11s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk9s1) failed + + +******************************** +Finder: DRDeviceCopyDeviceForBSDName(disk9s1) failed + + + Filesystem repair log: + + Source: /var/log/fsck_hfs.log + Size: 14 KB (14 089 bytes) + Last Modified: 14.05.2025, 12:00 + Recent Contents: +/dev/rdisk4: fsck_hfs started at Thu Feb 20 20:36:18 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Thu Feb 20 20:36:18 2025 + + +/dev/rdisk4: fsck_hfs started at Thu Feb 20 20:40:43 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Thu Feb 20 20:40:43 2025 + + +/dev/rdisk4: fsck_hfs started at Tue Apr 8 14:15:48 2025 +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Tue Apr 8 14:15:48 2025 + + +/dev/rdisk4s1: fsck_hfs started at Wed Apr 9 00:52:56 2025 +/dev/rdisk4s1: Can't open /dev/rdisk4s1: Permission denied +/dev/rdisk4s1: /dev/rdisk4s1: ** /dev/rdisk4s1 (NO WRITE) +/dev/rdisk4s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4s1: fsck_hfs completed at Wed Apr 9 00:52:56 2025 + + +/dev/rdisk5s1: fsck_hfs started at Wed Apr 9 00:53:20 2025 +/dev/rdisk5s1: Can't open /dev/rdisk5s1: Permission denied +/dev/rdisk5s1: /dev/rdisk5s1: ** /dev/rdisk5s1 (NO WRITE) +/dev/rdisk5s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk5s1: fsck_hfs completed at Wed Apr 9 00:53:20 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:01 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:01 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4: fsck_hfs started at Wed Apr 9 01:07:02 2025 +/dev/rdisk4: Can't open /dev/rdisk4: Permission denied +/dev/rdisk4: /dev/rdisk4: ** /dev/rdisk4 (NO WRITE) +/dev/rdisk4: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4: fsck_hfs completed at Wed Apr 9 01:07:02 2025 + + +/dev/rdisk4s1: fsck_hfs started at Wed Apr 9 01:10:14 2025 +/dev/rdisk4s1: Can't open /dev/rdisk4s1: Permission denied +/dev/rdisk4s1: /dev/rdisk4s1: ** /dev/rdisk4s1 (NO WRITE) +/dev/rdisk4s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk4s1: fsck_hfs completed at Wed Apr 9 01:10:14 2025 + + +/dev/rdisk5s1: fsck_hfs started at Wed Apr 9 01:10:18 2025 +/dev/rdisk5s1: Can't open /dev/rdisk5s1: Permission denied +/dev/rdisk5s1: /dev/rdisk5s1: ** /dev/rdisk5s1 (NO WRITE) +/dev/rdisk5s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk5s1: fsck_hfs completed at Wed Apr 9 01:10:18 2025 + + +/dev/rdisk10s2: fsck_hfs started at Wed Apr 9 12:07:45 2025 +/dev/rdisk10s2: Can't open /dev/rdisk10s2: Permission denied +/dev/rdisk10s2: /dev/rdisk10s2: ** /dev/rdisk10s2 (NO WRITE) +/dev/rdisk10s2: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk10s2: fsck_hfs completed at Wed Apr 9 12:07:45 2025 + + +/dev/rdisk14s1: fsck_hfs started at Sat Apr 12 13:15:07 2025 +/dev/rdisk14s1: Can't open /dev/rdisk14s1: Permission denied +/dev/rdisk14s1: /dev/rdisk14s1: ** /dev/rdisk14s1 (NO WRITE) +/dev/rdisk14s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk14s1: fsck_hfs completed at Sat Apr 12 13:15:07 2025 + + +/dev/rdisk15s1: fsck_hfs started at Tue Apr 15 19:34:11 2025 +/dev/rdisk15s1: Can't open /dev/rdisk15s1: Permission denied +/dev/rdisk15s1: /dev/rdisk15s1: ** /dev/rdisk15s1 (NO WRITE) +/dev/rdisk15s1: Executing fsck_hfs (version hfs-677.60.1). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk15s1: fsck_hfs completed at Tue Apr 15 19:34:11 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:12 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:12 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:13 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:13 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:24 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:24 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sat Apr 26 22:23:24 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sat Apr 26 22:23:24 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 20:55:41 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 20:55:41 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 20:55:41 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 20:55:41 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:25 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:25 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:25 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:25 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:29 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:29 2025 + + +/dev/rdisk12s1: fsck_hfs started at Sun Apr 27 22:28:29 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Sun Apr 27 22:28:29 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 13:22:46 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 13:22:46 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 13:22:46 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 13:22:46 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:07 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:07 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:08 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:08 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:09 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:09 2025 + + +/dev/rdisk12s1: fsck_hfs started at Fri May 9 18:31:09 2025 +/dev/rdisk12s1: Can't open /dev/rdisk12s1: Permission denied +/dev/rdisk12s1: /dev/rdisk12s1: ** /dev/rdisk12s1 (NO WRITE) +/dev/rdisk12s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12s1: fsck_hfs completed at Fri May 9 18:31:09 2025 + + +/dev/rdisk12: fsck_hfs started at Sat May 10 15:53:56 2025 +/dev/rdisk12: Can't open /dev/rdisk12: Permission denied +/dev/rdisk12: /dev/rdisk12: ** /dev/rdisk12 (NO WRITE) +/dev/rdisk12: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12: fsck_hfs completed at Sat May 10 15:53:56 2025 + + +/dev/rdisk12: fsck_hfs started at Sat May 10 15:53:57 2025 +/dev/rdisk12: Can't open /dev/rdisk12: Permission denied +/dev/rdisk12: /dev/rdisk12: ** /dev/rdisk12 (NO WRITE) +/dev/rdisk12: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk12: fsck_hfs completed at Sat May 10 15:53:57 2025 + + +/dev/rdisk13s1: fsck_hfs started at Sat May 10 18:31:39 2025 +/dev/rdisk13s1: Can't open /dev/rdisk13s1: Permission denied +/dev/rdisk13s1: /dev/rdisk13s1: ** /dev/rdisk13s1 (NO WRITE) +/dev/rdisk13s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk13s1: fsck_hfs completed at Sat May 10 18:31:39 2025 + + +/dev/rdisk13s1: fsck_hfs started at Sat May 10 18:31:39 2025 +/dev/rdisk13s1: Can't open /dev/rdisk13s1: Permission denied +/dev/rdisk13s1: /dev/rdisk13s1: ** /dev/rdisk13s1 (NO WRITE) +/dev/rdisk13s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk13s1: fsck_hfs completed at Sat May 10 18:31:39 2025 + + +/dev/rdisk13s1: fsck_hfs started at Sat May 10 18:31:39 2025 +/dev/rdisk13s1: Can't open /dev/rdisk13s1: Permission denied +/dev/rdisk13s1: /dev/rdisk13s1: ** /dev/rdisk13s1 (NO WRITE) +/dev/rdisk13s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk13s1: fsck_hfs completed at Sat May 10 18:31:39 2025 + + +/dev/rdisk13s1: fsck_hfs started at Sat May 10 18:31:39 2025 +/dev/rdisk13s1: Can't open /dev/rdisk13s1: Permission denied +/dev/rdisk13s1: /dev/rdisk13s1: ** /dev/rdisk13s1 (NO WRITE) +/dev/rdisk13s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk13s1: fsck_hfs completed at Sat May 10 18:31:39 2025 + + +/dev/rdisk13s1: fsck_hfs started at Mon May 12 23:13:24 2025 +/dev/rdisk13s1: Can't open /dev/rdisk13s1: Permission denied +/dev/rdisk13s1: /dev/rdisk13s1: ** /dev/rdisk13s1 (NO WRITE) +/dev/rdisk13s1: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk13s1: fsck_hfs completed at Mon May 12 23:13:24 2025 + + +/dev/rdisk14s2: fsck_hfs started at Wed May 14 12:00:15 2025 +/dev/rdisk14s2: Can't open /dev/rdisk14s2: Permission denied +/dev/rdisk14s2: /dev/rdisk14s2: ** /dev/rdisk14s2 (NO WRITE) +/dev/rdisk14s2: Executing fsck_hfs (version hfs-683.100.9). +QUICKCHECK ONLY; FILESYSTEM CLEAN +/dev/rdisk14s2: fsck_hfs completed at Wed May 14 12:00:15 2025 + + + + User filesystem repair log: + + Source: /Users/main/Library/logs/fsck_hfs.log + Size: 2 KB (1 649 bytes) + Last Modified: 10.05.2025, 15:53 + Recent Contents: +fsck_hfs started at Sat Apr 26 22:23:12 2025 +Can't open /dev/rdisk12s1: Permission denied +** /dev/rdisk12s1 (NO WRITE) + Executing fsck_hfs (version hfs-683.100.9). +** Checking non-journaled HFS Plus Volume. + The volume name is Yandex +** Checking extents overflow file. +** Checking catalog file. +** Checking multi-linked files. +** Checking catalog hierarchy. +** Checking extended attributes file. +** Checking volume bitmap. +** Checking volume information. +** The volume Yandex appears to be OK. +fsck_hfs completed at Sat Apr 26 22:23:12 2025 + + +fsck_hfs started at Fri May 9 18:31:07 2025 +Can't open /dev/rdisk12s1: Permission denied +** /dev/rdisk12s1 (NO WRITE) + Executing fsck_hfs (version hfs-683.100.9). +** Checking non-journaled HFS Plus Volume. + The volume name is Yandex +** Checking extents overflow file. +** Checking catalog file. +** Checking multi-linked files. +** Checking catalog hierarchy. +** Checking extended attributes file. +** Checking volume bitmap. +** Checking volume information. +** The volume Yandex appears to be OK. +fsck_hfs completed at Fri May 9 18:31:08 2025 + + +fsck_hfs started at Sat May 10 15:53:56 2025 +Can't open /dev/rdisk12: Permission denied +** /dev/rdisk12 (NO WRITE) + Executing fsck_hfs (version hfs-683.100.9). +** Checking Journaled HFS Plus volume. + The volume name is XPPenPenTablet +** Checking extents overflow file. +** Checking catalog file. +** Checking multi-linked files. +** Checking catalog hierarchy. +** Checking extended attributes file. +** Checking volume bitmap. +** Checking volume information. +** The volume XPPenPenTablet appears to be OK. +fsck_hfs completed at Sat May 10 15:53:56 2025 + + + + Kernel log: + + Source: /var/log/asl + Size: Zero KB + Recent Contents: + + Wi-Fi log: + + Source: /var/log/wifi.log + Size: 576 KB (576 321 bytes) + Last Modified: 15.05.2025, 12:38 + Recent Contents: ... +Thu May 15 12:34:27.682 [airport]/484 @[1700308.558241] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.558223], took 0.000014 +Thu May 15 12:34:27.682 [airport]/484 @[1700308.558334] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.558304], took 0.000024 +Thu May 15 12:34:27.682 [airport]/484 @[1700308.558400] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.558383], took 0.000012 +Thu May 15 12:34:27.682 [airport]/484 @[1700308.558838] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.558816], took 0.000017 +Thu May 15 12:34:27.683 [airport]/484 @[1700308.559080] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.559061], took 0.000014 +Thu May 15 12:34:27.683 [airport]/484 @[1700308.559567] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700308.559299], took 0.000263 +Thu May 15 12:34:27.774 [airport]/484 @[1700308.650212] (configdIODriverInterface.m:4687) caps = CPU Video Audio Net Disk , connection[0x5220800a0] token[0x00000000] capabilties[0x0000001f], description:'FullWake:cpu disk net aud vid ', lastSleepType[0x00000007]/'Deep Idle', hibernateStateFound[1] hibernateState[0x00000000/0] hibernateMode[0x00000003/3] +Thu May 15 12:34:27.819 [airport]/484 @[1700308.693986] (configdIODriverInterface.m:4914) Acknowledging sleep event, connection[0x5220800a0] token[0x00000000] +Thu May 15 12:34:27.863 Usb Host Notification Apple80211Set: seqNum 5463 Total 0 chg 0 en0 +Thu May 15 12:34:27.863 Usb Host Notification metrics: usbChange=0, count=0, noiseDelta=0 +Thu May 15 12:34:28.158 [airport]/484 @[1700309.034569] (configdIODriverInterface.m:1377) driver available (reason=0xe0821803, subreason=0x0, flags=0x0), node:isDriverAvailable=0 +Thu May 15 12:34:28.184 [airport]/484 @[1700309.060853] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700309.060816], took 0.000027 +Thu May 15 12:34:28.184 [airport]/484 @[1700309.060906] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.060893], took 0.000010 +Thu May 15 12:34:28.184 [airport]/484 @[1700309.060938] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.060926], took 0.000010 +Thu May 15 12:34:28.184 [airport]/484 @[1700309.060958] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.060948], took 0.000008 +Thu May 15 12:34:28.185 [airport]/484 @[1700309.060976] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.060968], took 0.000006 +Thu May 15 12:34:28.185 [airport]/484 @[1700309.060999] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700309.060986], took 0.000010 +Thu May 15 12:34:28.185 [airport]/484 @[1700309.061017] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.061008], took 0.000006 +Thu May 15 12:34:28.187 [airport]/484 @[1700309.063619] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.061026], took 0.000006 +Thu May 15 12:34:28.188 [airport]/484 @[1700309.064666] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.064643], took 0.000018 +Thu May 15 12:34:28.189 [airport]/484 @[1700309.064708] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.064688], took 0.000016 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068012] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.065183], took 0.002771 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068063] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068048], took 0.000012 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068085] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068075], took 0.000007 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068106] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068096], took 0.000007 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068126] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068116], took 0.000007 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068145] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068135], took 0.000007 +Thu May 15 12:34:28.192 [airport]/484 @[1700309.068167] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700309.068154], took 0.000009 +Thu May 15 12:34:28.195 Usb Host Notification Apple80211Set: seqNum 5464 Total 0 chg 0 en0 +Thu May 15 12:34:28.195 Usb Host Notification metrics: usbChange=0, count=0, noiseDelta=0 +Thu May 15 12:34:30.335 [airport]/484 @[1700311.211373] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700311.186442], took 0.024910 +Thu May 15 12:34:30.349 [airport]/484 @[1700311.225454] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700311.212590], took 0.012844 +Thu May 15 12:34:30.353 [airport]/484 @[1700311.229007] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700311.226194], took 0.002798 +Thu May 15 12:34:30.353 [airport]/484 @[1700311.229729] (airportProcessCommand.m:1715) Processed events, count[ 19], @[1700311.229173], took 0.000548 +Thu May 15 12:34:41.124 [airport]/484 @[1700322.000500] (airportdMain.m:1730) Health check alive, checkin@[1700322.000438], count[8623] +Thu May 15 12:34:42.838 [airport]/484 @[1700323.715100] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Service/3223C4FE-506F-43A9-BB67-4CA88E2F5137/IPv4' +Thu May 15 12:34:42.838 [airport]/484 @[1700323.715208] (airportProcessCommand.m:454) State:/Network/Service/3223C4FE-506F-43A9-BB67-4CA88E2F5137/IPv4 +Thu May 15 12:34:42.839 [airport]/484 @[1700323.715812] (airportProcessCommand.m:484) Not interface_ifname from SCDynamicStore: interface_dict:'{ +Thu May 15 12:34:42.839 SubType = "hossin.asaadi.V2Box"; +Thu May 15 12:34:42.839 Type = VPN; +Thu May 15 12:34:42.839 }' +Thu May 15 12:34:42.839 [airport]/484 @[1700323.715973] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Service/3223C4FE-506F-43A9-BB67-4CA88E2F5137/IPv6' +Thu May 15 12:34:42.839 [airport]/484 @[1700323.716025] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700323.715031], took 0.000977 +Thu May 15 12:34:42.849 [airport]/484 @[1700323.725558] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:34:42.849 [airport]/484 @[1700323.725648] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:34:42.849 [airport]/484 @[1700323.725715] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:34:42.849 [airport]/484 @[1700323.725756] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700323.725527], took 0.000216 +Thu May 15 12:34:43.261 [airport]/484 @[1700324.138027] (configdIODriverInterface.m:3495) utun6: KEV_DL_IF_DETACHED +Thu May 15 12:34:43.261 [airport]/484 @[1700324.138209] (configdIODriverInterface.m:3283) utun6 Removing, eventClass[0x00000002] eventType[0x0000000b] +Thu May 15 12:34:44.643 [airport]/484 @[1700325.520206] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4' +Thu May 15 12:34:44.644 [airport]/484 @[1700325.520362] (airportProcessCommand.m:454) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4 +Thu May 15 12:34:44.644 [airport]/484 @[1700325.520577] (airportProcessCommand.m:501) IPV4 State change for en0 +Thu May 15 12:34:44.644 [airport]/484 @[1700325.521193] (airportProcessCommand.m:513) IP Address: 172.16.247.37 +Thu May 15 12:34:44.645 [airport]/484 @[1700325.521267] (airportProcessCommand.m:535) IP subnet mask: 255.255.248.0 +Thu May 15 12:34:44.645 [airport]/484 @[1700325.521326] (airportProcessCommand.m:544) Router IP Address: 172.16.240.1 +Thu May 15 12:34:44.645 [airport]/484 @[1700325.521383] (airportProcessCommand.m:553) Default Gateway IP Address: 172.16.240.1 +Thu May 15 12:34:44.645 [airport]/484 @[1700325.521440] (airportProcessCommand.m:562) Router MAC Address: c0:8c:60:ea:cc:c1 +Thu May 15 12:34:44.650 [airport]/484 @[1700325.526964] (airportProcessCommand.m:596) ARP offload settings ({ +Thu May 15 12:34:44.650 "ADDR_LIST" = ( +Thu May 15 12:34:44.650 {length = 4, bytes = 0xac10f725} +Thu May 15 12:34:44.650 ); +Thu May 15 12:34:44.650 "ROUTER_IP_ADDR" = {length = 4, bytes = 0xac10f001}; +Thu May 15 12:34:44.650 "ROUTER_MAC_ADDR" = {length = 6, bytes = 0xc08c60eaccc1}; +Thu May 15 12:34:44.650 }) +Thu May 15 12:34:44.650 [airport]/484 @[1700325.527226] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Thu May 15 12:34:44.651 [airport]/484 @[1700325.527272] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Thu May 15 12:34:44.651 [airport]/484 @[1700325.527912] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Thu May 15 12:34:44.653 [airport]/484 @[1700325.529658] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700325.520155], took 0.009479 +Thu May 15 12:34:44.775 [airport]/484 @[1700325.651782] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:34:44.775 [airport]/484 @[1700325.651896] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:34:44.775 [airport]/484 @[1700325.651967] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:34:44.775 [airport]/484 @[1700325.652002] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700325.651734], took 0.000259 +Thu May 15 12:34:51.652 [airport]/484 @[1700332.528694] (CWXPCSubsystem.m:10260) WoW ENABLED (assert=yes, pref=no activity=no, ps=battery (87), icloud=yes, tcpka=enabled, pno=enabled, lpas=no) +Thu May 15 12:34:52.826 [airport]/484 @[1700333.703366] (CWXPCSubsystem.m:10260) WoW DISABLED (assert=no, pref=no activity=no, ps=battery (87), icloud=yes, tcpka=enabled, pno=enabled, lpas=yes) +Thu May 15 12:34:54.013 [airport]/484 @[1700334.889630] (CWXPCSubsystem.m:10330) AutoJoin DISABLED (assert=no, activity=no, join=yes, until=(null), prev=ENABLED) +Thu May 15 12:34:54.493 [airport]/484 @[1700335.369988] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700335.365363], took 0.004263 +Thu May 15 12:34:54.714 [airport]/484 @[1700335.591223] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4' +Thu May 15 12:34:54.717 [airport]/484 @[1700335.593674] (airportProcessCommand.m:454) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4 +Thu May 15 12:34:54.718 [airport]/484 @[1700335.594596] (airportProcessCommand.m:501) IPV4 State change for en0 +Thu May 15 12:34:54.718 [airport]/484 @[1700335.595114] (airportProcessCommand.m:505) Invalid IPv4 state dictionary for 'en0' +Thu May 15 12:34:54.720 [airport]/484 @[1700335.596567] (airportProcessCommand.m:596) ARP offload settings ({ +Thu May 15 12:34:54.720 "ADDR_LIST" = ( +Thu May 15 12:34:54.720 {length = 4, bytes = 0x00000000} +Thu May 15 12:34:54.720 ); +Thu May 15 12:34:54.720 "ROUTER_IP_ADDR" = {length = 4, bytes = 0x00000000}; +Thu May 15 12:34:54.752 "ROUTER_MAC_ADDR" = {length = 6, bytes = 0x000000000000}; +Thu May 15 12:34:54.752 }) +Thu May 15 12:34:54.752 [airport]/484 @[1700335.629222] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Thu May 15 12:34:54.752 [airport]/484 @[1700335.629259] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Thu May 15 12:34:54.756 [airport]/484 @[1700335.633388] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Thu May 15 12:34:54.758 [airport]/484 @[1700335.634885] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:34:54.758 [airport]/484 @[1700335.634999] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:34:54.758 [airport]/484 @[1700335.635189] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:34:54.758 [airport]/484 @[1700335.635276] (airportProcessCommand.m:1715) Processed events, count[ 23], @[1700335.589859], took 0.045380 +Thu May 15 12:34:55.162 [airport]/484 @[1700336.039063] (CWXPCSubsystem.m:10330) AutoJoin ENABLED (assert=no, activity=no, join=no, until=(null), prev=DISABLED) +Thu May 15 12:34:56.376 [airport]/484 @[1700337.253300] (CWXPCSubsystem.m:10260) WoW ENABLED (assert=yes, pref=no activity=no, ps=battery (87), icloud=yes, tcpka=enabled, pno=enabled, lpas=no) +Thu May 15 12:34:59.014 [airport]/484 @[1700339.891305] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700335.880290], took 4.010971 +Thu May 15 12:34:59.937 [airport]/484 @[1700340.813793] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700339.894419], took 0.919361 +Thu May 15 12:34:59.948 [airport]/484 @[1700340.825216] (airportdPreferences.m:1155) SCDynamicStore save, @[1700340.822348] took 0.002765, aquired took 0.000000, unlock took 0.000184, SC commit/apply 0.000000 +Thu May 15 12:35:00.077 [airport]/484 @[1700340.954269] (airportProcessCommand.m:1702) airportdProcessSystemConfigurationEvent - Autojoining on interface: en0 +Thu May 15 12:35:00.078 [airport]/484 @[1700340.954724] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700340.819314], took 0.135069 +Thu May 15 12:35:00.085 [airport]/484 @[1700340.962011] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4' +Thu May 15 12:35:00.085 [airport]/484 @[1700340.962150] (airportProcessCommand.m:454) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4 +Thu May 15 12:35:00.086 [airport]/484 @[1700340.962668] (airportProcessCommand.m:501) IPV4 State change for en0 +Thu May 15 12:35:00.087 [airport]/484 @[1700340.964043] (airportProcessCommand.m:513) IP Address: 172.20.10.12 +Thu May 15 12:35:00.087 [airport]/484 @[1700340.964136] (airportProcessCommand.m:535) IP subnet mask: 255.255.255.240 +Thu May 15 12:35:00.087 [airport]/484 @[1700340.964186] (airportProcessCommand.m:544) Router IP Address: 172.20.10.1 +Thu May 15 12:35:00.087 [airport]/484 @[1700340.964230] (airportProcessCommand.m:553) Default Gateway IP Address: 172.20.10.1 +Thu May 15 12:35:00.087 [airport]/484 @[1700340.964277] (airportProcessCommand.m:562) Router MAC Address: 26:b3:39:9c:96:64 +Thu May 15 12:35:00.126 [airport]/484 @[1700341.003133] (airportProcessCommand.m:596) ARP offload settings ({ +Thu May 15 12:35:00.126 "ADDR_LIST" = ( +Thu May 15 12:35:00.130 {length = 4, bytes = 0xac140a0c} +Thu May 15 12:35:00.130 ); +Thu May 15 12:35:00.130 "ROUTER_IP_ADDR" = {length = 4, bytes = 0xac140a01}; +Thu May 15 12:35:00.130 "ROUTER_MAC_ADDR" = {length = 6, bytes = 0x26b3399c9664}; +Thu May 15 12:35:00.130 }) +Thu May 15 12:35:00.130 [airport]/484 @[1700341.007309] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Thu May 15 12:35:00.130 [airport]/484 @[1700341.007366] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Thu May 15 12:35:00.133 [airport]/484 @[1700341.010277] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Thu May 15 12:35:00.137 [airport]/484 @[1700341.013728] (airportProcessCommand.m:1715) Processed events, count[ 22], @[1700340.959486], took 0.054222 +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014063] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014106] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014177] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014211] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700341.013907], took 0.000296 +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014269] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv6' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014292] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700341.014245], took 0.000041 +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014331] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014351] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014390] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014415] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Global/IPv6' +Thu May 15 12:35:00.137 [airport]/484 @[1700341.014441] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700341.014313], took 0.000118 +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014667] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv6' +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014695] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700341.014492], took 0.000197 +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014732] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014753] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014793] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014845] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Global/IPv6' +Thu May 15 12:35:00.138 [airport]/484 @[1700341.014866] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700341.014715], took 0.000145 +Thu May 15 12:35:00.189 [airport]/484 @[1700341.065721] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.015519], took 0.050183 +Thu May 15 12:35:00.220 [airport]/484 @[1700341.096700] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.066206], took 0.030465 +Thu May 15 12:35:00.272 [airport]/484 @[1700341.149297] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.097175], took 0.052067 +Thu May 15 12:35:00.319 [airport]/484 @[1700341.196184] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.149813], took 0.046327 +Thu May 15 12:35:00.366 [airport]/484 @[1700341.242616] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.196850], took 0.045734 +Thu May 15 12:35:00.418 [airport]/484 @[1700341.295455] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.243419], took 0.051997 +Thu May 15 12:35:00.475 [airport]/484 @[1700341.351511] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.296359], took 0.055136 +Thu May 15 12:35:00.648 [airport]/484 @[1700341.524796] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.351957], took 0.172698 +Thu May 15 12:35:00.732 [airport]/484 @[1700341.608874] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.525623], took 0.083226 +Thu May 15 12:35:00.797 [airport]/484 @[1700341.673901] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.610059], took 0.063815 +Thu May 15 12:35:00.869 [airport]/484 @[1700341.745725] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.674645], took 0.071062 +Thu May 15 12:35:00.934 [airport]/484 @[1700341.811487] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.748340], took 0.063129 +Thu May 15 12:35:00.985 [airport]/484 @[1700341.862464] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.812442], took 0.050004 +Thu May 15 12:35:01.023 [airport]/484 @[1700341.900016] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.864449], took 0.035552 +Thu May 15 12:35:01.099 [airport]/484 @[1700341.976038] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.900444], took 0.075574 +Thu May 15 12:35:01.133 [airport]/484 @[1700342.010129] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700341.977337], took 0.032776 +Thu May 15 12:35:01.136 [airport]/484 @[1700342.013279] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.010647], took 0.002614 +Thu May 15 12:35:01.139 [airport]/484 @[1700342.016232] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.013810], took 0.002404 +Thu May 15 12:35:01.142 [airport]/484 @[1700342.019140] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.016822], took 0.002298 +Thu May 15 12:35:01.146 [airport]/484 @[1700342.023296] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.020842], took 0.002437 +Thu May 15 12:35:01.150 [airport]/484 @[1700342.027314] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.024472], took 0.002825 +Thu May 15 12:35:01.153 [airport]/484 @[1700342.030265] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.027761], took 0.002484 +Thu May 15 12:35:01.156 [airport]/484 @[1700342.032962] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.030754], took 0.002192 +Thu May 15 12:35:01.160 [airport]/484 @[1700342.036635] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700342.033447], took 0.003168 +Thu May 15 12:35:11.128 [airport]/484 @[1700352.005146] (airportdMain.m:1730) Health check alive, checkin@[1700352.005103], count[8624] +Thu May 15 12:35:19.794 [airport]/484 @[1700360.671594] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700360.671490], took 0.000089 +Thu May 15 12:35:19.795 [airport]/484 @[1700360.672097] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.672029], took 0.000055 +Thu May 15 12:35:19.796 [airport]/484 @[1700360.672705] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.672650], took 0.000043 +Thu May 15 12:35:19.796 [airport]/484 @[1700360.673173] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.673118], took 0.000042 +Thu May 15 12:35:19.800 [airport]/484 @[1700360.677037] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.676966], took 0.000053 +Thu May 15 12:35:19.801 [airport]/484 @[1700360.677933] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.677456], took 0.000446 +Thu May 15 12:35:19.803 [airport]/484 @[1700360.680431] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.680360], took 0.000057 +Thu May 15 12:35:19.804 [airport]/484 @[1700360.680780] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.680714], took 0.000052 +Thu May 15 12:35:19.807 [airport]/484 @[1700360.683984] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700360.683841], took 0.000124 +Thu May 15 12:35:19.808 [airport]/484 @[1700360.685552] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.685157], took 0.000363 +Thu May 15 12:35:19.809 [airport]/484 @[1700360.686551] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.686099], took 0.000020 +Thu May 15 12:35:19.811 [airport]/484 @[1700360.688305] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.688251], took 0.000038 +Thu May 15 12:35:19.811 [airport]/484 @[1700360.688561] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.688512], took 0.000041 +Thu May 15 12:35:19.812 [airport]/484 @[1700360.689028] (airportProcessCommand.m:1715) Processed events, count[ 3], @[1700360.688967], took 0.000045 +Thu May 15 12:35:19.812 [airport]/484 @[1700360.689395] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.689367], took 0.000021 +Thu May 15 12:35:19.814 [airport]/484 @[1700360.691277] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.691204], took 0.000062 +Thu May 15 12:35:19.815 [airport]/484 @[1700360.691768] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700360.691724], took 0.000037 +Thu May 15 12:35:19.815 [airport]/484 @[1700360.692624] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700360.691941], took 0.000673 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.692721] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.692693], took 0.000021 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.692786] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.692762], took 0.000017 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.692853] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.692825], took 0.000022 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.693035] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.692999], took 0.000017 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.693214] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.693188], took 0.000019 +Thu May 15 12:35:19.816 [airport]/484 @[1700360.693522] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.693494], took 0.000021 +Thu May 15 12:35:19.817 [airport]/484 @[1700360.693798] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.693729], took 0.000018 +Thu May 15 12:35:19.817 [airport]/484 @[1700360.694011] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.693984], took 0.000021 +Thu May 15 12:35:19.817 [airport]/484 @[1700360.694253] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.694231], took 0.000016 +Thu May 15 12:35:19.817 [airport]/484 @[1700360.694537] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.694514], took 0.000017 +Thu May 15 12:35:19.818 [airport]/484 @[1700360.694869] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.694828], took 0.000035 +Thu May 15 12:35:19.818 [airport]/484 @[1700360.695098] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.695075], took 0.000017 +Thu May 15 12:35:19.819 [airport]/484 @[1700360.695974] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.695950], took 0.000018 +Thu May 15 12:35:19.820 [airport]/484 @[1700360.696662] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.696641], took 0.000016 +Thu May 15 12:35:19.821 [airport]/484 @[1700360.698134] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.697976], took 0.000153 +Thu May 15 12:35:19.823 [airport]/484 @[1700360.700258] (airportProcessCommand.m:1715) Processed events, count[ 1], @[1700360.699362], took 0.000884 +Thu May 15 12:35:41.129 [airport]/484 @[1700382.006803] (airportdMain.m:1730) Health check alive, checkin@[1700382.006766], count[8625] +Thu May 15 12:35:44.253 [airport]/484 @[1700385.130446] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700385.126012], took 0.004417 +Thu May 15 12:36:11.228 [airport]/484 @[1700412.106032] (airportdMain.m:1730) Health check alive, checkin@[1700412.105982], count[8626] +Thu May 15 12:36:20.693 [airport]/484 @[1700421.571187] (CWXPCSubsystem.m:5325) setWiFiPowerState: @[1700421.558430], state[0] +Thu May 15 12:36:20.696 [airport]/484 @[1700421.574369] (CWXPCSubsystem.m:5390) setWiFiPowerState: @[1700421.558430], state[0], issuing Apple80211SetPower +Thu May 15 12:36:20.699 [airport]/484 @[1700421.576765] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700421.573750], took 0.002998 +Thu May 15 12:36:20.875 [airport]/484 @[1700421.753056] (CWXPCSubsystem.m:5397) setWiFiPowerState: @[1700421.558430], state[0], issued Apple80211SetPower, tmpErr[0], request took 0.178501 +Thu May 15 12:36:20.888 [airport]/484 @[1700421.765747] (CWXPCSubsystem.m:5463) setWiFiPowerState: @[1700421.558430], state[0], took 0.207270, powerPrefTS[0.002131] resetChipTS[0.000000] usageMonitorTS[0.178903] updatePowerOffTS[0.003828] powerReqTS[0.178501] +Thu May 15 12:36:20.891 Usb Host Notification Error Apple80211Set: Device power is off seqNum 5465 Total 0 chg 0 en0 +Thu May 15 12:36:20.980 [airport]/484 @[1700421.858587] (airportProcessCommand.m:1715) Processed events, count[ 0], @[1700421.854397], took 0.004166 +Thu May 15 12:36:21.009 [airport]/484 @[1700421.887248] (configdIODriverInterface.m:1377) driver unavailable (reason=0xe0821804, subreason=0x0, flags=0x0), node:isDriverAvailable=1 +Thu May 15 12:36:21.013 Usb Host Notification Error Apple80211Set: Device power is off seqNum 5466 Total 0 chg 0 en0 +Thu May 15 12:36:21.029 [airport]/484 @[1700421.906733] (airportProcessCommand.m:1715) Processed events, count[ 17], @[1700421.903566], took 0.003149 +Thu May 15 12:36:21.071 [airport]/484 @[1700421.949004] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4' +Thu May 15 12:36:21.071 [airport]/484 @[1700421.949319] (airportProcessCommand.m:454) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv4 +Thu May 15 12:36:21.072 [airport]/484 @[1700421.950261] (airportProcessCommand.m:501) IPV4 State change for en0 +Thu May 15 12:36:21.081 [airport]/484 @[1700421.958879] (airportProcessCommand.m:505) Invalid IPv4 state dictionary for 'en0' +Thu May 15 12:36:21.082 [airport]/484 @[1700421.960272] (airportProcessCommand.m:596) ARP offload settings ({ +Thu May 15 12:36:21.082 "ADDR_LIST" = ( +Thu May 15 12:36:21.082 {length = 4, bytes = 0x00000000} +Thu May 15 12:36:21.082 ); +Thu May 15 12:36:21.082 "ROUTER_IP_ADDR" = {length = 4, bytes = 0x00000000}; +Thu May 15 12:36:21.082 "ROUTER_MAC_ADDR" = {length = 6, bytes = 0x000000000000}; +Thu May 15 12:36:21.082 }) +Thu May 15 12:36:21.082 [airport]/484 @[1700421.960503] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/IPv6' +Thu May 15 12:36:21.082 [airport]/484 @[1700421.960535] (airportProcessCommand.m:1627) Processing DHCP: 'State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP' +Thu May 15 12:36:21.082 [airport]/484 @[1700421.960558] (airportProcessCommand.m:187) State:/Network/Service/1B1A944E-8FEE-4455-95CC-65876ABBC1AE/DHCP +Thu May 15 12:36:21.083 [airport]/484 @[1700421.960902] (airportProcessCommand.m:216) DHCP airport_changed = 1, service:1B1A944E-8FEE-4455-95CC-65876ABBC1AE +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961425] (airportProcessCommand.m:1715) Processed events, count[ 3], @[1700421.948968], took 0.012445 +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961524] (airportProcessCommand.m:1633) Processing IPv4: 'State:/Network/Global/IPv4' +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961552] (airportProcessCommand.m:454) State:/Network/Global/IPv4 +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961619] (airportProcessCommand.m:462) No valid components format from SCDynamicStore: serviceKey:'State:/Network/Global/IPv4' +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961652] (airportProcessCommand.m:1640) Processing IPv6 (not supported): 'State:/Network/Global/IPv6' +Thu May 15 12:36:21.083 [airport]/484 @[1700421.961677] (airportProcessCommand.m:1715) Processed events, count[ 2], @[1700421.961494], took 0.000175 +Thu May 15 12:36:21.340 [airport]/484 @[1700422.218447] (CWXPCSubsystem.m:10260) WoW DISABLED (assert=no, pref=no activity=no, ps=battery (87), icloud=yes, tcpka=enabled, pno=enabled, lpas=yes) +Thu May 15 12:36:41.229 [airport]/484 @[1700442.107230] (airportdMain.m:1730) Health check alive, checkin@[1700442.107195], count[8627] +Thu May 15 12:37:11.233 [airport]/484 @[1700472.112110] (airportdMain.m:1730) Health check alive, checkin@[1700472.112057], count[8628] +Thu May 15 12:37:41.234 [airport]/484 @[1700502.114060] (airportdMain.m:1730) Health check alive, checkin@[1700502.114014], count[8629] +Thu May 15 12:38:11.239 [airport]/484 @[1700532.119466] (airportdMain.m:1730) Health check alive, checkin@[1700532.119414], count[8630] +Thu May 15 12:38:41.241 [airport]/484 @[1700562.121909] (airportdMain.m:1730) Health check alive, checkin@[1700562.121875], count[8631] + + + NVRAM contents: + + Source: /usr/sbin/nvram -xp + Size: 4 KB (3 932 bytes) + Last Modified: 15.05.2025, 12:38 + Recent Contents: + + + + BluetoothInfo + + DwA= + + BluetoothUHEDevices + + xIT8CzypAAQ= + + IDInstallerDataV2 + + 4AticGxpc3QwMKEB1QIDBAUGBwIICQpRMVMxMDMABOAVMFE2UTBWMjRDMTAxVnBhc3Nl + ZF8QD3NvZnR3YXJlIHVwZGF0ZQAg4ABFMjYzCAoVFxsfISMqMUMAEAHOAQEA8p4LAPbj + AABKBgAAAAAAAAA= + + LocationServicesEnabled + + AQ== + + SystemAudioVolume + + gA== + + SystemAudioVolumeExtension + + FoA= + + auto-boot + + dHJ1ZQ== + + bluetoothExternalDongleFailed + + AA== + + bluetoothInternalControllerInfo + + AAAAAAAAAADEhPwLPKk= + + boot-volume + + RUY1NzM0N0MtMDAwMC1BQTExLUFBMTEtMDAzMDY1NDNFQ0FDOjU1RTAyQzBELTU1OTEt + NUY0Ri1CREY0LUMzQTQyNTE5MEZGRTpDNkFEQjg0MS0yOTA3LTQyMUYtQjMzRS1GNzYz + M0MwNjQyOEQ= + + bootdelay + + MA== + + display-crossbar0 + + AAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + fmm-computer-name + + TWFjQm9vayBBaXLCoOKAlCBNYWlu + + fmm-mobileme-token-FMM + + YnBsaXN0MDDeAQIDBAUGBwgJCgsMDQ4PEBcYDxkaDxscHR4fIV8QD3VucmVnaXN0ZXJT + dGF0ZVh1c2VySW5mb1lhdXRoVG9rZW5ecm9vdFZvbHVtZVVVSUReZGlzYWJsZUNvbnRl + eHRWdXNlcmlkXxAQbGFzdElkZW50aXR5VGltZV1lbmFibGVDb250ZXh0WHVzZXJuYW1l + WHBlcnNvbklEV2FkZFRpbWVUZ3VpZF8QEmVuYWJsZWREYXRhY2xhc3Nlc18QE2RhdGFj + bGFzc1Byb3BlcnRpZXMQANMREhMUFRZfEBVJblVzZU93bmVyRGlzcGxheU5hbWVfEBNJ + blVzZU93bmVyRmlyc3ROYW1lXxASSW5Vc2VPd25lckxhc3ROYW1lbAQUBDAEPQQ4BDsA + IAQaBDAEPwQ9BDgEOmUEFAQwBD0EOAQ7ZgQaBDAEPwQ9BDgEOl8QzEVBQUdBQUFBQkx3 + SUFBQUFBR2YxbldjUkRtZHpMbWxqYkc5MVpDNWhkWFJvdlFEWS1va29UTE9fMk4xSExS + NlFEMW43ZFltbm9uZUc5V2ZaWDdWNTRVY2RCY29oRk9sanZheXJPU0VDbTR0bWVVM1ln + TDk1VG5zeEkxYmtLTkhjcU1VNlZMWnE0MWQ5SGVRMEVEN1BlMFhqLS1FWjVkWEFtSi0w + Q0VfVmp2NHVJUmZMZFRMZ1FqSDFPWURoRGhmUnhJQTZwQWp2ZWd+fl8QJEQ5NDJBNjc3 + LUREMTYtNDNDNC04MjNCLUU5OTVFNDRDRDZBRBEB9SNB2f8EjASq+F8QFGthcG5pay5k + YW5AZ21haWwuY29tWzIxODQ2NTk2NjUwI0HZ/Wdh8OQ2XxAkOUE5MzNDN0EtODdBNC00 + RkY0LThBQjctNjg5NkUyMEU5RjA0oSBfECFjb20uYXBwbGUuRGF0YWNsYXNzLkRldmlj + ZUxvY2F0b3LRICLVIyQlJicoKSorLFZhcHNFbnZYaG9zdG5hbWVdaWRzSWRlbnRpZmll + clZzY2hlbWVdYXV0aE1lY2hhbmlzbVpwcm9kdWN0aW9uXxAUcDEwMS1mbWlwLmljbG91 + ZC5jb21fECREMDU4NzAxQy1GMEY2LTQzNjItQTVCRS00MDcyQzQ4OUMzQThVaHR0cHNV + dG9rZW4ACAAlADcAQABKAFkAaABvAIIAkACZAKIAqgCvAMQA2gDcAOMA+wERASYBPwFK + AVcCJgJNAlACWQJwAnwChQKsAq4C0gLVAuAC5wLwAv4DBQMTAx4DNQNcA2IAAAAAAAAC + AQAAAAAAAAAtAAAAAAAAAAAAAAAAAAADaA== + + fmm-mobileme-token-FMM-BridgeHasAccount + + QnJpZGdlSGFzQWNjb3VudFZhbHVl + + lts-persistance + + AwAAAKMGAAABAAAAAwAAAB5ieoqLLk9BwSTKNo9XT0FD4EiJA0JHQQAAAAAAAAAAAAAA + AA== + + ota-updateType + + aW5jcmVtZW50YWw= + + prev-lang:kbd + + cnU6MjUy + + upgrade-boot-volume + + RUY1NzM0N0MtMDAwMC1BQTExLUFBMTEtMDAzMDY1NDNFQ0FDOjU1RTAyQzBELTU1OTEt + NUY0Ri1CREY0LUMzQTQyNTE5MEZGRTo1RjkyMzRDRi1DN0Y0LTQ5NkYtQjVGNC02NDZD + QTI1MzcxNTc= + + usbc,version,rid0 + + AGMwAAoA + + usbc,version,rid5 + + AGMwAAgA + + wlancprops + + AQF1BFdMTVQIJBEAAAAAAAACQzAHZG5pZXBlcgM0LjcGUUVmAAHo + + + + + + IORegistry contents: + + Source: /usr/sbin/ioreg -lxw550 + Size: 2,4 MB (2 363 764 bytes) + Last Modified: 15.05.2025, 12:38 + Recent Contents: +-o Root + | { + | "IOKitBuildVersion" = "Darwin Kernel Version 24.4.0: Fri Apr 11 18:34:14 PDT 2025; root:xnu-11417.101.15~117/RELEASE_ARM64_T8122" + | "OS Build Version" = "24E263" + | "OSKernelCPUSubtype" = 0xffffffffc0000002 + | "OSKernelCPUType" = 0x100000c + | "OSPrelinkKextCount" = 0x5 + | "IORegistryPlanes" = {"IOPort"="IOPort","IOPower"="IOPower","IOService"="IOService","IOAccessory"="IOAccessory","IOUSB"="IOUSB","CoreCapture"="CoreCapture","WiFiDKCoreCapture"="WiFiDKCoreCapture","IODeviceTree"="IODeviceTree"} + | "IOConsoleLocked" = No + | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kSCSecuritySessionID"=0x186ab,"kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionIDKey"=0x101,"kCGSSessionUserNameKey"="test","kCGSSessionGroupIDKey"=0x14,"CGSSessionUniqueSessionUUID"="2378D763-CF6F-469B-90F8-CABA378BE3A9","kCGSessionLongUserNameKey"="main","kCGSSessionAuditIDKey"=0x186ab,"kCGSSessionLoginwindowSafeLogin"=No,"kCGSSessionUserIDKey"=0x1f5}) + | "IOKitDiagnostics" = {"Instance allocation"=0x1350a30,"Container allocation"=0x1275951,"Pageable allocation"=0x2433e0000,"Classes"={"AppleJPEGWrapperControlV8"=0x2,"KDISecondaryEncoding"=0x0,"RTBuddyFirmwareBundle"=0x0,"ApplePMPThermal"=0x0,"IOSkywalkPacketPoller"=0x0,"IOGPUKernelMappedMemory"=0x1,"IOPMPowerStateQueue"=0x1,"IOAVBStreamCaptureUserClient"=0x0,"AppleSPUVD6287"=0x0,"IOPMServiceInterestNotifier"=0xa8,"IosaEnhancementPipeUnitMSR9"=0x0,"AppleConvergedIPCDevice"=0x1,"IOPerfControlWorkContext"=0x99,"IOAVService"=0x0,"IOBlockStora$ + | } + | + +-o J613AP + | { + | "IOPolledInterface" = "AppleARMWatchdogTimerHibernateHandler is not serializable" + | "#address-cells" = <02000000> + | "AAPL,phandle" = <01000000> + | "serial-number" = <4639393258303057524a00000000000000000000000000000000000000000000> + | "IOBusyInterest" = "IOCommand is not serializable" + | "target-type" = <4a36313300> + | "country-of-origin" = <43484e> + | "platform-name" = <7438313232000000000000000000000000000000000000000000000000000000> + | "name" = <6465766963652d7472656500> + | "secure-root-prefix" = <6d6400> + | "manufacturer" = <4170706c6520496e632e00> + | "region-info" = <4c4c2f4100000000000000000000000000000000000000000000000000000000> + | "target-sub-type" = <4a363133415000> + | "compatible" = <4a3631334150004d616331352c3132004170706c6541524d00> + | "config-number" = <00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | "IOPlatformSerialNumber" = "F992X00WRJ" + | "regulatory-model-number" = <4133313133000000000000000000000000000000000000000000000000000000> + | "time-stamp" = <467269204170722031312031383a32343a313920504454203230323500> + | "clock-frequency" = <00366e01> + | "model" = <4d616331352c313200> + | "mlb-serial-number" = <4330324844563030315133303030304641510000000000000000000000000000> + | "model-number" = <4d43384a34000000000000000000000000000000000000000000000000000000> + | "device-tree-tag" = <456d62656464656444657669636554726565732d393734372e3130312e3200> + | "IOConsoleSecurityInterest" = "IOCommand is not serializable" + | "IONWInterrupts" = "IONWInterrupts" + | "model-config" = <4943543b4d6f5045443d307838463234424439364132343830363645364438434332394434414539344543333243384544413737> + | "device_type" = <626f6f74726f6d00> + | "#size-cells" = <02000000> + | "IOPlatformUUID" = "EBBBA7A3-C701-55D7-9490-A651759B5894" + | } + | + +-o options + | | { + | | "BluetoothInfo" = <0f00> + | | "fmm-mobileme-token-FMM" = <62706c6973743030de0102030405060708090a0b0c0d0e0f1017180f191a0f1b1c1d1e1f215f100f756e726567697374657253746174655875736572496e666f5961757468546f6b656e5e726f6f74566f6c756d65555549445e64697361626c65436f6e74657874567573657269645f10106c6173744964656e7469747954696d655d656e61626c65436f6e7465787458757365726e616d6558706572736f6e49445761646454696d6554677569645f1012656e61626c656444617461636c61737365735f101364617461636c61737350726f706572746965731000d31112131415165f1015496e5573654f776e6572446973706c61794e616d655f1013496$ + | | "IDInstallerDataV2" = + | | "prev-lang:kbd" = <72753a323532> + | | "LocationServicesEnabled" = <01> + | | "fmm-mobileme-token-FMM-BridgeHasAccount" = <4272696467654861734163636f756e7456616c7565> + | | "boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a43364144423834312d323930372d343231462d423333452d463736333343303634323844> + | | "lts-persistance" = <03000000a306000001000000030000001e627a8a8b2e4f41c124ca368f574f4143e0488903424741000000000000000000000000> + | | "usbc,version,rid5" = <006330000800> + | | "upgrade-boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a35463932333443462d433746342d343936462d423546342d363436434132353337313537> + | | "fmm-computer-name" = <4d6163426f6f6b20416972c2a0e28094204d61696e> + | | "SystemAudioVolumeExtension" = <1680> + | | "bluetoothExternalDongleFailed" = <00> + | | "wlancprops" = <01017504574c4d5408241100000000000002433007646e696570657203342e37065145660001e8> + | | "auto-boot" = <74727565> + | | "BluetoothUHEDevices" = + | | "ota-updateType" = <696e6372656d656e74616c> + | | "display-crossbar0" = <0000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | "bootdelay" = <30> + | | "SystemAudioVolume" = <80> + | | "usbc,version,rid0" = <006330000a00> + | | "bluetoothInternalControllerInfo" = <0000000000000000c484fc0b3ca9> + | | } + | | + | +-o IODTNVRAMDiags + | | { + | | "SystemUsed" = 0x1268 + | | "Version" = 0x3 + | | "Generation" = 0x335 + | | "Stats" = {"02:LocationServicesEnabled"={"Read"=0x3,"Init"=0xfffffe7b063e030f,"Size"=0xfffffe7b063e030f,"Present"=Yes},"02:IOPlatformSleepAction"={"Present"=No,"Read"=0x2},"02:BaseSystemAccessibilityFeatures"={"Present"=No,"Read"=0x1},"02:ota-retry-uptime"={"Present"=No,"Read"=0xc},"02:restore-retry-warnings"={"Present"=No,"Read"=0xc},"02:usbc,version,rid5"={"Init"=0xfffffe7b063e0eac,"Present"=Yes,"Size"=0xfffffe7b063e0eac},"02:preferred-count"={"Present"=No,"Read"=0x2},"02:usbc,version,rid0"={"Init"=0xfffffe7b063e0e70,"Present"=Ye$ + | | "CommonUsed" = 0x40d + | | } + | | + | +-o IODTNVRAMPlatformNotifier + | | { + | | "IOPlatformWakeAction" = 0x3e8 + | | } + | | + | +-o options-system + | | { + | | "ota-updateType" = <696e6372656d656e74616c> + | | "auto-boot" = <74727565> + | | "lts-persistance" = <03000000a306000001000000030000001e627a8a8b2e4f41c124ca368f574f4143e0488903424741000000000000000000000000> + | | "boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a43364144423834312d323930372d343231462d423333452d463736333343303634323844> + | | "wlancprops" = <01017504574c4d5408241100000000000002433007646e696570657203342e37065145660001e8> + | | "fmm-mobileme-token-FMM" = <62706c6973743030de0102030405060708090a0b0c0d0e0f1017180f191a0f1b1c1d1e1f215f100f756e726567697374657253746174655875736572496e666f5961757468546f6b656e5e726f6f74566f6c756d65555549445e64697361626c65436f6e74657874567573657269645f10106c6173744964656e7469747954696d655d656e61626c65436f6e7465787458757365726e616d6558706572736f6e49445761646454696d6554677569645f1012656e61626c656444617461636c61737365735f101364617461636c61737350726f706572746965731000d31112131415165f1015496e5573654f776e6572446973706c61794e616d655f10134$ + | | "BluetoothInfo" = <0f00> + | | "fmm-mobileme-token-FMM-BridgeHasAccount" = <4272696467654861734163636f756e7456616c7565> + | | "bootdelay" = <30> + | | "prev-lang:kbd" = <72753a323532> + | | "SystemAudioVolumeExtension" = <1680> + | | "upgrade-boot-volume" = <45463537333437432d303030302d414131312d414131312d3030333036353433454341433a35354530324330442d353539312d354634462d424446342d4333413432353139304646453a35463932333443462d433746342d343936462d423546342d363436434132353337313537> + | | "BluetoothUHEDevices" = + | | "fmm-computer-name" = <4d6163426f6f6b20416972c2a0e28094204d61696e> + | | "SystemAudioVolume" = <80> + | | } + | | + | +-o options-common + | { + | "bluetoothInternalControllerInfo" = <0000000000000000c484fc0b3ca9> + | "IDInstallerDataV2" = + | "usbc,version,rid5" = <006330000800> + | "usbc,version,rid0" = <006330000a00> + | "LocationServicesEnabled" = <01> + | "display-crossbar0" = <0000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | "bluetoothExternalDongleFailed" = <00> + | } + | + +-o AppleARMPE + | | { + | | "IOClass" = "AppleARMPE" + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformExpertDevice" + | | "IOProbeScore" = 0x3e8 + | | "IONameMatch" = "AppleARM" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IOPlatformMaxBusDelay" = (0xffffffffffffffff,0x0) + | | "IONameMatched" = "AppleARM" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "Platform Memory Ranges" = (0x0,0xffffffff) + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOFunctionParent00000001" = <> + | | } + | | + | +-o IOSystemStateNotification + | | { + | | "com.apple.iokit.pm.sleepdescription" = {"com.apple.iokit.pm.sleepreason"="Maintenance Sleep","com.apple.iokit.pm.hibernatestate"=<00000000>} + | | "com.apple.iokit.pm.wakedescription" = {"com.apple.iokit.pm.wakereason"="smc.70070000 lid MTP.DOCK.CHANNELS.AP0.IRQ","com.apple.iokit.pm.wakedescription.continuous-time-offset"=0x0} + | | "com.apple.iokit.pm.powersourcedescription" = {"com.apple.iokit.pm.acattached"=No} + | | } + | | + | +-o IOPMrootDomain + | | | { + | | | "Last Sleep Options" = {"Sleep Reason"="Notification Wake Back to Sleep"} + | | | "Wake Type" = "UserActivity Assertion" + | | | "IOPMUserTriggeredFullWake" = Yes + | | | "Supported Features" = {"WakeByCalendarDate"=0x1f70007,"MaintenanceWakeCalendarDate"=0x1f80007,"SleepServiceWakeCalendarKey"=0x1f90007,"PowerByCalendarDate"=0x1fa0007,"PowerRelativeToShutdown"=0x1fc0007,"WakeOnMagicPacket"=0x1fe0007,"WakeRelativeToSleep"=0x1fb0007,"AdaptiveDimming"=0x1f60007,"Hibernation"=0x1f50007} + | | | "IOPreviewBuffer" = ({"address"=0xfffffe8090ce4000,"length"=0x1054000}) + | | | "DriverPMAssertionsDetailed" = ({"Assertions"=0x1,"ModifiedTime"=0x682567590006e5af,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f4},{"Assertions"=0x1,"ModifiedTime"=0x680bc35f00080d79,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f5},{"Assertions"=0x1,"ModifiedTime"=0x680bc35f0007da30,"Owner"="com.apple.pci.hostBridge.preventSleep","RegistryEntryID"=0x0,"CreatedTime"=0x0,"Level"=0x0,"ID"=0x1f6},{"Assertions"$ + | | | "IOHibernateState" = <00000000> + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x4,"CurrentPowerState"=0x4,"CapabilityFlags"=0x2,"MaxPowerState"=0x4} + | | | "Standby Enabled" = Yes + | | | "IOPMSystemSleepType" = 0x7 + | | | "IOAppPowerStateInterest" = "IOCommand is not serializable" + | | | "System Capabilities" = 0xf + | | | "BootSessionUUID" = "83423475-C544-4275-84DD-36AC84134231" + | | | "IOUserClientClass" = "RootDomainUserClient" + | | | "Hibernate Mode" = 0x3 + | | | "Hibernate File" = "/var/vm/sleepimage" + | | | "AppleClamshellCausesSleep" = No + | | | "AppleClamshellState" = No + | | | "SleepDisabled" = No + | | | "DestroyFVKeyOnStandby" = No + | | | "Last Sleep Reason" = "Maintenance Sleep" + | | | "SystemPowerProfileOverrideDict" = {} + | | | "DriverPMAssertions" = 0x0 + | | | "IOPMSystemSleepParameters" = <02000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | | "Hibernate File Min" = 0x40000000 + | | | "IOPMUserIsActive" = Yes + | | | "SleepRequestedByPID" = 0x184 + | | | "IOPriorityPowerStateInterest" = "IOCommand is not serializable" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Wake Reason" = "smc.70070000 lid MTP.DOCK.CHANNELS.AP0.IRQ" + | | | "SleepWakeUUID" = "367DC117-4D45-4341-B8F7-022F58C02564" + | | | "IOSleepSupported" = Yes + | | | } + | | | + | | +-o IORootParent + | | | { + | | | "IOPowerManagement" = {"WQ-CheckForWork"=0x287c51,"WQ-ScanEntries"=0x195292,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"WQ-QueueEmpty"=0x211,"DevicePowerState"=0x1,"WQ-NoWorkDone"=0x624,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x1} + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 375, logd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 399, watchdogd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 414, opendirectoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 420, securityd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 484, airportd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 506, symptomsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 440, corebrightnessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 413, thermalmonitord" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 416, apsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 590, systemstats" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 601, locationd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 416, apsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 540, UVCAssistant" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 818, usernoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 854, awdd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 817, rapportd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 861, usernotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 861, usernotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 823, corespeechd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 836, accountsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 818, usernoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 828, identityservices" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 964, imagent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 981, bluetoothuserd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1344, AirPlayUIAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1153, diagnostics_agen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1673, tipsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 866, familycircled" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 2339, IMAutomaticHisto" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 2659, usbmuxd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 380, mediaremoted" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 3187, wifivelocityd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 63770, com.apple.hiserv" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8198, amsaccountsd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 9957, assistantd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 10114, routined" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19077, CommCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19395, nfcd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19469, systemsoundserve" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19561, calaccessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19561, calaccessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19590, com.apple.hiserv" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 20434, donotdisturbd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 20436, findmylocateagen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 20438, searchpartyusera" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 23640, callservicesd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 23642, ScreenTimeAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 23946, UsageTrackingAge" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24066, appleaccountd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24128, heard" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24128, heard" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24265, replicatord" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24288, SiriSuggestionsB" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 24308, dataaccessd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 23779, SoftwareUpdateNo" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 25540, AMPLibraryAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 29112, gamed" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30513, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30514, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30514, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 39390, com.apple.hiserv" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 40582, Docker Desktop" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 42405, Electron" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 43744, Pages" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 46359, Ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o RootDomainUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 46404, cupsd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o cpu0@0 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<41000000>) + | | | "AAPL,phandle" = <18000000> + | | | "cpu-id" = <00000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724500000000> + | | | "cpu-uttdbg-reg" = <0000041002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753000> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <41000000> + | | | "reg-private" = <0000011002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4301000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00000510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000011002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x0 + | | | "reg" = <00000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu1@1 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<44000000>) + | | | "AAPL,phandle" = <19000000> + | | | "cpu-id" = <01000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724501000000> + | | | "cpu-uttdbg-reg" = <0000141002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753100> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <44000000> + | | | "reg-private" = <0000111002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4302000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00001510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000111002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x1 + | | | "reg" = <01000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu2@2 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<47000000>) + | | | "AAPL,phandle" = <1a000000> + | | | "cpu-id" = <02000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724502000000> + | | | "cpu-uttdbg-reg" = <0000241002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753200> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <47000000> + | | | "reg-private" = <0000211002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4304000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00002510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000211002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x2 + | | | "reg" = <02000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu3@3 + | | | { + | | | "cluster-type" = <4500> + | | | "IOInterruptSpecifiers" = (<4a000000>) + | | | "AAPL,phandle" = <1b000000> + | | | "cpu-id" = <03000000> + | | | "acc-impl-reg" = <0000f010020000008800040000000000> + | | | "logical-cluster-id" = 0x0 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00004000> + | | | "function-error_handler" = <270000004872724503000000> + | | | "cpu-uttdbg-reg" = <0000341002000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753300> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c736177746f6f74680041524d2c763800> + | | | "interrupts" = <4a000000> + | | | "reg-private" = <0000311002000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4308000000> + | | | "cluster-id" = <00000000> + | | | "cpu-impl-reg" = <00003510020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000311002000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x3 + | | | "reg" = <03000000> + | | | "cpm-impl-reg" = <0000e4100200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu4@100 + | | | { + | | | "fixed-frequency" = <00366e0100000000> + | | | "logical-cluster-id" = 0x1 + | | | "coresight-reg" = <0000011102000000c800030000000000> + | | | "clock-frequency" = <00366e0100000000> + | | | "state" = <72756e6e696e6700> + | | | "l2-cache-size" = <00000001> + | | | "interrupt-parent" = <69000000> + | | | "function-error_handler" = <270000004872724504000000> + | | | "interrupts" = <5c000000> + | | | "timebase-frequency" = <00366e0100000000> + | | | "logical-cpu-id" = 0x4 + | | | "cpu-impl-reg" = <00000511020000001090000000000000> + | | | "function-enable_core" = <8200000065726f4310000000> + | | | "cluster-id" = <01000000> + | | | "l2-cache-id" = <00000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "memory-frequency" = <00366e0100000000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | "cpu-uttdbg-reg" = <0000041102000000c800000000000000> + | | | "peripheral-frequency" = <00366e0100000000> + | | | "AAPL,phandle" = <1c000000> + | | | "cpu-id" = <04000000> + | | | "name" = <6370753400> + | | | "cluster-type" = <5000> + | | | "no-aic-ipi-required" = <> + | | | "device_type" = <63707500> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "reg-private" = <0000011102000000> + | | | "reg" = <00010000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "bus-frequency" = <00366e0100000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "IOInterruptSpecifiers" = (<5c000000>) + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu5@101 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<5f000000>) + | | | "AAPL,phandle" = <1d000000> + | | | "cpu-id" = <05000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724505000000> + | | | "cpu-uttdbg-reg" = <0000141102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753500> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <5f000000> + | | | "reg-private" = <0000111102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4320000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00001511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000111102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x5 + | | | "reg" = <01010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu6@102 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<62000000>) + | | | "AAPL,phandle" = <1e000000> + | | | "cpu-id" = <06000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724506000000> + | | | "cpu-uttdbg-reg" = <0000241102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753600> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <62000000> + | | | "reg-private" = <0000211102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4340000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00002511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000211102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x6 + | | | "reg" = <02010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpu7@103 + | | | { + | | | "cluster-type" = <5000> + | | | "IOInterruptSpecifiers" = (<65000000>) + | | | "AAPL,phandle" = <1f000000> + | | | "cpu-id" = <07000000> + | | | "acc-impl-reg" = <0000f011020000008800040000000000> + | | | "logical-cluster-id" = 0x1 + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "no-aic-ipi-required" = <> + | | | "l2-cache-size" = <00000001> + | | | "function-error_handler" = <270000004872724507000000> + | | | "cpu-uttdbg-reg" = <0000341102000000c800000000000000> + | | | "interrupt-parent" = <69000000> + | | | "name" = <6370753700> + | | | "l2-cache-id" = <00000000> + | | | "compatible" = <6170706c652c657665726573740041524d2c763800> + | | | "interrupts" = <65000000> + | | | "reg-private" = <0000311102000000> + | | | "state" = <77616974696e6700> + | | | "function-enable_core" = <8200000065726f4380000000> + | | | "cluster-id" = <01000000> + | | | "cpu-impl-reg" = <00003511020000001090000000000000> + | | | "function-cpu_idle" = <8200000049757063> + | | | "coresight-reg" = <0000311102000000c800030000000000> + | | | "device_type" = <63707500> + | | | "logical-cpu-id" = 0x7 + | | | "reg" = <03010000> + | | | "cpm-impl-reg" = <0000e4110200000028b0000000000000> + | | | } + | | | + | | +-o AppleARMCPU + | | { + | | "IOProbeScore" = 0x64 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMCPU" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "cpu" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "cpu" + | | } + | | + | +-o cpus + | | { + | | "max_cpus" = <08000000> + | | "cpu-cluster-count" = <02000000> + | | "p-core-count" = <04000000> + | | "e-core-count" = <04000000> + | | "#address-cells" = <01000000> + | | "#size-cells" = <00000000> + | | "name" = <6370757300> + | | "AAPL,phandle" = <17000000> + | | } + | | + | +-o pram@E6B98000 + | | { + | | "IODeviceMemory" = (({"address"=0x103e6b98000,"length"=0x188000})) + | | "reg" = <0080b9e6030100000080180000000000> + | | "name" = <7072616d00> + | | "AAPL,phandle" = <22000000> + | | "device_type" = <7072616d00> + | | } + | | + | +-o vram@E1B64000 + | | { + | | "IODeviceMemory" = (({"address"=0x103e1b64000,"length"=0x3f70000})) + | | "reg" = <0040b6e1030100000000f70300000000> + | | "name" = <7672616d00> + | | "AAPL,phandle" = <23000000> + | | "device_type" = <7672616d00> + | | } + | | + | +-o socd-trace-ram@EDE69014 + | | { + | | "IODeviceMemory" = (({"address"=0x2ede69014,"length"=0x39c})) + | | "reg" = <1490e6ed020000009c03000000000000> + | | "name" = <736f63642d74726163652d72616d00> + | | "AAPL,phandle" = <24000000> + | | "device_type" = <736f63642d74726163652d72616d00> + | | } + | | + | +-o hibernate@1 + | | { + | | "reg" = <010000000000000401000000000000001900000098050004cb01000000000000> + | | "hmac-reg-base" = <000005a102000000> + | | "IODeviceMemory" = () + | | "pmgr-aes-offset" = <9002000000000000> + | | "pmgr-reg-base" = <000070d002000000> + | | "device_type" = <68696265726e61746500> + | | "AAPL,phandle" = <25000000> + | | "name" = <68696265726e61746500> + | | } + | | + | +-o amfm + | | | { + | | | "default-options" = <04000000> + | | | "function-pcie_port_control" = <440000004374725045000000> + | | | "function-reg_on" = <9f00000034574b706430506700008000> + | | | "name" = <616d666d00> + | | | "AAPL,phandle" = <26000000> + | | | "device_type" = <616d666d00> + | | | } + | | | + | | +-o AppleMultiFunctionManager + | | { + | | "IOClass" = "AppleMultiFunctionManager" + | | "CFBundleIdentifier" = "com.apple.driver.AppleMultiFunctionManager" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | "forceProbeOnLinkdown" = No + | | "manual_s2r_port_ctrl" = Yes + | | "IONameMatch" = "amfm" + | | "valid_clients" = ("AppleBCMWLANPortInterfacePCIe","AppleOLYHALPortInterfacePCIe","AppleOLYHALPortInterfacePCIeV3","IOService") + | | "IOMatchCategory" = "AppleMultiFunctionManager" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "LoggingBundleName" = "com.apple.driver.AppleMultiFunctionManager" + | | "IONameMatched" = "amfm" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMultiFunctionManager" + | | "constants" = {"wlan_reg_on_on_delay"=0x78,"wlan_reg_on_off_delay"=0x78} + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMultiFunctionManager" + | | "CoreWiFiDriverSuspendedKey" = "false" + | | "CoreWiFiDriverReadyKey" = "true" + | | } + | | + | +-o arm-io@10F00000 + | | | { + | | | "iommu-present" = <> + | | | "AAPL,phandle" = <27000000> + | | | "#address-cells" = <02000000> + | | | "IODeviceMemory" = (({"address"=0x210f00000,"length"=0x2000}),({"address"=0x211f00000,"length"=0x2000}),({"address"=0x210050000,"length"=0x2000}),({"address"=0x210150000,"length"=0x2000}),({"address"=0x210250000,"length"=0x2000}),({"address"=0x210350000,"length"=0x2000}),({"address"=0x211050000,"length"=0x2000}),({"address"=0x211150000,"length"=0x2000}),({"address"=0x211250000,"length"=0x2000}),({"address"=0x211350000,"length"=0x2000})) + | | | "cpm-impl" = <0000e4100200000000800000000000000000e411020000000080000000000000> + | | | "name" = <61726d2d696f00> + | | | "usbphy-frequency" = <00000000> + | | | "acc-impl" = <0000f0100200000000200000000000000000f011020000000020000000000000> + | | | "soc-generation" = <48313500> + | | | "compatible" = <61726d2d696f2c743831323200> + | | | "ranges" = <000000000000000000000010020000000000003001000000000000000700000000000000070000000000008003000000000000000b000000000000000b0000000000008003000000000000000800000000000000080000000000000002000000000000000a000000000000000a0000000000008000000000000000000c000000000000000c0000000000000002000000000000000e000000000000000e0000000000008000000000000000800500000000000080050000000000008000000000000000a005000000000000a0050000000000002000000000000000c005000000000000c0050000000000004000000000000000000600000000000000060000000000008000000$ + | | | "function-power_gate" = <8200000047727770> + | | | "function-clock_gate" = <82000000476b6c63> + | | | "process-node" = <04000000> + | | | "clock-frequencies-regs" = <00366e01000000c400800000000000c4000000000000007401000000000000740000000000000070010000000000007002000000000000700300000000000070040000000000007005000000000000700600000000000070070000000000007008000000000000700000000000000004080024e4020000c9100024e4020000c9140024e4020000c9180024e4020000c9240024e4020000c9280024e4020000c9040024e4020000c90c0024e4020000c92c0024e4020000c9300024e4020000c9340024e4020000c9380024e4020000c93c0024e4020000c9400024e4020000c9440024e4020000c9480024e4020000c94c0024e4020000c9500024e402000$ + | | | "clock-frequencies-nclk" = <00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "die-count" = <01000000> + | | | "clock-frequencies" = <00366e01008000000000dc020000584a00105e5f00c6507fa7a94108006fa12b00d2496b00000000008c8647807c814a5581f20700366e010000dc020000584a00006e0100006e0100006e0100006e0100006e0100006e01000000000000dc0200002c2500002c250000b70000006e0100006e0100006e010000dc020000dc020000584a0000dc020000dc020000dc020000dc020000000000006e01c00c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "chip-revision" = <20000000> + | | | "fuse-revision" = <0a000000> + | | | "device_type" = <74383132322d696f00> + | | | "#size-cells" = <02000000> + | | | "reg" = <0000f0100200000000200000000000000000f0110200000000200000000000000000051002000000002000000000000000001510020000000020000000000000000025100200000000200000000000000000351002000000002000000000000000000511020000000020000000000000000015110200000000200000000000000000251102000000002000000000000000003511020000000020000000000000> + | | | } + | | | + | | +-o AppleH15IO + | | | { + | | | "IOClass" = "AppleH15IO" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "IOFunctionParent00000027" = <> + | | | "IOPlatformActiveAction" = 0x13880 + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"ChildProxyPowerState"=0xffffffffffffffff,"CurrentPowerState"=0x0} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "arm-io,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "arm-io,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o spi2@91108000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "clock-gates" = <45000000> + | | | | "AAPL,phandle" = <28000000> + | | | | "#address-cells" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1108000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "spi-version" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <7370693200> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <7370692d312c7370696d6300> + | | | | "interrupts" = + | | | | "dma-channels" = <18000000000000000000000080000000400000000000000000000000000000001900000000000000000000008000000040000000000000000000000000000000> + | | | | "clock-ids" = <98010000> + | | | | "function-spi_cs0" = <010000006c6c756e> + | | | | "dma-parent" = <95000000> + | | | | "device_type" = <73706900> + | | | | "#size-cells" = <07000000> + | | | | "reg" = <00801091000000000040000000000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleSPIMCController + | | | | { + | | | | "IOClass" = "AppleSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spi-1,spimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "Stats" = {"intrTimeouts"=0x0,"xfer_hist_count"=0xac95,"disb_intrs_active"=0x0,"pollTimeouts"=0x0,"xfer"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x149,0x17a0,0x8e0b,0x43f,0xa6,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"poll"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,$ + | | | | "IONameMatched" = "spi-1,spimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPIMC" + | | | | } + | | | | + | | | +-o mesa@0 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = <29000000> + | | | | "monitor-current-3v0-threshold" = + | | | | "IOReportLegendPublic" = Yes + | | | | "power-on-delay" = <07000000> + | | | | "time-between-scans" = <00000200> + | | | | "mesaType" = <01000000> + | | | | "power-off-delay" = <0a000000> + | | | | "monitor-power-interval" = + | | | | "monitor-current-3v0-count" = <03000000> + | | | | "function-monitor-current-3v0" = <9f0000005279656b52444949> + | | | | "name" = <6d65736100> + | | | | "scan-timer-reset-time" = <99990000> + | | | | "interrupt-parent" = <70000000> + | | | | "monitor-power-avg-count" = <14000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "MesaSelfTest" = "OK" + | | | | "compatible" = <62696f73656e736f722c6d65736100> + | | | | "interrupts" = + | | | | "monitor-current-avg-count" = <01000000> + | | | | "monitor-current-value-type" = <01000000> + | | | | "function-hid_event_dispatch" = <2101000044747542> + | | | | "max-scan-time" = <33330100> + | | | | "spi-frequency" = <00127a00> + | | | | "device_type" = <6d65736100> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "reg" = <00000000f4010000000101080000000014000000000000000000000000000000> + | | | | "function-mesa_pwr" = <720000004f4950471d00000001010000> + | | | | } + | | | | + | | | +-o AppleSandDollar + | | | | { + | | | | "IOClass" = "AppleSandDollar" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "mesaType" = 0x2 + | | | | "spi-freq" = 0x7a1200 + | | | | "IOProbeScore" = 0x64 + | | | | "IOUserClientClass" = "AppleMesaUserClient" + | | | | "SensorID" = 0x3352 + | | | | "IONameMatch" = ("biosensor,mesa") + | | | | "IOCFPlugInTypes" = {"3F3B04CC-A07A-46A5-9DDF-78768C966771"="AppleBiometricSensor.kext/Contents/PlugIns/AppleMesaLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | | | "spi-clock-phase" = 0x3 + | | | | "IONameMatched" = "biosensor,mesa" + | | | | "mesa-state" = 0x6 + | | | | "SerialNumber" = <0219c0794a419f23deac3c96fc0100d0> + | | | | "IOFunctionParent00000029" = <> + | | | | "patch-version" = 0x16 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Mesa","IOReportChannels"=((0x5053544154450000,0x400020002,"Power State")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Mesa Power State"},{"IOReportGroupName"="Mesa","IOReportChannels"=((0x7265736574730000,0x180000001,"Total Resets"),(0x6573647265736574,0x180000001,"ESD Resets"),(0x746f7420696e7400,0x180000001,"Total Interrupts"),(0x7370727320696e74,0x180000001,"Spurious Interrupts"),(0x7370696572726f72,0x180000001,"Total SPI Errors"),(0x$ + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | } + | | | | + | | | +-o AppleMesaShim + | | | | | { + | | | | | "IOClass" = "AppleMesaShim" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProviderClass" = "AppleMesa" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb},{"DeviceUsagePage"=0x20,"DeviceUsage"=0x10}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "HIDServiceSupport" = Yes + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"NotificationCen$ + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x2e38,"NotificationForce"=0x0,"NotificationCount"=0xae,"head"=0x2e38},"EnqueueEventCount"=0xae,"LastEventType"=0x1d,"LastEventTime"=0x3ab5a91cc0} + | | | | } + | | | | + | | | +-o AppleMesaSEPDriver + | | | | { + | | | | "IOClass" = "AppleMesaSEPDriver" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMesaSEPDriver" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "ScanningState" = 0x0 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "sep-endpoint,sbio" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "com_apple_driver_AppleMesaSEPDriver" + | | | | "MesaCalBlobSource" = "FDR" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "sep-endpoint,sbio" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMesaSEPDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMesaSEPDriver" + | | | | } + | | | | + | | | +-o AppleBiometricServices + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricServices" + | | | | "IOMatchCategory" = "com_apple_driver_AppleBiometricServices" + | | | | "IOClass" = "AppleBiometricServices" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricServices" + | | | | "IOProviderClass" = "AppleMesaSEPDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricServices" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "AppleBiometricServicesUserClient" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | } + | | | | + | | | +-o AppleBiometricServicesUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o spi4@91110000 + | | | | { + | | | | "compatible" = <7370692d312c7370696d6300> + | | | | "function-spi_cs0" = <700000004f4950478800000001000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <01030000> + | | | | "reg" = <00001191000000000040000000000000> + | | | | "clock-gates" = <47000000> + | | | | "clock-ids" = <9a010000> + | | | | "AAPL,phandle" = <2a000000> + | | | | "device_type" = <73706900> + | | | | "#size-cells" = <07000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<01030000>) + | | | | "#address-cells" = <01000000> + | | | | "spi-version" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1110000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <7370693400> + | | | | } + | | | | + | | | +-o AppleSPIMCController + | | | | { + | | | | "IOClass" = "AppleSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spi-1,spimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "Stats" = {"intrTimeouts"=0x0,"xfer_hist_count"=0x0,"disb_intrs_active"=0x0,"pollTimeouts"=0x0,"xfer"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"poll"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0$ + | | | | "IONameMatched" = "spi-1,spimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPIMC" + | | | | } + | | | | + | | | +-o dp855@0 + | | | | { + | | | | "security-level" = <03000000> + | | | | "compatible" = <7061726164652c445038353500> + | | | | "prod-status" = <01000000> + | | | | "AAPL,phandle" = <2b000000> + | | | | "reg" = <0000000053000000000001080000000014000000000000000000000000000000> + | | | | "device-id" = <413431303433> + | | | | "bundle-ver" = <07180000> + | | | | "ecid" = <000000000000000001073406080a1849> + | | | | "nonce" = <79235222a2bd69b2e38a8a5feb737e5aaed967ff1415331d485ac23d66fbdae8> + | | | | "device_type" = <74636f6e00> + | | | | "prod-fuse-value" = <01000000> + | | | | "firmware-ver" = <01220000> + | | | | "firmware" = <01000000> + | | | | "sdom-status" = <01000000> + | | | | "name" = <647038353500> + | | | | "sdom-fuse-value" = <01000000> + | | | | } + | | | | + | | | +-o AppleParadeDP855TCON + | | | | { + | | | | "IOProbeScore" = 0x3a98 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "IOClass" = "AppleParadeDP855TCON" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDPDisplayTCON" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "parade,DP855" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "parade,DP855" + | | | | "model" = <57030000> + | | | | } + | | | | + | | | +-o lcd-pmicwp + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d706d6963777000> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2c000000> + | | | | "reg" = <4f00000010000000> + | | | | } + | | | | + | | | +-o lcd-pmic + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <02000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d706d696300> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2d000000> + | | | | "reg" = <7400000000010000> + | | | | } + | | | | + | | | +-o lcd-sswp + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d7373777000> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2e000000> + | | | | "reg" = <7100000010000000> + | | | | } + | | | | + | | | +-o lcd-ss + | | | | { + | | | | "repeated-start" = <01000000> + | | | | "verify" = <00000000> + | | | | "protection" = <00000000> + | | | | "interface" = <03000000> + | | | | "name" = <6c63642d737300> + | | | | "offset-size" = <01000000> + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "device_type" = <6c63642d6932632d636f6d706f6e656e7400> + | | | | "AAPL,phandle" = <2f000000> + | | | | "reg" = <4000000000010000> + | | | | } + | | | | + | | | +-o tcon-registers + | | | | { + | | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | | "reg" = <0000000000010000> + | | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | | "name" = <74636f6e2d72656769737465727300> + | | | | "AAPL,phandle" = <30000000> + | | | | "device_type" = <74636f6e2d72656769737465727300> + | | | | } + | | | | + | | | +-o lcd-eeprom + | | | { + | | | "offset-size" = <03000000> + | | | "hi-z" = <01000000> + | | | "data-pol-inv" = <00000000> + | | | "IOAVDisplayMemoryUserInterfaceSupported" = Yes + | | | "tx-bit-order" = <01000000> + | | | "AAPL,phandle" = <31000000> + | | | "reg" = <0000000000000200> + | | | "multi-io-bit-order" = <00000000> + | | | "verify" = <01000000> + | | | "IOUserClientClass" = "IOAVDisplayMemoryConcreteUserClient" + | | | "protection" = <01000000> + | | | "device_type" = <6c63642d7370692d636f6d706f6e656e7400> + | | | "mode" = <00000000> + | | | "multi-io" = <00000000> + | | | "interface" = <00000000> + | | | "rx-bit-order" = <01000000> + | | | "name" = <6c63642d656570726f6d00> + | | | } + | | | + | | +-o i2c1@91014000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<0d030000>) + | | | | "gpio-iic_scl" = <930000000201010041500000> + | | | | "gpio-iic_sda" = <920000000201010041500000> + | | | | "clock-gates" = <37000000> + | | | | "AAPL,phandle" = <32000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1014000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633100> + | | | | "function-device_reset" = <820000005453524137000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0d030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00400191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o audio-speaker@38 + | | | | | { + | | | | | "find-speaker-id" = <01000000> + | | | | | "bop-config" = <01320222832d800206324630020638403002063e3730ffe6> + | | | | | "function-speaker-id1" = <700000004f4950479c00000000010000> + | | | | | "IOInterruptSpecifiers" = (<0c00000001000000>) + | | | | | "valid-speaker-ids" = <0000000003000000> + | | | | | "AAPL,phandle" = <33000000> + | | | | | "speaker1" = <36000000> + | | | | | "speaker-protection" = <01000000> + | | | | | "external-power-provider" = <14010000> + | | | | | "private" = <3100> + | | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | | "speaker2" = <34000000> + | | | | | "name" = <617564696f2d737065616b657200> + | | | | | "interrupt-parent" = <70000000> + | | | | | "function-reset" = <700000004f4950470d00000001000100> + | | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | | "amp-tx-zd-config" = + | | | | | "interrupts" = <0c00000001000000> + | | | | | "amp-dcblocker-config" = <01410000> + | | | | | "iboot-audio-volume" = <> + | | | | | "speaker3" = <37000000> + | | | | | "speaker-config" = <000f0002010f0406020f080a030f0c0e> + | | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | | "reg" = <38000000c40900000000000000000000> + | | | | | "function-speaker-id0" = <700000004f4950479b00000000010000> + | | | | | } + | | | | | + | | | | +-o AppleSN012776Amp + | | | | { + | | | | "IOClass" = "AppleSN012776Amp" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSN012776Amp" + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "IOFunctionParent00000033" = <> + | | | | "CodecRegisterDisplayBase" = 0x10 + | | | | "IOPowerManagement" = {"DevicePowerState"=0x0,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("audio-control,sn012776") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CodecRegisterStartIndex" = 0x0 + | | | | "CodecRegisterPatchList" = () + | | | | "IOFunctionParent00000112" = <> + | | | | "IONameMatched" = "audio-control,sn012776" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSN012776Amp" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSN012776Amp" + | | | | } + | | | | + | | | +-o audio-speaker-left-tweeter@39 + | | | { + | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | "reg" = <39000000c40900000000000000000000> + | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | "name" = <617564696f2d737065616b65722d6c6566742d7477656574657200> + | | | "AAPL,phandle" = <34000000> + | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | } + | | | + | | +-o i2c3@9101C000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<0f030000>) + | | | | "gpio-iic_scl" = <360000000201010041500000> + | | | | "gpio-iic_sda" = <350000000201010041500000> + | | | | "clock-gates" = <39000000> + | | | | "AAPL,phandle" = <35000000> + | | | | "IODeviceMemory" = (({"address"=0x2a101c000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633300> + | | | | "function-device_reset" = <820000005453524139000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0f030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00c00191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o audio-speaker-right-woofer@3B + | | | | { + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "reg" = <3b000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d737065616b65722d72696768742d776f6f66657200> + | | | | "AAPL,phandle" = <36000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | } + | | | | + | | | +-o audio-speaker-right-tweeter@3C + | | | | { + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "reg" = <3c000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d737065616b65722d72696768742d7477656574657200> + | | | | "AAPL,phandle" = <37000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c736e30313237373600> + | | | | } + | | | | + | | | +-o audio-codec-output@4B + | | | | { + | | | | "internal-mclk-src" = <01000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "enable-ringsense" = <01000000> + | | | | "AAPL,phandle" = <38000000> + | | | | "bits-per-sample-subset" = <18000000> + | | | | "external-power-provider" = <17010000> + | | | | "ringsense-inverted" = <01000000> + | | | | "enable-dcid" = <01000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "private" = <3100> + | | | | "function-codecinput_master" = <1a0100003144554163327061> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <617564696f2d636f6465632d6f757470757400> + | | | | "interrupt-parent" = <70000000> + | | | | "function-reset" = <720000004f4950471100000001000000> + | | | | "compatible" = <617564696f2d636f6e74726f6c2c637334326c383400> + | | | | "interrupts" = + | | | | "PowerOffAtSleep" = <01000000> + | | | | "mic-config" = <0100ffffffffffff> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device_type" = <617564696f2d636f6e74726f6c00> + | | | | "samplerate-default" = <0000000080bb0000> + | | | | "reg" = <4b000000c40900000000000000000000> + | | | | "function-codecinput_active" = <0f01000052733269326e6970> + | | | | } + | | | | + | | | +-o AppleCS42L84Audio + | | | | { + | | | | "IOClass" = "AppleCS42L84Audio" + | | | | "DCIDMode" = "Unplugged" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleCS42L84Audio" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x0,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "CodecRegisterStartIndex" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "MicDetect" = No + | | | | "HPDetect" = No + | | | | "IONameMatch" = ("audio-control,cs42l84") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleCS42L84Audio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleCS42L84Audio" + | | | | "CodecRegisterPatchList" = () + | | | | "IONameMatched" = "audio-control,cs42l84" + | | | | "Supports DCID" = Yes + | | | | "DetectConfidence" = "CompleteFinal" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Output","IOReportChannels"=((0x4443443156524d53,0x101000001,"Codec Output.1VRMS"),(0x4443444849434150,0x101000001,"Codec Output.HiCapacitance"),(0x4443444c4f574950,0x101000001,"Codec Output.LowImpedance"),(0x4443444849474849,0x101000001,"Codec Output.HighImpedance")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="DCIDModes"}) + | | | | "ButtonDetect" = No + | | | | "IOFunctionParent00000038" = <> + | | | | "CodecRegisterDisplayBase" = 0x10 + | | | | "IOFunctionParent00000118" = <> + | | | | } + | | | | + | | | +-o AppleCS42L84Mikey + | | | | { + | | | | "AppleVendorSupported" = Yes + | | | | "Transport" = "Audio" + | | | | "HIDDefaultBehavior" = Yes + | | | | "MaxInputReportSize" = 0x1 + | | | | "IOReportLegendPublic" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "Product" = "Headset" + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "ReportDescriptor" = <050c0901a101050c09cd09ea09e91500250195037501810295058105c0> + | | | | "MaxOutputReportSize" = 0x0 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "PrimaryUsage" = 0x1 + | | | | "DeviceTypeHint" = "Headset" + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"Usage"=0xcd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc$ + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xc + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "MaxFeatureReportSize" = 0x0 + | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x7,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x0 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | | "Product" = "Headset" + | | | | "PrimaryUsage" = 0x1 + | | | | "IODEXTMatchCount" = 0x1 + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "Transport" = "Audio" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <050c0901a101050c09cd09ea09e91500250195037501810295058105c0> + | | | | "HIDDefaultBehavior" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xc + | | | | "MaxFeatureReportSize" = 0x0 + | | | | "MaxInputReportSize" = 0x1 + | | | | } + | | | | + | | | +-o AppleUserHIDEventDriver + | | | | { + | | | | "kOSBundleDextUniqueIdentifier" = + | | | | "PrimaryUsagePage" = 0xc + | | | | "SensorProperties" = {} + | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | "VersionNumber" = 0x0 + | | | | "VendorID" = 0x0 + | | | | "DeviceTypeHint" = "Headset" + | | | | "IOUserServerOneProcess" = Yes + | | | | "Product" = "Headset" + | | | | "Transport" = "Audio" + | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.hid.eventservice" + | | | | "IOUserClasses" = ("AppleUserHIDEventDriver","AppleUserHIDEventService","IOUserHIDEventDriver","IOUserHIDEventService","IOHIDEventService","IOService","OSObject") + | | | | "Manufacturer" = "Apple" + | | | | "IOUserServerCDHash" = "a6a70f7d4cb706094e3d9e156dcf0875480035b0" + | | | | "ProductID" = 0x0 + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | | "RegisterService" = No + | | | | "Keyboard" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"Usage"=0xcd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xc,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x2,"ReportID"=0x0,"U$ + | | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | | | | "ReportInterval" = 0x1f40 + | | | | "VendorIDSource" = 0x0 + | | | | "IOMatchedPersonality" = {"IOProbeScore"=0x1,"CFBundleIdentifier"="com.apple.AppleUserHIDDrivers","IOProviderClass"="IOHIDInterface","IOClass"="AppleUserHIDEventService","IOUserClass"="AppleUserHIDEventDriver","CFBundleIdentifierKernel"="com.apple.iokit.IOHIDFamily","IOUserServerCDHash"="a6a70f7d4cb706094e3d9e156dcf0875480035b0","IOUserServerOneProcess"=Yes,"DeviceUsagePairs"=({"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x5},{"DeviceUsagePa$ + | | | | "HIDEventServiceProperties" = {"HIDStickyKeysOn"=0x0,"HIDKeyRepeat"=0x4f790d5,"PressCountUsagePairs"=(0xc00cd,0xb0021),"TrackpadHorizScroll"=0x1,"LogLevel"=0x6,"HIDMouseKeysOptionToggles"=0x0,"MouseTwoFingerHorizSwipeGesture"=0x2,"JitterNoClick"=0x1,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MouseMomentumScroll"=Yes,"PreserveTimestamp"=Yes,"HIDDefaultParameters"=Yes,"UnifiedKeyMapping"=No,"HIDPointerButtonMode"=0x2,"HIDMouseKeysOn"=0x0,"HIDScrollZoomModifierMask"=0x0,"TrackpadFourFingerVertSwipeGesture$ + | | | | "CFBundleIdentifier" = "com.apple.AppleUserHIDDrivers" + | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "IOProviderClass" = "IOHIDInterface" + | | | | "IOUserClass" = "AppleUserHIDEventDriver" + | | | | "LocationID" = 0x0 + | | | | "IOClass" = "AppleUserHIDEventService" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | | "PrimaryUsage" = 0x1 + | | | | "CountryCode" = 0x0 + | | | | "HIDServiceSupport" = Yes + | | | | "SensorPropertySupported" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOProbeScore" = 0x47f + | | | | "HIDDKStart" = Yes + | | | | } + | | | | + | | | +-o IOHIDEventServiceUserClient + | | | { + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | } + | | | + | | +-o i2c4@91020000 + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003344> + | | | | "IOInterruptSpecifiers" = (<10030000>) + | | | | "gpio-iic_scl" = <950000000201010041500000> + | | | | "gpio-iic_sda" = <940000000201010041500000> + | | | | "clock-gates" = <3a000000> + | | | | "AAPL,phandle" = <39000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1020000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003444> + | | | | "name" = <6932633400> + | | | | "function-device_reset" = <82000000545352413a000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <10030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00000291000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o avellino-pre@77 + | | | | { + | | | | "reg" = <77000000c40900000000000000000000> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "name" = <6176656c6c696e6f2d70726500> + | | | | "AAPL,phandle" = <3a000000> + | | | | "device_type" = <6176656c6c696e6f2d70726500> + | | | | } + | | | | + | | | +-o avellino-post@44 + | | | { + | | | "reg" = <44000000c40900000000000000000000> + | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | "name" = <6176656c6c696e6f2d706f737400> + | | | "AAPL,phandle" = <3b000000> + | | | "device_type" = <6176656c6c696e6f2d706f737400> + | | | } + | | | + | | +-o fpwm1@91044000 + | | | | { + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6670776d2c7438313031006670776d2c73356c383932307800> + | | | | "reg" = <00400491000000000040000000000000> + | | | | "interrupts" = <16030000> + | | | | "IODeviceMemory" = (({"address"=0x2a1044000,"length"=0x4000})) + | | | | "clock-gates" = <34000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<16030000>) + | | | | "device_type" = <6670776d3100> + | | | | "AAPL,phandle" = <3c000000> + | | | | "name" = <6670776d3100> + | | | | } + | | | | + | | | +-o AppleS5L8920XFPWM + | | | | { + | | | | "IOClass" = "AppleS5L8920XFPWM" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8920XPWM" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "FPWM Frequency" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "fpwm,s5l8920x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOFunctionParent0000003C" = <> + | | | | "IONameMatched" = "fpwm,s5l8920x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8920XPWM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8920XPWM" + | | | | } + | | | | + | | | +-o kbd-backlight@0 + | | | { + | | | "nits-to-pwm-percentage-part1" = <9f3a00003f750000dfaf00007eea00001e250100be5f01005e9a01003fd50100df0f02007e4a02001e850200bebf02005efa0200fd3403009d6f03003daa0300dde403007c1f04001c5a0400bc9404005ccf0400fb0905009b4405007c7f05001cba0500bcf405005c2f0600fb6906009ba406003bdf0600db1907007a5407001a8f0700bac907005a040800f93e08009979080039b40800d9ee0800ba2909005a640900f99e090099d9090039140a00d94e0a0078890a0018c40a00b8fe0a0058390b00f7730b0097ae0b0037e90b00d7230c00765e0c0016990c00f7d30c00970e0d0037490d00d7830d0076be0d0016f90d00b6330e0$ + | | | "high-period" = 0x2 + | | | "AAPL,phandle" = <3d000000> + | | | "reg" = <00000000> + | | | "low-period" = 0x3be + | | | "device_type" = <6670776d00> + | | | "pwm-frequency" = 0x16e3600 + | | | "amplitude" = 0x100000000 + | | | "enabled" = No + | | | "IOFunctionParent0000003D" = <> + | | | "default-hz" = + | | | "name" = <6b62642d6261636b6c6967687400> + | | | "nits-to-pwm-percentage-part2" = <99990500eb110600ae870600000007005178070014ee070066660800b8de08007a540900cccc09001e450a00e1ba0a0033330b0085ab0b0047210c0099990c00eb110d00ae870d0000000e0051780e0014ee0e0066660f00b8de0f007a541000cccc10001e451100e1ba11003333120085ab12004721130099991300eb111400ae871400000015005178150014ee150066661600b8de16007a541700cccc17001e451800e1ba18003333190085ab190047211a0099991a00eb111b00ae871b0000001c0051781c0014ee1c0066661d00b8de1d007a541e00cccc1e001e451f00e1ba1f003333200085ab20004721210099992100eb11220$ + | | | } + | | | + | | +-o alc0 + | | | | { + | | | | "function-aop-device-control-id" = <69617068> + | | | | "external-power-provider" = + | | | | "dma-channels" = + | | | | "compatible" = <616c632c743831323200> + | | | | "function-aop-device-control" = <790000006c744367> + | | | | "function-admac_powerswitch" = + | | | | "alc-number" = <00000000> + | | | | "dma-parent" = + | | | | "device_type" = <69327300> + | | | | "AAPL,phandle" = <3e000000> + | | | | "name" = <616c633000> + | | | | } + | | | | + | | | +-o AppleLEAPController_T8122 + | | | | { + | | | | "IOClass" = "AppleLEAPController_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("alc,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "alc,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "ControllerActive" = No + | | | | } + | | | | + | | | +-o audio-leap-mic@4201 + | | | | { + | | | | "private" = <3100> + | | | | "device-uid" = <4469676974616c204d696300> + | | | | "input-data-selectors" = <31696d6932696d6933696d69> + | | | | "compatible" = <617564696f2d646174612c65787465726e616c00> + | | | | "AAPL,phandle" = <3f000000> + | | | | "reg" = <0142000003000100001bb700fa0001003000010000000000070000000003002001000000> + | | | | "Name" = "audio-leap-mic" + | | | | "device_type" = <6c6561702d617564696f2d6461746100> + | | | | "data-sources" = <6132706104000000010001000000000080bb00004c656170204d696300> + | | | | "audio-stream-formatter" = <7061656c> + | | | | "default-input-data-selectors" = <31696d6932696d6933696d69> + | | | | "device-name" = <4469676974616c204d696300> + | | | | "name" = <617564696f2d6c6561702d6d696300> + | | | | } + | | | | + | | | +-o Digital Mic + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="Digital Mic","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Digital Mic","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportCh$ + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "IOMatchedAtBoot" = Yes + | | | | "transport type" = 0x626c746e + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703261,"name"="Leap Mic"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703261,"base class"=0x736c6374,"read only"=0x0},{"control ID"=0x130,"variant"=0x0,"selectors"=({"value"=0x696d6931,"name"="Internal microphone1 "},{"value"=0x696d6932,"name"="Internal microphone2 "},{"value"=0x696d6933,"name"="Internal microphone3 "}),"scope"=0x696e7074,"element"=0x0,"class"=0x64737263,"value"=(0x696d6931,0x696d6932,0x696d6933),"base class"=0x$ + | | | | "input safety offset" = 0x32 + | | | | "output latency" = 0x1 + | | | | "device name" = "Digital Mic" + | | | | "IONameMatched" = "audio-data,external" + | | | | "output streams" = () + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0xc,"channels per frame"=0x3,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0xc,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0xc,"sample rate"=0xbb8000000000,"channels per frame"=0x3,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0xc,"frames per pa$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Digital Mic" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x18 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = No + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,external" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleExternalSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x0 + | | | | "device manufacturer" = "Apple Inc." + | | | | "IOFunctionParent0000003F" = <> + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "current state" = "off" + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "clock domain" = 0x6d61696e + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x3,"MaxOutputChannelCount"=0x0} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o alc4 + | | | | { + | | | | "function-aop-device-control-id" = <626c696c> + | | | | "external-power-provider" = <7b000000be000000> + | | | | "dma-channels" = <08000000210000000000000000030000c0000000000000000000000000000000090000002100000000000000c00300008001000000000000000000000000000008000000220000000000000000030000c0000000000000000000000000000000090000002200000000000000c003000080010000000000000000000000000000> + | | | | "compatible" = <616c632c743831323200> + | | | | "function-aop-device-control" = <7b0000006c744367> + | | | | "function-admac_powerswitch" = + | | | | "alc-number" = <04000000> + | | | | "dma-parent" = + | | | | "device_type" = <69327300> + | | | | "AAPL,phandle" = <40000000> + | | | | "name" = <616c633400> + | | | | } + | | | | + | | | +-o AppleLEAPController_T8122 + | | | | { + | | | | "IOClass" = "AppleLEAPController_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("alc,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "alc,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | } + | | | | + | | | +-o audio-leap-internal-loopback@4201 + | | | | { + | | | | "AAPL,phandle" = <41000000> + | | | | "compatible" = <617564696f2d646174612c65787465726e616c00> + | | | | "audio-stream-formatter" = <7061656c> + | | | | "device_type" = <6c6561702d617564696f2d6461746100> + | | | | "data-sources" = <6132706102020400020001000000000080bb00004c65617020496e7465726e616c204c6f6f706261636b00> + | | | | "device-uid" = <4c45415020496e7465726e616c204c6f6f706261636b00> + | | | | "device-name" = <4c45415020496e7465726e616c204c6f6f706261636b00> + | | | | "Name" = "audio-leap-internal-loopback" + | | | | "private" = <3100> + | | | | "name" = <617564696f2d6c6561702d696e7465726e616c2d6c6f6f706261636b00> + | | | | "reg" = <0142000002000100001bb700fa0001003000010003000000030000000202202003000000> + | | | | } + | | | | + | | | +-o LEAP Internal Loopback + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "IOFunctionParent00000041" = <> + | | | | "IOMatchedAtBoot" = Yes + | | | | "transport type" = 0x626c746e + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703261,"name"="Leap Internal Loopback"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703261,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x4a + | | | | "output latency" = 0x1a + | | | | "device name" = "LEAP Internal Loopback" + | | | | "IONameMatched" = "audio-data,external" + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x8,"sample rate"=0xbb8000000000,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0x8,"frames per p$ + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x8,"sample rate"=0xbb8000000000,"channels per frame"=0x2,"bits per channel"=0x20,"format flags"=0x9,"bytes per packet"=0x8,"frames per pa$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "LEAP Internal Loopback" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x48 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = Yes + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,external" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleExternalSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x4 + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="LEAP Internal Loopback","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="LEAP Internal Loopback","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportCha$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x2,"MaxOutputChannelCount"=0x2} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o wlan + | | | | { + | | | | "module-instance" = <646e696570657200> + | | | | "pcie-throttle-firmware-load" = <01000000> + | | | | "interrupt-parent" = <70000000> + | | | | "interrupts" = <1000000002000000> + | | | | "wlan.nan.enabled" = <01000000> + | | | | "AAPL,phandle" = <42000000> + | | | | "IOInterruptSpecifiers" = (<1000000002000000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "device_type" = <776c616e00> + | | | | "local-mac-address" = + | | | | "amfm-managed-port-control" = <> + | | | | "function-sac" = <26010000434341533064636c3164636c> + | | | | "wlan.lowlatency" = <01000000> + | | | | "wifi-antenna-sku-info" = <01000000000000005830000000000000> + | | | | "wifi-calibration-msf" = <424c4f42a00000000414e46c010000000700000003000000a0000000af0f00001cdf442100000000030000004f1000001a0200001cdf4421000000000400000069120000b40100001cdf442100000000040000001d140000b40100001cdf44210000000004000000d1150000c40000001cdf4421000000000200000095160000040000005172757b00000000010000009916000064000000d5750a6a00000000ad0f08000000010019020b0002038203820396039603960396039603960396039602af02af02af02af02af02af02af02af02af02af02af02af038203820396039603960396039603960396039602af02af02af02af02af02af02af02af0$ + | | | | "name" = <776c616e00> + | | | | } + | | | | + | | | +-o AppleOLYHAL + | | | | { + | | | | "IOClass" = "AppleOLYHAL" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleOLYHAL" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "wifi-module-sn" = <5145660001e8> + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "wlan" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleOLYHAL" + | | | | "FilesDB" = {} + | | | | "WiFiBootState" = Yes + | | | | "ModuleInfo" = "chip='s=C0' module='M=WLMT m=4.7 V=u' prod='17460' manuf='5348'" + | | | | "LoggingBundleName" = "com.apple.driver.AppleOLYHAL" + | | | | "IONameMatched" = "wlan" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleOLYHAL" + | | | | "vendor-id" = "USI" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleOLYHAL" + | | | | "HWIdentifiers" = {"V"="u","M"="WLMT","C"=0x1124,"s"="C0","P"="dnieper","m"="4.7"} + | | | | "IONetworkRootType" = "airport" + | | | | } + | | | | + | | | +-o CCPipe + | | | | | { + | | | | | "LogType" = 0x0 + | | | | | "IOClass" = "CCLogPipe" + | | | | | "CompressionDisabled" = 0x0 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Owner" = "com.apple.driver.AppleOLYHAL" + | | | | | "LogDataType" = 0x1 + | | | | | "Name" = "DriverLogs" + | | | | | "NumberOfFiles" = 0x1 + | | | | | "FileSize" = 0x200000 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x3e8 + | | | | | "MinLogSizeToNotify" = 0x1999 + | | | | | "Statistics" = {"timestamp"=0x60a6bec185232,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | | "LogIdentifier" = "AppleOLYHAL_log" + | | | | | "PipeType" = 0x0 + | | | | | "PipeSize" = 0x4000 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DriverLogs"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "WiFi" + | | | | | "Filename" = "AppleOLYHAL_log" + | | | | | } + | | | | | + | | | | +-o CCLogStream + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c5720,$ + | | | | "Id" = 0x1 + | | | | "IOClass" = "CCLogStream" + | | | | "CoreCaptureLevel" = 0x5 + | | | | "CoreCaptureFlag" = 0x0 + | | | | "ConsoleLevel" = 0x1 + | | | | "IOReportLegendPublic" = Yes + | | | | "LogIdentifier" = "olyhal" + | | | | "Name" = "olyhalStream" + | | | | "ConsoleFlag" = 0x0 + | | | | "MiscInfo" = 0x0 + | | | | } + | | | | + | | | +-o CCPipe + | | | | { + | | | | "LogType" = 0x0 + | | | | "IOClass" = "CCLogPipe" + | | | | "CompressionDisabled" = 0x0 + | | | | "IOReportLegendPublic" = Yes + | | | | "Owner" = "com.apple.driver.AppleOLYHAL" + | | | | "LogDataType" = 0x1 + | | | | "Name" = "uartFirmwareLogs" + | | | | "NumberOfFiles" = 0x2 + | | | | "FileSize" = 0x200000 + | | | | "LogPolicy" = 0x0 + | | | | "NotifyThreshold" = 0x3e8 + | | | | "MinLogSizeToNotify" = 0x1000 + | | | | "Statistics" = {"timestamp"=0x5f84e09c6d965,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | "LogIdentifier" = "uartFirmwareLogs" + | | | | "PipeType" = 0x0 + | | | | "PipeSize" = 0x2000 + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe uartFirmwareLogs"}) + | | | | "FileOptions" = 0x0 + | | | | "DirectoryName" = "WiFi" + | | | | "Filename" = "uartFirmwareLogs" + | | | | } + | | | | + | | | +-o CCLogStream + | | | { + | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c5720,$ + | | | "Id" = 0x1 + | | | "IOClass" = "CCLogStream" + | | | "CoreCaptureLevel" = 0x7f + | | | "CoreCaptureFlag" = 0x0 + | | | "ConsoleLevel" = 0xffffffffffffffff + | | | "IOReportLegendPublic" = Yes + | | | "LogIdentifier" = "uartFirmwareLogs" + | | | "Name" = "UARTStream" + | | | "ConsoleFlag" = 0x0 + | | | "MiscInfo" = 0x0 + | | | } + | | | + | | +-o bluetooth + | | | | { + | | | | "IOInterruptSpecifiers" = (<4900000002000002>) + | | | | "AAPL,phandle" = <43000000> + | | | | "voice-record" = <> + | | | | "IOReportLegendPublic" = Yes + | | | | "local-mac-address" = + | | | | "supported-profiles" = + | | | | "function-int_timestamp" = <6900000074434941f3000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | "bluetooth-taurus-calibration-bf" = <424c4f4218010000387a43d9010000000d00000002000000180100006c0600001cdf4421000000000400000084070000d40200001cdf4421000000000a000000580a0000800600001cdf44210000000005000000d81000007c0100001cdf4421000000000600000054120000640900001cdf44210000000007000000b81b00003c0100001cdf44210000000008000000f41c0000740200001cdf44210000000009000000681f0000cc0200001cdf4421000000000b00000034220000040100001cdf4421000000000c00000038230000141500001cdf4421000000000d0000004c3800009c0300001cdf4421000000000e000000e83b0000$ + | | | | "name" = <626c7565746f6f746800> + | | | | "vendor-id" = + | | | | "interrupt-parent" = <70000000> + | | | | "transport-encoding" = <07000000> + | | | | "coex" = <02000000> + | | | | "compatible" = <626c7565746f6f74682c6e383800> + | | | | "function-bootstrap_lock" = <4b434f4c> + | | | | "interrupts" = <4900000002000002> + | | | | "product-id" = + | | | | "bootstrap-delay" = <64000000> + | | | | "bluetooth-taurus-calibration" = <424c4f4218010000387a43d9010000000d00000002000000180100006c0600001cdf4421000000000400000084070000d40200001cdf4421000000000a000000580a0000800600001cdf44210000000005000000d81000007c0100001cdf4421000000000600000054120000640900001cdf44210000000007000000b81b00003c0100001cdf44210000000008000000f41c0000740200001cdf44210000000009000000681f0000cc0200001cdf4421000000000b00000034220000040100001cdf4421000000000c00000038230000141500001cdf4421000000000d0000004c3800009c0300001cdf4421000000000e000000e83b0000d00$ + | | | | "device_type" = <626c7565746f6f746800> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleBluetoothModule + | | | | { + | | | | "IOClass" = "AppleBluetoothModule" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBluetoothModule" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "Time Sync" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOUserClientClass" = "AppleBluetoothModuleUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "bluetooth" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleBluetoothModule" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "bluetooth" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBluetoothModule" + | | | | "autoOn" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBluetoothModule" + | | | | "InReset" = No + | | | | } + | | | | + | | | +-o BTDebug + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOMatchCategory" = "BTDebug" + | | | | | "IOClass" = "BTDebug" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOProviderClass" = "AppleBluetoothModule" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBluetoothDebug" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "BTDebugUserClient" + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOReportLegend" = ({"IOReportChannels"=((0x4c6f675265616453,0x180000001,"Read Success Count"),(0x4c6f675265616446,0x180000001,"Read Failure Count"),(0x4c6f6744756d7073,0x180000001,"Log Dump Count")),"IOReportGroupName"="Logging Global","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x4c6f674e6d627200,0x180000001,"Number of Logs"),(0x4c6f674279746500,0x180000001,"Number of Bytes")),"IOReportGroupName"="RealTime Logs","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x4c6f674$ + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | { + | | | | | "LogType" = 0x2 + | | | | | "IOClass" = "CCDataPipe" + | | | | | "CompressionDisabled" = 0x0 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Owner" = "com.apple.driver.BTDebug" + | | | | | "LogDataType" = 0x2 + | | | | | "Name" = "StateDump" + | | | | | "NumberOfFiles" = 0x0 + | | | | | "FileSize" = 0x0 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x0 + | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | "Statistics" = {"timestamp"=0x0,"Errors"={"metaDataCounts: invalidState"=0x0,"metaDataCounts: invalidPaddingSize"=0x0,"metaDataCounts: invalidLogLevel"=0x0,"reserveRingEntryDrops"=0x0,"metaDataCounts: invalidPayloadSize"=0x0}} + | | | | | "LogIdentifier" = "" + | | | | | "PipeType" = 0x1 + | | | | | "PipeSize" = 0x40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe StateDump"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "BT" + | | | | | "Filename" = "" + | | | | | } + | | | | | + | | | | +-o CCDataStream + | | | | { + | | | | "IOClass" = "CCDataStream" + | | | | "LogIdentifier" = "" + | | | | "Name" = "StateDump" + | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434353204c202020,0x180100001," Log Calls"),(0x434353204c444343,0x180100001," Log Calls Dropped CC Filters"),(0x434353204c444320,0x180100001," Log Calls Dropped Console Filters"),(0x434353204c4c4520,0x180100001," Log Calls [Emergency]"),(0x434353204c4c4120,0x180100001," Log Calls [Alert]"),(0x434353204c4c4320,0x180100001," Log Calls [Crit]"),(0x434353204c4c572$ + | | | | "IOReportLegendPublic" = Yes + | | | | "Id" = 0x1 + | | | | } + | | | | + | | | +-o AppleConvergedIPCOLYBTControl + | | | | { + | | | | "IOClass" = "AppleConvergedIPCOLYBTControl" + | | | | "memory_alloc_limit" = 0xa00000 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "lowpower_support" = {"ios"=No,"macos"=Yes} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOProviderClass" = "AppleBluetoothModule" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "AppleConvergedIPCControlUserClient" + | | | | "bootstage" = 0x3 + | | | | "devicematch" = Yes + | | | | "RTIDevice_V2" = {"di_msi"=0x0,"completion_ring"=({"count"=0x80,"setting"={"accum delay"=0x0,"intmod delay"=0x0,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"foot_size"=0x43,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"ac$ + | | | | "RTIDevice" = {"di_msi"=0x0,"completion_ring"=({"count"=0x80,"setting"={"accum delay"=0x0,"intmod delay"=0x0,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum bytes"=0x0,"intmod bytes"=0xffffffffffffffff}},{"count"=0x100,"foot_size"=0x43,"setting"={"accum delay"=0x0,"intmod delay"=0x3e8,"msi"=0x0,"doorbell"={"time"=0x3e8,"threshold"=0x50},"accum$ + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "num_addr_bits" = {"ios"=0x40,"macos"=0x20} + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTControl" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "logSnapshotBufferSize" = 0x10000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "read_otp" = {"ios"=No,"macos"=Yes} + | | | | } + | | | | + | | | +-o AppleConvergedIPCOLYBTCoreDumpProvider + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTCoreDumpProvider" + | | | | "IOClass" = "AppleConvergedIPCOLYBTCoreDumpProvider" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOProviderClass" = "AppleConvergedIPCOLYBTControl" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIDevice + | | | | { + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "hci" + | | | | | "ACIPCInterfaceUnit" = 0x0 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "15F96DFF-FC3C-493B-AFDC-848A4A045A34" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "sco" + | | | | | "ACIPCInterfaceUnit" = 0x1 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "42B77348-3F28-441E-B196-C1EF6F503F78" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "acl" + | | | | | "ACIPCInterfaceUnit" = 0x2 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOSkywalkNexusUUID" = "6B04EFEA-6AB6-48CD-BD5E-4536C9C20072" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="TX Completion Queue","IOReportChannels"=((0x534b746300000000,0x180000001,"Enabled"),(0x534b746300000001,0x180000001,"Capacity"),(0x534b746300000002,0x180000001,"Buffer Size"),(0x534b746300000003,0x180000001,"Queue State"),(0x534b746300000004,0x180000001,"Packet Count"),(0x534b746300000005,0x180000001,"Request EQ Sync Path"),(0x534b746300000006,0x180000001,"Request EQ Async Path"),(0x534b746300000007,0x180000001,"Pkt Cnt"),(0x534b746300000008,0x180000001,"Pkt Cnt Max"),(0x534$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "debug" + | | | | | "ACIPCInterfaceTransport" = "userclient" + | | | | | "IOUserClientClass" = "AppleConvergedIPCUserClient" + | | | | | "ACIPCInterfaceUnit" = 0x3 + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCOLYBTLogProvider + | | | | { + | | | | "IOProbeScore" = 0x2710 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchCategory" = "AppleConvergedIPCOLYBTLogProvider" + | | | | "IOClass" = "AppleConvergedIPCOLYBTLogProvider" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOProviderClass" = "AppleConvergedIPCRTIInterface" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedIPCOLYBTControl" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ACIPCInterfaceProtocol" = "debug" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | | { + | | | | | "ACIPCInterfaceProtocol" = "tsi" + | | | | | "ACIPCInterfaceUnit" = 0x4 + | | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | | } + | | | | | + | | | | +-o AppleConvergedIPCSkywalkInterface + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOSkywalkKernelPipeBSDClient + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOProviderClass" = "IOSkywalkInterface" + | | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOResourceMatch" = "IOBSD" + | | | | "IOSkywalkNexusUUID" = "5BCEBD42-00FE-49CB-99C4-4D517A687E45" + | | | | } + | | | | + | | | +-o AppleConvergedIPCRTIInterface + | | | | { + | | | | "ACIPCInterfaceProtocol" = "iso" + | | | | "ACIPCInterfaceUnit" = 0x5 + | | | | "ACIPCInterfaceTransport" = "skywalk" + | | | | } + | | | | + | | | +-o AppleConvergedIPCSkywalkInterface + | | | | { + | | | | } + | | | | + | | | +-o IOSkywalkKernelPipeBSDClient + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | "IOProviderClass" = "IOSkywalkInterface" + | | | "IOClass" = "IOSkywalkKernelPipeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOResourceMatch" = "IOBSD" + | | | "IOSkywalkNexusUUID" = "26099CDC-92D7-4CE4-A4FA-41DA08B6C6C2" + | | | } + | | | + | | +-o apcie@80000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "lane-cfg" = <00000000> + | | | | "bus-range" = <0000000008000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <20000000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = <9b030000a4030000ad030000b6030000> + | | | | "#ports" = <04000000> + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "apcie-cio3pll-tunables" = <00000000040000000b0a000000000000010a0000000000002400000004000000000c00000000000000080000000000002800000004000000000f000000000000000b0000000000003800000004000000100000000000000000000000000000004c00000004000000ff000000000000009700000000000000e40000000400000000000e00000000000000020000000000fc00000004000000ffffff0000000000b4400b0000000000> + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <6e000000780000007900000084000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "apcie-phy-tunables" = <0c8000000400000000fc0f0000000000000001000000000010800000040000000000f03f000000000000000400000000> + | | | | "IODeviceMemory" = (({"address"=0x580000000,"length"=0x10000000}),({"address"=0x591000000,"length"=0x4000}),({"address"=0x59e000000,"length"=0x1c000}),({"address"=0x59e040000,"length"=0x40000}),({"address"=0x59c000000,"length"=0x8000}),({"address"=0x59e08a200,"length"=0x4000}),({"address"=0x59e088000,"length"=0x4000}),({"address"=0x594008000,"length"=0x8000}),({"address"=0x59401c000,"length"=0x1000}),({"address"=0x59e00c000,"length"=0x4000}),({"address"=0x594004000,"length"=0x4000}),({"address"=0x595008000,"length"=0x8000}),({"$ + | | | | "ranges" = <00000043000000a005000000000000a005000000000000200000000000000002000000c000000000000000c0050000000000004000000000> + | | | | "AAPL,phandle" = <44000000> + | | | | "power-gates" = <6e000000780000007900000084000000> + | | | | "name" = <617063696500> + | | | | "function-debug_gpio" = <700000004f4950470e00000001010000> + | | | | "apcie-axi2af-tunables" = <0000000004000000030200000000000001020000000000000c00000004000000ffff0f000000000000680100000000001000000004000000ffff0f000000000000b40000000000003400000004000000ffffffff00000000ffff0000000000003800000004000000ffffffff00000000ffff00000000000008010000040000003300ffff0000000031001000000000000c01000004000000ffff0f000000000000680100000000001001000004000000ffff0f000000000000b40000000000000006000004000000ff03f1c300000000010001c000000000000c000004000000ffffff0100000000ffffff0100000000480d000004000000ff07ff0700$ + | | | | "device_type" = <70636900> + | | | | "compatible" = <61706369652c743831323200> + | | | | "apcie-phy-ip-auspma-tunables" = <00a00000040000000f000000000000000a0000000000000008a00000040000000f000000000000000a000000000000000ca00000040000000f000000000000000a0000000000000010a00000040000000f000000000000000a0000000000000014a00000040000000f000000000000000a0000000000000038a0000004000000ffff000000000000710200000000000040a0000004000000000800000000000000000000000000004ca0000004000000ff3f000000000000ff0b00000000000050a00000040000000100000000000000010000000000000068a00000040000000700000000000000010000000000000070a0000004000000e03$ + | | | | "IOReportLegendPublic" = Yes + | | | | "apcie-phy-ip-pll-tunables" = <2800000004000000ffffff000000000000088000000000006c00000004000000ffffffff000000004c0000000000000080000000040000000100000000000000010000000000000094000000040000000100000000000000010000000000000004120000040000007c000000000000004400000000000000001000000400000000003f000000000000002300000000002c10000004000000fcffff030000000044444500000000001c500000040000000400000000000000000000000000000080500000040000000000c003000000000000400100000000885000000400000000000f000000000000000600000000008c500000040000000000c0$ + | | | | "reg" = <00000080050000000000001000000000000000910500000000400000000000000000009e0500000000c00100000000000000049e0500000000000400000000000000009c05000000008000000000000000a2089e0500000000400000000000000080089e0500000000400000000000000080009405000000008000000000000000c0019405000000001000000000000000c0009e050000000040000000000000004000940500000000400000000000000080009505000000008000000000000000c001950500000000100000000000000000019e050000000040000000000000004000950500000000400000000000000080009605000000008000000000000000c001960500$ + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "apcie-pcieclkgen-tunables" = <0000000004000000e0030000000000002002000000000000> + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (<9b030000>,,,) + | | | | } + | | | | + | | | +-o AppleT8122PCIe + | | | | { + | | | | "IOClass" = "AppleT8122PCIe" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent00000044" = <> + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleEmbeddedPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apcie,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"PCIe Port 0 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disa$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x102,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apcie,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIe" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIe" + | | | | } + | | | | + | | | +-o pci-bridge0@0 + | | | | { + | | | | "#msi-vectors" = <08000000> + | | | | "IOInterruptControllers" = ("apcie-0") + | | | | "built-in" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIePort is not serializable" + | | | | "pci-aspm-default" = 0x2 + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "function-perst" = <700000004f495047bb00000000000000> + | | | | "t-refclk-to-perst" = <64000000> + | | | | "function-dart_release_sid" = <480000006c655253> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "manual-enable-s2r" = <> + | | | | "default-apcie-options" = <0100f080> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_request_sid" = <4800000071655253> + | | | | "IOPCIExpressLinkCapabilities" = 0x737814 + | | | | "#size-cells" = <02000000> + | | | | "pci-max-payload-size" = <00000000> + | | | | "function-dart_force_active" = <4800000074636146> + | | | | "ranges" = <00000082000000c00000000000000082000000c0000000000000100200000000000000c20000000000000000000000c2000000000000000000000000000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000a408000004000000ffff0000000000002020000000000000> + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | "maximum-link-speed" = <02000000> + | | | | "IODTPersist" = 0x0 + | | | | "class-code" = <00040600> + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIResourced" = Yes + | | | | "function-clkreq" = <700000004f495047b700000002000000> + | | | | "name" = <7063692d6272696467653000> + | | | | "IOInterruptSpecifiers" = (<0000000000000000>) + | | | | "AAPL,phandle" = <45000000> + | | | | "msi-vector-base" = <00000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "compatible" = <61706369652d62726964676500> + | | | | "revision-id" = <01000000> + | | | | "device-id" = <0c100000> + | | | | "manual-enable" = <> + | | | | "apcie-port" = <00000000> + | | | | "pcie-rc-tunables" = <780000000400000000700000000000000000000000000000b00100000400000001000000000000000000000000000000800b00000400000000007f000000000000001f0000000000> + | | | | "pci-l1pm-control" = <0f19554000000000> + | | | | "link-timeout-workaround" = <01000000> + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "perst-to-config" = <64000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "pcie-rc-gen4-shadow-tunables" = <8801000004000000ff000000000000004400000000000000900800000400000000000003000000000000000100000000a8080000040000000fffff00000000000100000000000000> + | | | | "IOPCIConfigured" = Yes + | | | | "function-dart_self" = <48000000666c6553> + | | | | "pcidebug" = "0:0:0(1:1)" + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "enable-ptm" = <> + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | "pcie-rc-gen3-shadow-tunables" = <54010000040000000f0f0000000000000404000000000000900800000400000000000003000000000000000000000000a8080000040000000fffff00000000000100000000000000> + | | | | "vendor-id" = <6b100000> + | | | | "#address-cells" = <03000000> + | | | | } + | | | | + | | | +-o IOPP + | | | | { + | | | | "IOClass" = "ApplePCIEHostBridge" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOProviderClass" = "IOPCIDevice" + | | | | "IOPCIPowerOnProbe" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x0,"CurrentPowerState"=0x2,"CapabilityFlags"=0x102,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1388 + | | | | "IONameMatch" = "apcie-bridge" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "apcie-bridge" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIe" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIe" + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | } + | | | | + | | | +-o wlan@0 + | | | | | { + | | | | | "IOPCIDeviceMapperPageSize" = 0x4000 + | | | | | "IOPCIMSIMode" = Yes + | | | | | "assigned-addresses" = <10000182000000c200000000000001000000000018000182000000c1000000000000000100000000> + | | | | | "vendor-id" = + | | | | | "class-code" = <00800200> + | | | | | "subsystem-vendor-id" = <6b100000> + | | | | | "IOPCIExpressLinkCapabilities" = 0x46f812 + | | | | | "IOPCIDeviceMemoryMapBase" = 0x400203f + | | | | | "IOName" = "pci14e4,4434" + | | | | | "#size-cells" = <00000000> + | | | | | "cfg-io-timeout" = <000000000010000050c30000> + | | | | | "iommu-parent" = <49000000> + | | | | | "pcidebug" = "1:0:0" + | | | | | "IOChildIndex" = 0x1 + | | | | | "IOPCIExpressLinkStatus" = 0x3012 + | | | | | "IOPCIDeviceMemoryMapSize" = 0xdf81 + | | | | | "pci-aspm-default" = 0x2 + | | | | | "IOPCIExpressCapabilities" = 0x2 + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci")) + | | | | | "IOInterruptControllers" = ("ApplePCIEMSIController-apcie") + | | | | | "pci-max-latency" = <08100810> + | | | | | "built-in" = <00000000> + | | | | | "IOPCIResourced" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | | "IODeviceMemory" = (({"address"=0x5c2000000,"length"=0x10000}),({"address"=0x5c1000000,"length"=0x1000000})) + | | | | | "AAPL,phandle" = <46000000> + | | | | | "name" = <776c616e00> + | | | | | "subsystem-id" = <88430000> + | | | | | "mem-io-timeout" = + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "device_type" = <706369652d64657669636500> + | | | | | "compatible" = <776c616e2d706369652c62636d3433383700776c616e2d706369652c62636d00> + | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | | "reg" = <000001000000000000000000000000000000000010000102000000000000000000000100000000001800010200000000000000000000000100000000> + | | | | | "device-id" = <34440000> + | | | | | "#address-cells" = <01000000> + | | | | | "pci-l1pm-control" = <0f00554000000000> + | | | | | "revision-id" = <04000000> + | | | | | "IOInterruptSpecifiers" = (<3404000000000100>) + | | | | | } + | | | | | + | | | | +-o AppleBCMWLANBusInterfacePCIe + | | | | | { + | | | | | "pcie-throttle-firmware-load" = <01000000> + | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "built-in" = <00> + | | | | | "CoreCaptureIOServiceProperties" = {"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"} + | | | | | "wifi-calibration-msf" = <424c4f42a00000000414e46c010000000700000003000000a0000000af0f00001cdf442100000000030000004f1000001a0200001cdf4421000000000400000069120000b40100001cdf442100000000040000001d140000b40100001cdf44210000000004000000d1150000c40000001cdf4421000000000200000095160000040000005172757b00000000010000009916000064000000d5750a6a00000000ad0f08000000010019020b0002038203820396039603960396039603960396039602af02af02af02af02af02af02af02af02af02af02af02af038203820396039603960396039603960396039602af02af02af02af02af02a$ + | | | | | "wifi-antenna-sku-info" = <01000000000000005830000000000000> + | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | "IOMatchCategory" = "com.apple.wifibus.driver" + | | | | | "IOInterruptControllers" = ("IOInterruptController00000070") + | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | "wlan.tx.ring.size" = 0x400 + | | | | | "bcom.roam.profiles" = <0c00f6ffb5ff0200b80bb4000200b0041400bfff32001000b5ff80ff02005a001e0001001e000c00bfff3200000000000000000000000000000000000000000000001000b5ff80ff02005a001e0001001e000c0080ff0a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400b5ff80ff02005a001e000200b4000c00bfff320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400b5ff80ff02005a001e000200b4000c0080ff0a0000000000000000000000000000000000000000000000000000000000000$ + | | | | | "wlan.awdl.params" = <0000000000000000> + | | | | | "wlan.aoac-allowed" = <> + | | | | | "wlan.tethering.enabled" = <01000000> + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "wlan.pcie.DSState" = No + | | | | | "local-mac-address" = + | | | | | "wlan.listen.interval" = <0a000000> + | | | | | "IOClass" = "IOUserService" + | | | | | "wlan.enhancedlocale.enabled" = <00000000> + | | | | | "wlan.bss.6GHz-preference" = + | | | | | "wlan.nan.enabled" = <01000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleBCMWLANBusInterfacePCIe","IOReportChannels"=((0x507772537465,0xe00020002,"Power States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Power States"},{"IOReportGroupName"="AppleBCMWLANBusInterfacePCIe","IOReportChannels"=((0x44532054494d4520,0x400020003,"Deep Sleep Exit Delay")),"IOReportChannelInfo"={"IOReportChannelConfig"=<01000000000000000100000001000000050000000000000001000000010000000a000000000000000100000001000000190000000$ + | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | "IONameMatched" = "wlan" + | | | | | "bcom.btc.params" = <060000000f00000008000000c8af000009000000983a00000a000000204e0000> + | | | | | "wlan.autocountry.enabled" = <00000000> + | | | | | "wlan.bss.5GHz-preference" = + | | | | | "wlan.wnm.enabled" = <01000000> + | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","CoreCaptureIOServiceProperties"={"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"},"IOProviderClass"="IOPCIDevice","IOUserServerCDHash"="91259a60159ec999e19dc066ace8775$ + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "wlan.fast_enterprise_nw.enabled" = <01000000> + | | | | | "wlan.tx.submission-queue.size" = 0x400 + | | | | | "bcom.ps.realtime" = <0300c80000000100a00f0000> + | | | | | "function-sac" = <26010000434341533064636c3164636c> + | | | | | "bcom.wow.magic-packet" = No + | | | | | "bcom.roam.default" = <01005a001e00070002000000b5ff1400b5ff0a00> + | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | "wlan.vo.blockack" = Yes + | | | | | "wlan.dfsproxy.enabled" = <0000000000000000> + | | | | | "WiFiCapability" = {"awdl"=Yes,"ranging"=Yes} + | | | | | "wlan.ocl.enabled" = <> + | | | | | "wlan.dsa.power.boost" = <01000303> + | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | "name" = <776c616e00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "module-instance" = "dnieper" + | | | | | "AAPL,phandle" = <42000000> + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "IOInterruptSpecifiers" = (<1000000002000000>) + | | | | | "wlan.enterprise.params" = <07000000> + | | | | | "wlan.enhancedTrgDisc" = <00000000> + | | | | | "IOUserClass" = "AppleBCMWLANBusInterfacePCIe" + | | | | | "IOPCIMatch" = "0x000014e4&0x000044ff" + | | | | | "wlan.rx.ring.size" = 0x300 + | | | | | "ChipOTP" = <08418e8714e8314038c2fa0100000000f9c12d900000000000000000e831000000000040557f0180ff01e7f81f000000000000000000000000000000340000000000000034030000000000001e0000000000000008418e8714109f7687d20a9e336a802d1526273b8d8b23ac1f0000000000000000210000000000101300400088436b10af0c7e3b08ebc42b642a6429642ce73c00463c01860103021218059e148a200020001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | "OTP" = <151d08000000733d4330004d3d574c4d54206d3d342e37202020563d7500ff8009830c065145660001e80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | "wlan.6GHz.supported" = Yes + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "IOProviderClass" = "IOPCIDevice" + | | | | | "wlan.sdb.profile" = <> + | | | | | "wlan.mimo_ps.enabled" = <> + | | | | | "IONameMatch" = "wlan" + | | | | | "interrupts" = <1000000002000000> + | | | | | "amfm-managed-port-control" = <> + | | | | | "wlan.skywalk.packetpoolsize" = 0x2500 + | | | | | "bcom.roam.enterprise" = <01005a001e00070002000000baff0c00baff0c00> + | | | | | "IONetworkRootType" = "airport" + | | | | | "IOUserClasses" = ("AppleBCMWLANBusInterfacePCIe","AppleBCMWLANBusInterface","IOService","OSObject") + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | "interrupt-parent" = <70000000> + | | | | | "bcom.ps.default" = <0300c80000000100a00f0000> + | | | | | "device_type" = <776c616e00> + | | | | | "wlan.dfrts" = <> + | | | | | "vendor-id" = "USI" + | | | | | "wifi-module-sn" = <5145660001e8> + | | | | | "wlan.lpas-allowed" = <> + | | | | | "wlan.lowlatency" = <01000000> + | | | | | "wlan.voice_enterprise_nw.enabled" = <01000000> + | | | | | "wlan.llw.tx.ring.size" = 0x200 + | | | | | "HWIdentifiers" = {"V"="u","M"="WLMT","C"=0x1124,"s"="C0","P"="dnieper","m"="4.7"} + | | | | | "bcom.roam.enabledenhanced" = <01000000> + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x1 + | | | | | | "Name" = "DriverLogs" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x1000000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "wlan0" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DriverLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "AppleBCMWLAN_Logs" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0x5 + | | | | | | "Name" = "loggerstream" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "wlan0" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0x1 + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x46b80 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "IO80211Logger_Infrastructure" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "io80211" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "IO80211Logger_SoftAP" + | | | | | | "Id" = 0x3 + | | | | | | "LogIdentifier" = "io80211" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "Name" = "IO80211Logger_AirLink" + | | | | | "Id" = 0x4 + | | | | | "LogIdentifier" = "io80211" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x0 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x0 + | | | | | | "Name" = "DatapathEvents" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x2800000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe DatapathEvents"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "AppleBCMWLAN_Datapath" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <080000000000a5a5> + | | | | | | "Name" = "requestiotxpcie" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x7 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | | | "Name" = "rxpacketpcie" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x3 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <070000000000a5a5> + | | | | | | "Name" = "driverstatepcie" + | | | | | | "Id" = 0x3 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x2003 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <030000000000a5a5> + | | | | | | "Name" = "commander" + | | | | | | "Id" = 0x4 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x3 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <020000000000a5a5> + | | | | | | "Name" = "events" + | | | | | | "Id" = 0x5 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0x7f + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x1 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_Infrastructure" + | | | | | | "Id" = 0x6 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_Infrastructure" + | | | | | | "Id" = 0x7 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_Infrastructure" + | | | | | | "Id" = 0x8 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_Infrastructure" + | | | | | | "Id" = 0x9 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpf_tap_in_Infrastructure" + | | | | | | "Id" = 0xa + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_SoftAP" + | | | | | | "Id" = 0xb + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_SoftAP" + | | | | | | "Id" = 0xc + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_SoftAP" + | | | | | | "Id" = 0xd + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_SoftAP" + | | | | | | "Id" = 0xe + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpf_tap_in_SoftAP" + | | | | | | "Id" = 0xf + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0100000000007373> + | | | | | | "Name" = "networkfamilystack_AirLink" + | | | | | | "Id" = 0x10 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0200000000007373> + | | | | | | "Name" = "interfacequeue_AirLink" + | | | | | | "Id" = 0x11 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0300000000007373> + | | | | | | "Name" = "peerqueue_AirLink" + | | | | | | "Id" = 0x12 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0400000000007373> + | | | | | | "Name" = "peerinput_AirLink" + | | | | | | "Id" = 0x13 + | | | | | | "LogIdentifier" = "" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "StreamHeader" = <0500000000007373> + | | | | | "Name" = "bpf_tap_in_AirLink" + | | | | | "Id" = 0x14 + | | | | | "LogIdentifier" = "" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x96 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCDataPipe" + | | | | | | "LogType" = 0x2 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x2 + | | | | | | "Name" = "StateSnapshots" + | | | | | | "NumberOfFiles" = 0x0 + | | | | | | "FileSize" = 0x0 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x0 + | | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "0" + | | | | | | "PipeType" = 0x1 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x80 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe StateSnapshots"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "StateSnapshots" + | | | | | | } + | | | | | | + | | | | | +-o CCDataStream + | | | | | { + | | | | | "IOClass" = "CCDataStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "Name" = "FaultReporter" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCFaultReporter + | | | | | { + | | | | | "IOUserClass" = "CCIOService" + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "IOClass" = "CCFaultReporter" + | | | | | "Owners" = ["com.apple.iokit.IO80211Family","com.apple.driver.AppleBCMWLANCoreV3.0","com.apple.driver.AppleMultiFunctionManager","com.apple.driver.AppleOLYHAL"] + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x0 + | | | | | | "Name" = "FirmwareBusLogs" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x200000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0xccccc + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "brcm0" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x200000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe FirmwareBusLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "FirmwareBusLogs" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | | "Name" = "Firmware_Bus" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "CoreCaptureLevel" = 0x7f + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x96 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "CoreCaptureFlag" = 0x80000000000 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCDataPipe" + | | | | | | "LogType" = 0x2 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x6 + | | | | | | "Name" = "CrashTracerLogs" + | | | | | | "NumberOfFiles" = 0x0 + | | | | | | "FileSize" = 0x0 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x0 + | | | | | | "MinLogSizeToNotify" = 0x0 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "brcm0" + | | | | | | "PipeType" = 0x1 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x40 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe CrashTracerLogs"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "CrashTracerLog" + | | | | | | } + | | | | | | + | | | | | +-o CCDataStream + | | | | | { + | | | | | "IOClass" = "CCDataStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "Name" = "CrashTracerStream" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o AppleBCMWLANCore + | | | | | | { + | | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "built-in" = <00> + | | | | | | "CoreCaptureIOServiceProperties" = {"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"},"CoreCaptureLogPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"},"CoreCaptureCaptureProperties"={"IOClass"="CCCapture","IOUserClass"="CCCapture"},"IOClass"="CCIOService","IOUserClass"="CCIOService"} + | | | | | | "mDNSOffloadEnable: bdo" = <010004000000000000> + | | | | | | "TCP Keepalive Probe Response Packet" = <0000000000000000000000000000000045000028321f00004006e42dc0a800181139928aee5f1467af9cde4f4d5b610b501000000c370000> + | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | "DriverKit_IO80211AWDLLLW" = {"IOUserClass"="AppleBCMWLANLowLatencyInterface","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IO80211InterfaceRole"="LowLatency","IOClass"="IOUserNetworkWLAN","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IOInterfaceUnit"=0x0} + | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Debuggable - IO80211_io80211isDebuggable" = No + | | | | | | "mDNSOffloadDownloadConfig : bdo blob fragnum: 0" = <00003e00360000003600000030504a4200000000000101fe80000000000000187cb0dc3af7b80340ff0200000000000000000001fff7b8030000000000000000000000> + | | | | | | "Debuggable - isDebugCommandActionAllowed" = No + | | | | | | "FirmwareLoaded" = Yes + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "AppleBCMWLAN.BuildDate" = "Mar 9 2025 20:58:41" + | | | | | | "IOClass" = "IOUserService" + | | | | | | "AppleBCMWLAN.BuildType" = "release" + | | | | | | "ReporterProxy" = {"IOClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.kpi.iokit","IOProviderClass"="IOUserService","IOUserClass"="IO80211ReporterProxy"} + | | | | | | "DriverKitDriver" = Yes + | | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | | "DriverKit_IO80211NANIR" = {"IOUserClass"="AppleBCMWLANNANDataInterface","IO80211VirtualInterfaceRole"="WiFi-Aware Data","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","kOSBundleDextUniqueIdentifier"=,"IOUserClass"="AppleBCMWLANCore","IOUserServerName"="com.apple.bcmwlan","AppleBCMWLANUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="AppleBCMWLANUserClient"},"IOPersonalityPublisher"="com.apple.DriverKit-AppleBCMWLAN","CoreCaptureIOServiceProperties"={"CoreCaptureDataPipeUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUs$ + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "DriverKit_IO80211SoftAP" = {"IOUserClass"="AppleBCMWLANIO80211APSTAInterface","IO80211VirtualInterfaceRole"="SoftAP","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x1} + | | | | | | "wlan.hw.feature-flags" = 0x0 + | | | | | | "ModuleInfo" = "chip='s=C0' module='M=WLMT m=4.7 V=u' prod='17460' manuf='5348'" + | | | | | | "FirmwareLoader" = {"IOClass"="IOUserService","IOUserClass"="AppleBCMWLANCoreFirmwareLoader"} + | | | | | | "AppleBCMWLANUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="AppleBCMWLANUserClient"} + | | | | | | "TCP Keepalive Probe Packet" = <0000000000000000000000000000000045000028321f00004006e42dc0a800181139928aee5f1467af9cde4e4d5b610b501000000c380000> + | | | | | | "Last valid: pkt_filter_ports" = <00000100581b> + | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | "IO80211Family.BuildTag" = "IO80211_driverkit-1475.34" + | | | | | | "setTCPAliveOffloadEnable: tko" = <0300040000000000> + | | | | | | "PTM_Mode" = 0x1 + | | | | | | "TKO status data" = <0400110010ffffffffffffffffffffffffffffffff67000100180020000000000000000000000000004000000000000000000000> + | | | | | | "getTCPAliveOffloadWakeReason: tko" = <04000000> + | | | | | | "AppleBCMWLAN.BuildTag" = "AppleBCMWLANV3_driverkit-1425.41" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "Debuggable - IO80211_isDebugCommandActionAllowed" = No + | | | | | | "ChipSet" = 0x1124 + | | | | | | "IOUserClass" = "AppleBCMWLANCore" + | | | | | | "IO80211Family.BuildDate" = "Mar 9 2025 20:59:13" + | | | | | | "IO80211Family.BuildTagGit" = ""IO80211_driverkit-1475.34"" + | | | | | | "PlatformConfigFileName" = "dnieper-PlatformConfig.plist" + | | | | | | "TxCapVersion" = "Data Title: Dnieper_Final_WIFICap_2023Sep15_v3.0 Data Creation: 2025-02-27 17:22:35 " + | | | | | | "DriverKitDriverPlatformType" = "macOS" + | | | | | | "nicproxy_info_t Handoff data" = <84000000c484fc059519000000000103440000004400000044000000740000000000000063000000630000000000000008000000f8240100570000005700000000000000000000004300000043000000fe80000000000000187cb0dc3af7b803fe80000000000000340f33fffe4cc48efe80000000000000340f33fffe4cc48e404040c4> + | | | | | | "FirmwareVersion" = "wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c" + | | | | | | "WLAN configurePNONetworks 'pfn_add' data" = <0a000000626d7374755f776966690000000000000000000000000000000000000000000010b500000100000000000000ffffffff010000001600000035475f4d656761466f6e5f4652313030302d463437380000000000000000000010b500000100000000000000ffffffff0100000018000000325f34475f4d656761466f6e5f4652313030302d46343738000000000000000010b500000100000000000000ffffffff0100000006000000446f6d5f3632000000000000000000000000000000000000000000000000000010b500000100000000000000ffffffff010000000f00000054502d4c696e6b5f393$ + | | | | | | "LastSleepMode" = 0x0 + | | | | | | "Debuggable - isVerboseDebugLoggingAllowed" = Yes + | | | | | | "IODEXTMatchCount" = 0x1 + | | | | | | "IOPropertyMatch" = {"IOUserClass"="AppleBCMWLANBusInterfacePCIe"} + | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | "DriverKit_IO80211NANLLW" = {"IOUserClass"="AppleBCMWLANLowLatencyInterface","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IO80211InterfaceRole"="LowLatency","IOClass"="IOUserNetworkWLAN","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IOInterfaceUnit"=0x1} + | | | | | | "RequestedFiles" = ({"Firmware"="C-4388__s-C0/dnieper.trx","Platcfg"="C-4388__s-C0/dnieper-X0.pcfb","NVRAM"="C-4388__s-C0/P-dnieper-X0_M-WLMT_V-u__m-4.7.txt","TxCap"="C-4388__s-C0/dnieper-X0.txcb","Signature"="C-4388__s-C0/dnieper.sig","Regulatory"="C-4388__s-C0/dnieper-X0.clmb"}) + | | | | | | "IOFeatures" = 0x0 + | | | | | | "setTCPAliveOffloadConfig: tko" = <0200a80000005fee671400004fde9caf0b615b4d36003600c0a800181139928abc0f9a00f479a20f58b17118080045000028321f00004006e42dc0a800181139928aee5f1467af9cde4e4d5b610b501000000c380000bc0f9a00f479a20f58b17118080045000028321f00004006e42dc0a800181139928aee5f1467af9cde4f4d5b610b501000000c3700000000000000000000000000000000000000000000000000000000000000000000> + | | | | | | "calload_status" = "0" + | | | | | | "IOUserClasses" = ("AppleBCMWLANCore","IO80211Controller","IOService","OSObject") + | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | "WLAN mDNSOffload data" = <30504a4200000000000101fe80000000000000187cb0dc3af7b80340ff0200000000000000000001fff7b8030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | "setTCPKeepAliveParam: tko" = <010008008403050005000000> + | | | | | | "DriverKit_IO80211AWDL" = {"IOUserClass"="AppleBCMWLANProximityInterface","IO80211VirtualInterfaceRole"="AirLink","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "AppleBCMWLAN.BuildTagGit" = ""AppleBCMWLANV3_driverkit-1425.41"" + | | | | | | "Debuggable - isSoCRAMCaptureAllowed" = Yes + | | | | | | "vendor-id" = "USI" + | | | | | | "LastWakeReason" = 0x0 + | | | | | | "Debuggable - isDevFusedOrCSRInternal" = No + | | | | | | "CoreDriverInitializationTime" = 0xd7ed314b2 + | | | | | | "CLMVersion" = "API: 26.0 Data: Oly.Dnieper Compiler: 1.70.2 ClmImport: 1.69.0 Customization: v4 Final 240319 Creation: 2025-02-27 17:26:37 " + | | | | | | "ModuleDictionary" = {"ManufacturerID"=0x14e4,"ModuleInfo"="M=WLMT m=4.7 V=u","subsystem-vendor-id"=0x106b,"ChipInfo"="s=C0","ProductID"=0x4434} + | | | | | | "DriverKit_IO80211NAN" = {"IOUserClass"="AppleBCMWLANNANInterface","IO80211VirtualInterfaceRole"="WiFi-Aware Discovery","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOClass"="IOUserNetworkWLAN","IOProviderClass"="IOUserService","CFBundleIdentifierKernel"="com.apple.iokit.IOSkywalkFamily","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOInterfaceUnit"=0x0} + | | | | | | "initializeKeepAliveCapabilities: tko" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IO80211ReporterProxy + | | | | | | { + | | | | | | "IOUserClass" = "IO80211ReporterProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | "IOClass" = "IOUserService" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.kpi.iokit" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="Chip","IOReportChannels"=((0x2054436e42797465,0x100140001,"Tx Bytes"),(0x2052436e42797465,0x100140001,"Rx Bytes")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x900820000000000},"IOReportSubGroupName"="Bytes Transferred"},{"IOReportGroupName"="Chip","IOReportChannels"=((0x4d414344614d5241,0x180100001,"Rx Data Frame matching RA"),(0x4d41434d674d5241,0x180100001,"Rx Management Frame matching RA"),(0x4d414343744d5241,0x180100001,"Rx Control Frame matching RA"),(0x4d414344614$ + | | | | | | "IOUserClasses" = ("IO80211ReporterProxy","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x0 + | | | | | | | "Name" = "ControlPath" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x6666 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "ControlPath" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x10000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe ControlPath"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "ControlPath" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | | { + | | | | | | | "IOClass" = "CCLogStream" + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "StreamHeader" = <0600000000007373> + | | | | | | | "Name" = "IO80211 IOCTL Stream" + | | | | | | | "Id" = 0x1 + | | | | | | | "LogIdentifier" = "ioctl" + | | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | | "MiscInfo" = 0x96 + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "ConsoleFlag" = 0x0 + | | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0700000000007373> + | | | | | | "Name" = "IO80211 Event Stream" + | | | | | | "Id" = 0x2 + | | | | | | "LogIdentifier" = "event" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "LQMLogging" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x400000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "LQMLogging" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe LQMLogging"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "LQMLogging" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "LQMLogging" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "LQMLogging" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANSkywalkInterface + | | | | | | | { + | | | | | | | "kOSBundleDextUniqueIdentifier" = + | | | | | | | "IO80211RSNDone" = No + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IOUserServerPreserveUserspaceReboot" = Yes + | | | | | | | "IOUserServerOneProcess" = Yes + | | | | | | | "IO80211CountryCode" = "RU" + | | | | | | | "mDNS_Keepalive" = Yes + | | | | | | | "IO80211InterfaceRole" = "Infrastructure" + | | | | | | | "IOPropertyMatch" = {"IOUserClass"="AppleBCMWLANCore"} + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANSkywalkInterface","AppleBCMWLANInfraProtocol","IO80211InfraProtocol","IO80211InfraInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | | "IOUserServerCDHash" = "91259a60159ec999e19dc066ace8775d4a6a80e8" + | | | | | | | "built-in" = <00> + | | | | | | | "IOPersonalityPublisher" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | | | | | "mDNS_KEY" = "2009-07-30" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOMACAddress" = <3e2a6395d04a> + | | | | | | | "IO80211HardwareVersion" = "vendorid: 0x14e4 deviceid: 0x4434 radiorev: 0x3850dd chipnum: 0x4388 chiprev: 0x4 corerev: 0x57 boardid: 0x9c5 boardvendor: 0x14e4 boardrev: 0x1100 driverrev: 0x0 ucoderev: 0x5f6083e bus: 0x0 " + | | | | | | | "IOMatchedPersonality" = {"IOClass"="IOUserNetworkWLAN","CFBundleIdentifier"="com.apple.DriverKit-AppleBCMWLAN","IOProviderClass"="IOUserService","IOPropertyMatch"={"IOUserClass"="AppleBCMWLANCore"},"IO80211InterfaceRole"="Infrastructure","IO80211APIUserClientProperties"={"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"},"IOUserServerCDHash"="91259a60159ec999e19dc066ace8775d4a6a80e8","IOUserServerPreserveUserspaceReboot"=Yes,"IOUserServerName"="com.apple.bcmwlan","IOPersonalityPublisher"="com.appl$ + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOInterfaceName" = "en0" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IOUserClass" = "AppleBCMWLANSkywalkInterface" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IO80211DriverVersion" = "wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IO80211Locale" = "Unknown" + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkLegacyEthernet + | | | | | | | | { + | | | | | | | | "IOClass" = "IOSkywalkLegacyEthernet" + | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOProviderClass" = "IOSkywalkEthernetInterface" + | | | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x113,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOMACAddress" = + | | | | | | | | "IOLinkSpeed" = 0x0 + | | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | | "AVBControllerState" = 0x1 + | | | | | | | | "IOMatchCategory" = "IOSkywalkLegacyEthernet" + | | | | | | | | "IOSelectedMedium" = "" + | | | | | | | | "IOClassNameOverride" = "IO80211Controller" + | | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOFeatures" = 0x0 + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | | "IOLinkStatus" = 0x1 + | | | | | | | | "IOMaxPacketSize" = 0x5ee + | | | | | | | | "IOActiveMedium" = "" + | | | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o en0 + | | | | | | | | { + | | | | | | | | "IOLocation" = "" + | | | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | | | "BSD Name" = "en0" + | | | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | | "IOInterfaceFlags" = 0x822 + | | | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | | | "IOInterfaceState" = 0x3 + | | | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x0,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | | | "IOInterfaceExtraFlags" = 0x0 + | | | | | | | | "IOPrimaryInterface" = Yes + | | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | | | "IOBuiltin" = Yes + | | | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IONetworkStack + | | | | | | | | { + | | | | | | | | "IOProbeScore" = 0x0 + | | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | | | "IOClass" = "IONetworkStack" + | | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOProviderClass" = "IOResources" + | | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | | } + | | | | | | | | + | | | | | | | +-o IONetworkStackUserClient + | | | | | | | { + | | | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "035EE168-357F-4B1B-A12E-33751294E9DE" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User RX Submission Queue","IOReportChannels"=((0x534b725300000000,0x180000001,"Enabled"),(0x534b725300000001,0x180000001,"Capacity"),(0x534b725300000002,0x180000001,"Buffer Size"),(0x534b725300000003,0x180000001,"Queue State"),(0x534b725300000004,0x180000001,"Packet Count"),(0x534b725300000005,0x180000001,"Dequeued Packets"),(0x534b725300000006,0x180000001,"Returned Packets"),(0x534b725300000007,0x180000001,"Dequeue Count"),(0x534b725300000008,0x180000001,"Dequeue Errors$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 3187, wifivelocityd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_Infrastructure_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_Infrastructure_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_Infrastructure_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_Infrastructure_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANIO80211APSTAInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "BSD Name" = "ap1" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOMACAddress" = <1aa3ef2c6a58> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IO80211VirtualInterfaceRole" = "SoftAP" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANIO80211APSTAInterface","IO80211SapProtocol","IO80211VirtualInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "ap1" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x1 + | | | | | | | "IOInterfaceNamePrefix" = "ap" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANIO80211APSTAInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "B8014DA0-295D-45C2-99F9-BF0CEFEAFFE8" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000400,0x180000001,"Enabled"),(0x534b744300000401,0x180000001,"Capacity"),(0x534b744300000402,0x180000001,"Buffer Size"),(0x534b744300000403,0x180000001,"Queue State"),(0x534b744300000404,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F ap1, QSet ID 0xd11d0000, Queue ID 4"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b74530000$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_SoftAP_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_SoftAP_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_SoftAP_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_SoftAP_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANProximityInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "IO80211APIUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="IO80211APIUserClient"} + | | | | | | | "IOMACAddress" = <160de0b359f9> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "IO80211VirtualInterfaceRole" = "AirLink" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANProximityInterface","IO80211AWDLProtocol","IO80211VirtualInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "awdl0" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOInterfaceNamePrefix" = "awdl" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANProximityInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | | { + | | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | | "IOSkywalkNexusUUID" = "2FA198BF-F272-4340-AF2D-98C997B6C88C" + | | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000400,0x180000001,"Enabled"),(0x534b744300000401,0x180000001,"Capacity"),(0x534b744300000402,0x180000001,"Buffer Size"),(0x534b744300000403,0x180000001,"Queue State"),(0x534b744300000404,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F awdl0, QSet ID 0x43c30000, Queue ID 4"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b745300$ + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | | { + | | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | | "IOUserClientCreator" = "pid 484, airportd" + | | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | | } + | | | | | | | + | | | | | | +-o IO80211APIUserClient + | | | | | | { + | | | | | | "IOUserClass" = "IO80211APIUserClient" + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "IOClass" = "IOUserUserClient" + | | | | | | "IOUserClientCreator" = "pid 18766, wifip2pd" + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "IOUserClasses" = ("IO80211APIUserClient","IOUserClient","IOService","OSObject") + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x1 + | | | | | | | "Name" = "Interface_AirLink_0" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0x200000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x20000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_AirLink_0"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "Interface_AirLink_0" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "Name" = "Interface_AirLink_0" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x0 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | | { + | | | | | | | "IOClass" = "CCLogPipe" + | | | | | | | "LogType" = 0x0 + | | | | | | | "IOUserClass" = "CCIOService" + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | | "CompressionDisabled" = 0x0 + | | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | | "IOReportLegendPublic" = Yes + | | | | | | | "LogDataType" = 0x0 + | | | | | | | "Name" = "IO80211P2PPeerManager" + | | | | | | | "NumberOfFiles" = 0x2 + | | | | | | | "FileSize" = 0xa00000 + | | | | | | | "LogPolicy" = 0x0 + | | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | | "MinLogSizeToNotify" = 0x6666 + | | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | | "LogIdentifier" = "" + | | | | | | | "PipeType" = 0x0 + | | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "PipeSize" = 0x10000 + | | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe IO80211P2PPeerManager"}) + | | | | | | | "FileOptions" = 0x0 + | | | | | | | "DirectoryName" = "WiFi" + | | | | | | | "Filename" = "io80211Family" + | | | | | | | } + | | | | | | | + | | | | | | +-o CCLogStream + | | | | | | { + | | | | | | "IOClass" = "CCLogStream" + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "StreamHeader" = <0500000000007373> + | | | | | | "Name" = "bpfIO80211AWDL" + | | | | | | "Id" = 0x1 + | | | | | | "LogIdentifier" = "IO80211P2P" + | | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | | "MiscInfo" = 0x96 + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "ConsoleFlag" = 0x0 + | | | | | | "CoreCaptureFlag" = 0x0 + | | | | | | "CCIOServiceObjType" = 0x138b + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | } + | | | | | | + | | | | | +-o AppleBCMWLANLowLatencyInterface + | | | | | | | { + | | | | | | | "IOClass" = "IOUserNetworkWLAN" + | | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | | "IOProviderClass" = "IOUserService" + | | | | | | | "IO80211InterfaceRole" = "LowLatency" + | | | | | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.networking" + | | | | | | | "mDNS_Keepalive" = Yes + | | | | | | | "IOMACAddress" = <160de0b359f9> + | | | | | | | "IOInterfaceType" = 0x6 + | | | | | | | "built-in" = <00> + | | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | | "mDNS_KEY" = "2009-07-30" + | | | | | | | "IOUserClasses" = ("AppleBCMWLANLowLatencyInterface","AppleBCMWLANSkywalkInterface","AppleBCMWLANInfraProtocol","IO80211InfraProtocol","IO80211InfraInterface","IO80211SkywalkInterface","IOUserNetworkWLAN","IOUserNetworkEthernet","IOService","OSObject") + | | | | | | | "IOInterfaceName" = "llw0" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | | "IOInterfaceUnit" = 0x0 + | | | | | | | "IOInterfaceNamePrefix" = "llw" + | | | | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | | | | "IOUserClass" = "AppleBCMWLANLowLatencyInterface" + | | | | | | | } + | | | | | | | + | | | | | | +-o IOSkywalkNetworkBSDClient + | | | | | | { + | | | | | | "IOClass" = "IOSkywalkNetworkBSDClient" + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | "IOProviderClass" = "IOSkywalkNetworkInterface" + | | | | | | "IOSkywalkNexusUUID" = "F8B3A6E3-D383-42A7-B43A-FEA3AB995CA0" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="User TX Completion Queue","IOReportChannels"=((0x534b744300000100,0x180000001,"Enabled"),(0x534b744300000101,0x180000001,"Capacity"),(0x534b744300000102,0x180000001,"Buffer Size"),(0x534b744300000103,0x180000001,"Queue State"),(0x534b744300000104,0x180000001,"Packet Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="I/F llw0, QSet ID 0x94fb0000, Queue ID 1"},{"IOReportGroupName"="User TX Submission Queue","IOReportChannels"=((0x534b7453000$ + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSkywalkFamily" + | | | | | | } + | | | | | | + | | | | | +-o CCPipe + | | | | | | { + | | | | | | "IOClass" = "CCLogPipe" + | | | | | | "LogType" = 0x0 + | | | | | | "IOUserClass" = "CCIOService" + | | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | | "CompressionDisabled" = 0x0 + | | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | | "Owner" = "com.apple.iokit.IO80211Family" + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "LogDataType" = 0x1 + | | | | | | "Name" = "Interface_LowLatency_0" + | | | | | | "NumberOfFiles" = 0x2 + | | | | | | "FileSize" = 0x200000 + | | | | | | "LogPolicy" = 0x0 + | | | | | | "NotifyThreshold" = 0x3e8 + | | | | | | "MinLogSizeToNotify" = 0x10000 + | | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | | "CCIOServiceObjType" = 0x138a + | | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | | "PipeType" = 0x0 + | | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | | "PipeSize" = 0x20000 + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe Interface_LowLatency_0"}) + | | | | | | "FileOptions" = 0x0 + | | | | | | "DirectoryName" = "WiFi" + | | | | | | "Filename" = "Interface_LowLatency_0" + | | | | | | } + | | | | | | + | | | | | +-o CCLogStream + | | | | | { + | | | | | "IOClass" = "CCLogStream" + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "CoreCaptureLevel" = 0xffffffffffffffff + | | | | | "Name" = "Interface_LowLatency_0" + | | | | | "Id" = 0x1 + | | | | | "LogIdentifier" = "InterfaceLogs" + | | | | | "ConsoleFlag" = 0x0 + | | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | | "MiscInfo" = 0x0 + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureFlag" = 0x0 + | | | | | "CCIOServiceObjType" = 0x138b + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "IOUserClass" = "CCIOService" + | | | | | } + | | | | | + | | | | +-o CCPipe + | | | | | { + | | | | | "IOClass" = "CCLogPipe" + | | | | | "LogType" = 0x0 + | | | | | "IOUserClass" = "CCIOService" + | | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | | "CompressionDisabled" = 0x0 + | | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | | "Owner" = "com.apple.driver.AppleBCMWLANCoreV3.0" + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LogDataType" = 0x0 + | | | | | "Name" = "FirmwareEcounterLogs" + | | | | | "NumberOfFiles" = 0x2 + | | | | | "FileSize" = 0x200000 + | | | | | "LogPolicy" = 0x0 + | | | | | "NotifyThreshold" = 0x3e8 + | | | | | "MinLogSizeToNotify" = 0x3333 + | | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | | "CCIOServiceObjType" = 0x138a + | | | | | "LogIdentifier" = "brcm0" + | | | | | "PipeType" = 0x0 + | | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | | "PipeSize" = 0x8000 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="CoreCapture","IOReportChannels"=((0x434350204c202020,0x180100001," Log Calls"),(0x434350204c4d4442,0x180100001," Log Messages Dropped Short Of Buffer"),(0x434350204c435220,0x180100001," Capture Requests")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Pipe FirmwareEcounterLogs"}) + | | | | | "FileOptions" = 0x0 + | | | | | "DirectoryName" = "WiFi" + | | | | | "Filename" = "FirmwareEcounterLogs" + | | | | | } + | | | | | + | | | | +-o CCLogStream + | | | | { + | | | | "IOClass" = "CCLogStream" + | | | | "CoreCaptureLogPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCLogPipeUserClient"} + | | | | "CFBundleIdentifier" = "com.apple.DriverKit-AppleBCMWLAN" + | | | | "StreamHeader" = <0d0000000000a5a5> + | | | | "Name" = "FirmwareEcounterLogs" + | | | | "Id" = 0x1 + | | | | "LogIdentifier" = "" + | | | | "CoreCaptureLevel" = 0x7f + | | | | "ConsoleLevel" = 0xffffffffffffffff + | | | | "MiscInfo" = 0x96 + | | | | "IOUserServerName" = "com.apple.bcmwlan" + | | | | "ConsoleFlag" = 0x0 + | | | | "CoreCaptureFlag" = 0x80000000000 + | | | | "CCIOServiceObjType" = 0x138b + | | | | "IOUserClasses" = ("CCIOService","IOService","OSObject") + | | | | "CoreCaptureDataPipeUserClientProperties" = {"IOClass"="IOUserUserClient","IOUserClass"="CCDataPipeUserClient"} + | | | | "CoreCaptureCaptureProperties" = {"IOClass"="CCCapture","IOUserClass"="CCCapture"} + | | | | "IOUserClass" = "CCIOService" + | | | | } + | | | | + | | | +-o bluetooth-pcie@0,1 + | | | | { + | | | | "IOPCIDeviceMapperPageSize" = 0x4000 + | | | | "assigned-addresses" = <10010182000001c200000000008000000000000018010182000000c0000000000000000100000000> + | | | | "vendor-id" = + | | | | "class-code" = <00800200> + | | | | "subsystem-vendor-id" = <6b100000> + | | | | "IOPCIExpressLinkCapabilities" = 0x46d812 + | | | | "IOPCIDeviceMemoryMapBase" = 0x400203f + | | | | "IOName" = "pci14e4,5f72" + | | | | "#size-cells" = <00000000> + | | | | "IOPCIPMCSState" = 0x4008 + | | | | "cfg-io-timeout" = <000000000010000050c30000> + | | | | "iommu-parent" = <4a000000> + | | | | "pcidebug" = "1:0:1" + | | | | "IOChildIndex" = 0x2 + | | | | "IOPCIExpressLinkStatus" = 0x3012 + | | | | "IOPCIDeviceMemoryMapSize" = 0xdf81 + | | | | "pci-aspm-default" = 0x2 + | | | | "IOPCIExpressCapabilities" = 0x2 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci")) + | | | | "IOInterruptControllers" = ("ApplePCIEMSIController-apcie") + | | | | "pci-max-latency" = <08100810> + | | | | "built-in" = <00000000> + | | | | "IOPCIResourced" = Yes + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x102,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3,"DevicePowerState"=0x0,"ChildrenPowerState"=0x2,"DriverPowerState"=0x0,"CurrentPowerState"=0x2} + | | | | "IODeviceMemory" = (({"address"=0x5c2010000,"length"=0x8000}),({"address"=0x5c0000000,"length"=0x1000000})) + | | | | "AAPL,phandle" = <47000000> + | | | | "name" = <626c7565746f6f74682d7063696500> + | | | | "subsystem-id" = <88430000> + | | | | "mem-io-timeout" = + | | | | "device_type" = <706369652d64657669636500> + | | | | "compatible" = <776c616e2d706369652c62636d3433383700776c616e2d706369652c62636d00> + | | | | "IOPMResetPowerStateOnWake" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <000101000000000000000000000000000000000010010102000000000000000000800000000000001801010200000000000000000000000100000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)"))$ + | | | | "device-id" = <725f0000> + | | | | "#address-cells" = <01000000> + | | | | "revision-id" = <04000000> + | | | | "IOInterruptSpecifiers" = (<3304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o AppleConvergedPCI + | | | { + | | | "IOClass" = "AppleConvergedPCI" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleConvergedPCI" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8002,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IOPCITunnelCompatible" = Yes + | | | "IOProbeScore" = 0x3e8 + | | | "IOPCIMatch" = "0x5fa014e4 0x5f6914e4 0x5f3114e4 0x5f7114e4 0x5f7214e4 0x5f8314e4" + | | | "port_auto_on" = {"ios"=No,"macos"=Yes} + | | | "IOMatchCategory" = "AppleConvergedPCI" + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleConvergedPCI" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleConvergedPCI" + | | | "IOPMResetPowerStateOnWake" = Yes + | | | "IOPCIUseDeviceMapper" = Yes + | | | } + | | | + | | +-o dart-apcie0@94000000 + | | | | { + | | | | "dart-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<9c030000>) + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <48000000> + | | | | "IODeviceMemory" = (({"address"=0x594000000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61706369653000> + | | | | "interrupt-parent" = <69000000> + | | | | "vm-offset" = <00000000000000000000000800000000> + | | | | "sid" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <9c030000> + | | | | "manual-availability" = <01000000> + | | | | "vm-base" = <0000100000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000002c02000004000000000000070000000000000004000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <03000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000094050000000040000000000000> + | | | | "vm-size" = <0000e03f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <48000000> + | | | | "IOFunctionParent00000048" = <> + | | | | } + | | | | + | | | +-o mapper-apcie0-wlan + | | | | | { + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "name" = <6d61707065722d6170636965302d776c616e00> + | | | | | "AAPL,phandle" = <49000000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <49000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-apcie0-bt + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <02000000> + | | | | "name" = <6d61707065722d6170636965302d627400> + | | | | "AAPL,phandle" = <4a000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <4a000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o acio-cpu0@1108000 + | | | | { + | | | | "compatible" = <696f702c6d78777261702d6163696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <4b000000> + | | | | "interrupts" = + | | | | "clock-gates" = <9b010000> + | | | | "reg" = <0080100107000000004000000000000000001001070000000040000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6163696f2d63707500> + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "IODeviceMemory" = (({"address"=0x701108000,"length"=0x4000}),({"address"=0x701100000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <4143494f3000> + | | | | "name" = <6163696f2d6370753000> + | | | | } + | | | | + | | | +-o AppleMxWrapACIO + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleMxWrapACIO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iop,mxwrap-acio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,mxwrap-acio" + | | | | "role" = "ACIO0" + | | | | } + | | | | + | | | +-o iop-acio0-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <20000000> + | | | | "AAPL,phandle" = <4c000000> + | | | | "KDebugCoreID" = 0xb + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "reconfig-firmware" = <> + | | | | "watchdog-enable" = <> + | | | | "dont-power-on" = <> + | | | | "segment-ranges" = <00000001070000000000100000000000000010000000000000c00200010000000000080107000000000000100000000000000010000000000000020000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6163696f302d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ACIO0) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ACIO0","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ACIO0" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <4c000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | "IOMatchCategory" = "RTBuddyService" + | | | "IOClass" = "RTBuddyService" + | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | "IOProviderClass" = "RTBuddy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | "IOMatchedAtBoot" = Yes + | | | "role" = "ACIO0" + | | | } + | | | + | | +-o apciec0@30000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "bus-range" = <0000000080000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <00020000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "atc-apcie-fabric-tunables" = <04000000040000003f003f000000000030003000000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f8000000000000004000000000000001800000004000000ff0300000000000080030000000000001c000000040000000100000000000000010000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000020000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000200000000000000038000000040000001f8000$ + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <020200008e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "acio-parent" = <52000000> + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "atc-apcie-debug-tunables" = <001000000400000001000000000000000000000000000000> + | | | | "ranges" = <00000043000000000800000000000000080000000000000002000000000000020000100000000000000010000a0000000000f03f00000000000000420000004000000000000000400a0000000000004000000000> + | | | | "AAPL,phandle" = <4d000000> + | | | | "atc-apcie-rc-tunables" = <780000000400000000700000000000000000000000000000180700000400000000c007000000000000000000000000001408000004000000ffffffff0000000060f0000000000000bc0800000400000001000000000000000000000000000000> + | | | | "power-gates" = <020200008e010000> + | | | | "name" = <6170636965633000> + | | | | "IODeviceMemory" = (({"address"=0x730000000,"length"=0x10000000}),({"address"=0x720000000,"length"=0x4000}),({"address"=0x721000000,"length"=0x8000}),({"address"=0x720004000,"length"=0x4000}),({"address"=0x720200000,"length"=0x4000}),({"address"=0x721010000,"length"=0x4000}),({"address"=0x72100c000,"length"=0x4000})) + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000> + | | | | "device_type" = <7063692d6300> + | | | | "compatible" = <6170636965632c743831323200> + | | | | "port-type" = <02000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <00000030070000000000001000000000000000200700000000400000000000000000002107000000008000000000000000400020070000000040000000000000000020200700000000400000000000000000012107000000004000000000000000c00021070000000040000000000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | } + | | | | + | | | +-o AppleT8122PCIeC + | | | | { + | | | | "IOClass" = "AppleT8122PCIeC" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleTunneledPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apciec,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"apciec0 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disable $ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOFunctionParent0000004D" = <> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apciec,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | | } + | | | | + | | | +-o pcic0-bridge@0 + | | | | { + | | | | "IOPCIExpressLinkCapabilities" = 0x733901 + | | | | "vendor-id" = <6b100000> + | | | | "class-code" = <00040600> + | | | | "#msi-vectors" = <20000000> + | | | | "vm-force" = <0000000000010000> + | | | | "#size-cells" = <02000000> + | | | | "pci-ignore-linkstatus" = <> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_force_active" = <4f00000074636146> + | | | | "device-protection-granularity" = + | | | | "msi-for-bridges" = <> + | | | | "function-dart_self" = <4f000000666c6553> + | | | | "IOPCIHPType" = 0x31 + | | | | "pcidebug" = "0:0:0(1:128)" + | | | | "Thunderbolt Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/acio0@1F00000/AppleThunderboltHALType5/AppleThunderboltNHIType5/IOThunderboltControllerType5/IOThunderboltPort@7/IOThunderboltSwitchType5/IOThunderboltPort@3" + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "IODTPersist" = 0x0 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIConfigured" = Yes + | | | | "IOInterruptControllers" = ("APCIECMSIController-apciec0") + | | | | "Thunderbolt Entry ID" = 0x10000087d + | | | | "IOPCIResourced" = Yes + | | | | "AAPL,slot-name" = <536c6f742d300000> + | | | | "function-dart_release_sid" = <4f0000006c655253> + | | | | "AAPL,phandle" = <4e000000> + | | | | "ranges" = <0000008200001000000000000000008200001000000000000000f03f00000000000000c20000004000000000000000c2000000400000000000000040000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "name" = <70636963302d62726964676500> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3} + | | | | "default-apcie-options" = <01001080> + | | | | "IOPCITunnelLinkChange" = <> + | | | | "compatible" = <70636965632d62726964676500> + | | | | "marvel-wa-viddids" = <4b1b20914b1b23914b1b28914b1b30914b1b72914b1b7a914b1b82914b1ba0914b1b20924b1b3092281c22017b1992230311450603114206340030084b1b35924b1b7191> + | | | | "PCI-Thunderbolt" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIeCPort is not serializable" + | | | | "IOReportLegendPublic" = Yes + | | | | "function-dart_request_sid" = <4f00000071655253> + | | | | "msi-vector-base" = <20000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "IOPCIOnline" = Yes + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device-id" = <15100000> + | | | | "#address-cells" = <03000000> + | | | | "revision-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<5304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o IOPP + | | | { + | | | "IOClass" = "ApplePCIECHostBridge" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPCIPowerOnProbe" = No + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | "IOProbeScore" = 0x1388 + | | | "IONameMatch" = "pciec-bridge" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pciec-bridge" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | } + | | | + | | +-o dart-apciec0@21008000 + | | | | { + | | | | "dart-id" = <01000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <4f000000> + | | | | "IODeviceMemory" = (({"address"=0x721008000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "noncompliant-dead-mappings" = <> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6170636965633000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "interrupts" = + | | | | "flush-by-dva" = <00000000> + | | | | "page-size" = <00400000> + | | | | "manual-availability" = <01000000> + | | | | "dead-mappings" = <00000000000000000040000000000000> + | | | | "vm-base" = <0000008000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <40000000> + | | | | "relaxed-rw-protections" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00800021070000000040000000000000> + | | | | "vm-size" = <0000f07f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent0000004F" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = Yes + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <4f000000> + | | | | } + | | | | + | | | +-o mapper-apciec0-piodma@F + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <0f000000> + | | | | "name" = <6d61707065722d617063696563302d70696f646d6100> + | | | | "AAPL,phandle" = <50000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <50000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apciec0-piodma@22000000 + | | | { + | | | "IOInterruptSpecifiers" = () + | | | "piodma-fifo-size" = <10000000> + | | | "AAPL,phandle" = <51000000> + | | | "IODeviceMemory" = (({"address"=0x722000000,"length"=0x4000}),({"address"=0x722004000,"length"=0x4000}),({"address"=0x722008000,"length"=0x4000}),({"address"=0x720008000,"length"=0x4000})) + | | | "piodma-max-segment-size" = <00000000> + | | | "piodma-max-transfer-size" = <80000000> + | | | "iommu-parent" = <50000000> + | | | "atc-apcie-apiodma-tunables" = <0000000004000000020000000000000000000000000000001000000004000000ffffff0700000000f2ff0000000000001400000004000000ffffff0700000000f2ff0000000000001800000004000000ffffff0700000000f3ff0000000000001c00000004000000ffff010000000000f0ff0000000000002000000004000000ffff010000000000f0ff000000000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "name" = <617063696563302d70696f646d6100> + | | | "interrupt-parent" = <69000000> + | | | "piodma-byte-alignment" = <04000000> + | | | "compatible" = <70636965632d6170696f646d612c743831303300> + | | | "interrupts" = + | | | "piodma-base-address" = <00000030070000000000000008000000000000000a000000> + | | | "atc-apcie-oe-fabric-tunables" = <0400000004000000070007000000000004000400000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f80000000000000040000000000000018000000040000001f80000000000000040000000000000020000000040000001f800000000000000400000000000000> + | | | "piodma-num-address-bits" = <24000000> + | | | "device_type" = <617063696563302d70696f646d6100> + | | | "piodma-id" = <00000000> + | | | "reg" = <00000022070000000040000000000000004000220700000000400000000000000080002207000000004000000000000000800020070000000040000000000000> + | | | } + | | | + | | +-o acio0@1F00000 + | | | | { + | | | | "hi_up_tx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "sat-dtf-trace-ring-index" = <02000000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "hi_dn_merge_fabric_tunables" = <0400000004000000070000000000000004000000000000000800000004000000078000000000000001000000000000001000000004000000070000000000000004000000000000001400000004000000078000000000000001000000000000001c00000004000000070000000000000004000000000000002000000004000000078000000000000001000000000000002800000004000000070000000000000004000000000000002c000000040000000780000000000000010000000000000034000000040000000700000000000000040000000000000038000000040000000780000000000000010000000000000040000000040000000700$ + | | | | "atc-phy-parent" = + | | | | "link-speed-default" = <080c0c00> + | | | | "interrupt-parent" = <69000000> + | | | | "port-defaults" = <16b0802b16b0802b0840802b0840802b0948802b0948802b0b58802b0948802b> + | | | | "function-dart_force_active" = <5300000074636146> + | | | | "interrupts" = + | | | | "top_tunables" = <0000000004000000f0ff00000000000010300000000000002c0000000400000004000000000000000000000000000000ac00000004000000ffffffff00000000e75ce75c00000000> + | | | | "iommu-parent" = <54000000> + | | | | "link-width-default" = <01010200> + | | | | "lbw_fabric_tunables" = <04000000040000000700070000000000040004000000000008000000040000001f80000000000000040000000000000010000000040000000700070000000000040004000000000018000000040000001f80000000000000040000000000000020000000040000000700070000000000040004000000000028000000040000001f80000000000000040000000000000030000000040000001f80000000000000040000000000000038000000040000001f80000000000000040000000000000040000000040000001f80000000000000040000000000000048000000040000001f80000000000000040000000000000050000000040000001f8000000000$ + | | | | "spec-version" = <20000000> + | | | | "clock-gates" = <7d00000085000000860000009b010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "IOPCITunnelControllerID" = 0x1000002b5 + | | | | "IODeviceMemory" = (({"address"=0x701f00000,"length"=0x100000}),({"address"=0x701db0000,"length"=0x30004}),({"address"=0x701ac0000,"length"=0x4000}),({"address"=0x701ac4000,"length"=0x4000}),({"address"=0x701ac8000,"length"=0x4000}),({"address"=0x701e44000,"length"=0x4000})) + | | | | "AAPL,phandle" = <52000000> + | | | | "name" = <6163696f3000> + | | | | "power-gates" = <7d0000008500000086000000> + | | | | "hbw_fabric_tunables" = <04000000040000007f007f0000000000400040000000000008000000040000001f80000000000000040000000000000010000000040000007f00000000000000400000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000024000000040000001f8000000000000004000000000000002c000000040000001f00000000000000100000000000000030000000040000001f8000000000000004000000000000003800000004000000ffffffff0000000001010101000000003c00000004000000ffff00000000000001010000000000004000000004000000010000000000$ + | | | | "sat-dtf-enabled-ring-mask" = + | | | | "portmap" = <0100000001000000010110000101200001010e0001010e000200000002010e00> + | | | | "hi_up_tx_data_fabric_tunables" = <04000000040000003f00000000000000300000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000003f00000000000000300000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000030000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000300000000000000038000000040000001f80000000000000040000000000000040000000040000003f$ + | | | | "hi_up_wr_fabric_tunables" = <04000000040000001f000000000000001f0000000000000008000000040000001f80000000000000040000000000000010000000040000001f000000000000001f0000000000000014000000040000001f8000000000000004000000000000001c000000040000001f000000000000001f0000000000000020000000040000001f80000000000000040000000000000028000000040000001f000000000000001f000000000000002c000000040000001f80000000000000040000000000000034000000040000001f000000000000001f0000000000000038000000040000001f80000000000000040000000000000040000000040000001f00000$ + | | | | "device_type" = <6163696f00> + | | | | "compatible" = <6163696f00> + | | | | "revision" = <00000000> + | | | | "port-type" = <02000000> + | | | | "function-pcie_port_control" = <4d000000437472504e000000> + | | | | "fw_int_ctl_management_tunables" = <00000000040000000f00001000000000020000100000000004000000040000000f00001000000000020000100000000008000000040000000f0000100000000002000010000000000c000000040000000f00001000000000020000100000000010000000040000000f00001000000000020000100000000014000000040000000f00001000000000020000100000000018000000040000000f0000100000000002000010000000001c000000040000000f00001000000000020000100000000020000000040000000f00001000000000020000100000000024000000040000000f00001000000000020000100000000028000000040000000$ + | | | | "gpio-lstx" = <1b00000000010000414f5000> + | | | | "rid" = <00000000> + | | | | "vid-did" = + | | | | "reg" = <0000f0010700000000001000000000000000db010700000004000300000000000000ac010700000000400000000000000040ac010700000000400000000000000080ac010700000000400000000000000040e401070000000040000000000000> + | | | | "hi_up_merge_fabric_tunables" = <04000000040000001f00000000000000100000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000020000000040000001f80000000000000040000000000000028000000040000007f0000000000000060000000000000002c000000040000001f800000000000000400000000000000340000000400000007800000000000000100000000000000> + | | | | "hi_up_rx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "port-number" = <01000000> + | | | | "thunderbolt-drom" = + | | | | "pcie_adapter_regs_tunables" = <081000000400000006000000000000000600000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,,,,,,,,,,,,,,,,,,) + | | | | "acio-cpu" = <4c000000> + | | | | } + | | | | + | | | +-o AppleThunderboltHALType5 + | | | | | { + | | | | | "IOClass" = "AppleThunderboltHALType5" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOPlatformWakeAction" = 0x30d40 + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IOPlatformSleepAction" = 0x30d40 + | | | | | "IOProbeScore" = 0x1000 + | | | | | "IONameMatch" = "acio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"PowerOverrideOn"=Yes} + | | | | | "Statistics" = {"Total Rx Packets"="0","Total Tx Packets"="0"} + | | | | | "IONameMatched" = "acio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "Hardware Owner" = "AppleThunderboltNHIType5" + | | | | | } + | | | | | + | | | | +-o AppleThunderboltNHIType5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOThunderboltControllerType5 + | | | | | { + | | | | | "User Client Version" = 0x6 + | | | | | "Generation" = 0x1 + | | | | | "IOCFPlugInTypes" = {"3A0F596B-5D02-41D3-99D4-E27D4F218A54"="IOThunderboltFamily.kext/Contents/PlugIns/IOThunderboltLib.plugin"} + | | | | | "JTAG Device Count" = 0x0 + | | | | | "IOUserClientClass" = "IOThunderboltFamilyUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | "Using Bus Power" = No + | | | | | "TMU Mode" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOThunderboltLocalNode + | | | | | | { + | | | | | | "XDP" = <0144585518000000646e65766469726f01000076270a0000646e65766469726f030000741a0000006976656464696563010000760a0000006976656464696563030000741d000000697665647672656301000076000100806878616d6469706f010000760f0000006c7070416e49206500002e633163614d32312c35000000000000000000000000000000000000000000000000> + | | | | | | "Domain UUID" = "D214685E-BAA0-4E8F-B983-439FF57ACBF7" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPService + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchCategory" = "AppleThunderboltIPService" + | | | | | | "IOClass" = "AppleThunderboltIPService" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOProviderClass" = "IOThunderboltLocalNode" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Protocol Settings" = 0xffffffff80000003 + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPPort + | | | | | | { + | | | | | | "IOLocation" = "1" + | | | | | | "IOModel" = "ThunderboltIP" + | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x23,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOMACAddress" = <36bf29b665c0> + | | | | | | "IOLinkSpeed" = 0x12a05f2000 + | | | | | | "AVBControllerState" = 0x1 + | | | | | | "IOVendor" = "Apple" + | | | | | | "IOSelectedMedium" = "00100020" + | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | "IOFeatures" = 0x38 + | | | | | | "IORevision" = "4.0.3" + | | | | | | "IOLinkStatus" = 0x1 + | | | | | | "IOMaxPacketSize" = 0x10000 + | | | | | | "IOActiveMedium" = "00100020" + | | | | | | "IOMediumDictionary" = {"00100020"={"Index"=0x0,"Type"=0x100020,"Flags"=0x0,"Speed"=0x12a05f2000}} + | | | | | | } + | | | | | | + | | | | | +-o en1 + | | | | | | { + | | | | | | "IOLocation" = "1" + | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | "BSD Name" = "en1" + | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | "IOInterfaceType" = 0x6 + | | | | | | "IOInterfaceFlags" = 0x8963 + | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | "IOInterfaceState" = 0x3 + | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | | "IOPrimaryInterface" = No + | | | | | | "IOControllerEnabled" = Yes + | | | | | | "IOInterfaceUnit" = 0x1 + | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | "IOBuiltin" = Yes + | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStack + | | | | | | { + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | "IOClass" = "IONetworkStack" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOProviderClass" = "IOResources" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStackUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o IOThunderboltPort@7 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "Thunderbolt Native Host Interface Adapter" + | | | | | | "Port Number" = 0x7 + | | | | | | "Max In Hop ID" = 0xb + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0xb + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0x2 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltSwitchType5 + | | | | | | { + | | | | | | "Device Vendor ID" = 0x1 + | | | | | | "Device Vendor Name" = "Apple Inc." + | | | | | | "Device Model Name" = "iOS" + | | | | | | "IOPowerManagement" = {"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | | "UID" = 0x5ac49d5982d9970 + | | | | | | "Upstream Port Number" = 0x7 + | | | | | | "Max Port Number" = 0x8 + | | | | | | "DROM" = + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "ROM Version" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Route String" = 0x0 + | | | | | | "Device Model ID" = 0xf + | | | | | | "Device Model Revision" = 0x1 + | | | | | | "EEPROM Revision" = 0x0 + | | | | | | "Router ID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Depth" = 0x0 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@1 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x1 + | | | | | | "TRM Identification Restricted" = 0x0 + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "TRM Transport Restricted" = 0x0 + | | | | | | "TRM Hash Set" = No + | | | | | | "Port Number" = 0x1 + | | | | | | "TRM Transport Active 0" = No + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "TRM Transport Active 1" = No + | | | | | | "Socket ID" = "1" + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x2 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "TRM Policy" = "Root" + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@2 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x2 + | | | | | | "Socket ID" = "1" + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Port Number" = 0x2 + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x1 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x0 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@3 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "PCIe Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x3 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "PCI Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/apciec0@30000000/AppleT8122PCIeC/pcic0-bridge@0" + | | | | | | | "PCI Entry ID" = 0x100000888 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x100101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltPCIDownAdapterType5 + | | | | | | { + | | | | | | "IOProbeScore" = 0x2000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltPCIDownAdapterType5" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "Adapter Type" = 0x100101 + | | | | | | "Device ID" = "0x00002000&0x0000ff00" + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@4 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "USB Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x4 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x200101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltUSBDownAdapter + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltUSBDownAdapter" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "Adapter Type" = 0x200101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@5 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x5 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@6 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x6 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@8 + | | | | | { + | | | | | "Max Credits" = 0xae + | | | | | "Description" = "Port is inactive" + | | | | | "Port Number" = 0x8 + | | | | | "Max In Hop ID" = 0x9 + | | | | | "Hop Table" = () + | | | | | "Thunderbolt Version" = 0x20 + | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | "Device ID" = 0x2008 + | | | | | "Revision ID" = 0x0 + | | | | | "Max Out Hop ID" = 0x9 + | | | | | "Vendor ID" = 0x5ac + | | | | | "Adapter Type" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleThunderboltDPConnectionManager + | | | | { + | | | | "Registered Ports" = ["<0:0x00000000:0x00000005>","<0:0x00000000:0x00000006>"] + | | | | "Registered DP Out Adapters" = [] + | | | | "DP Out Adapters Waiting for Evaluation" = () + | | | | "Waiting for all DP adapters to register" = No + | | | | "Registered DP In Adapters" = ["<0:0x00000000:0x00000005>","<0:0x00000000:0x00000006>"] + | | | | "Evaluating Connections" = No + | | | | } + | | | | + | | | +-o IOTBTTunnelClientInterfaceManager + | | | { + | | | } + | | | + | | +-o dart-acio0@1A80000 + | | | | { + | | | | "sat-dtf-sid" = <02000000000000000f000000> + | | | | "dart-id" = <02000000> + | | | | "bypass-15" = <> + | | | | "sat-dtf-remap" = <01000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "sat-dtf-bypass-2" = <> + | | | | "AAPL,phandle" = <53000000> + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x701a80000,"length"=0x4000})) + | | | | "remap" = <0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "dart-options" = <07000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6163696f3000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "manual-availability" = <01000000> + | | | | "sat-dtf-apf-bypass-2" = <> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <1c000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000a801070000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "IOFunctionParent00000053" = <> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <53000000> + | | | | } + | | | | + | | | +-o mapper-acio0@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6163696f3000> + | | | | "AAPL,phandle" = <54000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <54000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o atc0-dpxbar@304C000 + | | | | { + | | | | "device_type" = <4141504c2c6174632d64707862617200> + | | | | "reg" = <00c00403070000000040000000000000> + | | | | "IODeviceMemory" = (({"address"=0x70304c000,"length"=0x4000})) + | | | | "name" = <617463302d64707862617200> + | | | | "AAPL,phandle" = <55000000> + | | | | "compatible" = <6174632d6470786261722c743630327800> + | | | | } + | | | | + | | | +-o AppleT602XATCDPXBAR(atc0-dpxbar) + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleT602XATCDPXBAR" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("atc-dpxbar,t602x") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-dpxbar,t602x" + | | | } + | | | + | | +-o atc0-dpphy + | | | | { + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "compatible" = <6174632d64707068792c743831323200> + | | | | "transport-tunneled" = <00000000> + | | | | "dp-switch-dfp-port" = <00000000> + | | | | "AAPL,phandle" = <56000000> + | | | | "device_type" = <4141504c2c6174632d647070687900> + | | | | "transport-type" = <05000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "port-number" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "name" = <617463302d647070687900> + | | | | } + | | | | + | | | +-o AppleATCDPAltModePort(atc0-dpphy) + | | | { + | | | "IOClass" = "AppleATCDPAltModePort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPropertyMatch" = {"port-type"=<02000000>} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpphy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"QueueOp"="Dequeue","Action"="Plug"},"EventRaw"=<200000001800000057317605fb0300000100000003000000>,"EventTime"=0x3fb05763157,"EventClass"="SetAction"},{"EventPayload"={"QueueOp"="Done","Action"="Plug"},"EventRaw"=<200000001800000032327605fb0300000200000003000000>,"EventTime"=0x3fb05763232,"EventClass"="SetAction"},{"EventPayload"={"State"="SinkActive","Value"=0x1},"EventRaw"=<2100000018000000e90f8b05fb0300000100000001000000>,"EventTime"=0x3fb058b0fe9,"EventClass"="SetState"},{"EventPayload"={"Ma$ + | | | "IONameMatched" = "AAPL,atc-dpphy" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc0-dpin0@1E50000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "dp-switch-dfp-port" = <01000000> + | | | | "transport-index" = <00000000> + | | | | "AAPL,phandle" = <57000000> + | | | | "IODeviceMemory" = (({"address"=0x701e50000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "acio-parent" = <52000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463302d6470696e3000> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = + | | | | "port-number" = <01000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0000e501070000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc0-dpin0) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000003d076306000000000300000001000000>,"EventTime"=0x663073d,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc0-dpin1@1E58000 + | | | | { + | | | | "IOInterruptSpecifiers" = () + | | | | "dp-switch-dfp-port" = <02000000> + | | | | "transport-index" = <01000000> + | | | | "AAPL,phandle" = <58000000> + | | | | "IODeviceMemory" = (({"address"=0x701e58000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <55000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <00000000> + | | | | "acio-parent" = <52000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463302d6470696e3100> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = + | | | | "port-number" = <01000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0080e501070000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc0-dpin1) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000f1176406000000000300000001000000>,"EventTime"=0x66417f1,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o acio-cpu1@1108000 + | | | | { + | | | | "compatible" = <696f702c6d78777261702d6163696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <59000000> + | | | | "interrupts" = <300400002f0400003204000031040000> + | | | | "clock-gates" = <9c010000> + | | | | "reg" = <008010010b0000000040000000000000000010010b0000000040000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6163696f2d63707500> + | | | | "IOInterruptSpecifiers" = (<30040000>,<2f040000>,<32040000>,<31040000>) + | | | | "IODeviceMemory" = (({"address"=0xb01108000,"length"=0x4000}),({"address"=0xb01100000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <4143494f3100> + | | | | "name" = <6163696f2d6370753100> + | | | | } + | | | | + | | | +-o AppleMxWrapACIO + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleMxWrapACIO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-MXWrap-v1" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iop,mxwrap-acio" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,mxwrap-acio" + | | | | "role" = "ACIO1" + | | | | } + | | | | + | | | +-o iop-acio1-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <20000000> + | | | | "AAPL,phandle" = <5a000000> + | | | | "KDebugCoreID" = 0xd + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "reconfig-firmware" = <> + | | | | "watchdog-enable" = <> + | | | | "dont-power-on" = <> + | | | | "segment-ranges" = <000000010b0000000000100000000000000010000000000000c0020001000000000008010b000000000000100000000000000010000000000000020000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6163696f312d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ACIO1) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ACIO1","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ACIO1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <5a000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | "IOMatchCategory" = "RTBuddyService" + | | | "IOClass" = "RTBuddyService" + | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | "IOProviderClass" = "RTBuddy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | "IOMatchedAtBoot" = Yes + | | | "role" = "ACIO1" + | | | } + | | | + | | +-o apciec1@30000000 + | | | | { + | | | | "pci-aer-correctable" = <00000000> + | | | | "bus-range" = <0000000080000000> + | | | | "dev-range" = <00000000ff000000> + | | | | "msi-parent-controller" = <69000000> + | | | | "#size-cells" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "#msi-vectors" = <00020000> + | | | | "msi-address" = <00f0ffff00000000> + | | | | "interrupts" = + | | | | "link-state-power" = <00000000000000000000000000000000> + | | | | "atc-apcie-fabric-tunables" = <04000000040000003f003f000000000030003000000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f8000000000000004000000000000001800000004000000ff0300000000000080030000000000001c000000040000000100000000000000010000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000020000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000200000000000000038000000040000001f8000$ + | | | | "msi-vector-offset" = <33040000> + | | | | "IODTPersist" = 0x0 + | | | | "clock-gates" = <030200008f010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOPCIConfigured" = Yes + | | | | "acio-parent" = <60000000> + | | | | "pci-aer-uncorrectable" = <01000000> + | | | | "atc-apcie-debug-tunables" = <001000000400000001000000000000000000000000000000> + | | | | "ranges" = <00000043000000000c000000000000000c0000000000000002000000000000020000100000000000000010000e0000000000f03f00000000000000420000004000000000000000400e0000000000004000000000> + | | | | "AAPL,phandle" = <5b000000> + | | | | "atc-apcie-rc-tunables" = <780000000400000000700000000000000000000000000000180700000400000000c007000000000000000000000000001408000004000000ffffffff0000000060f0000000000000bc0800000400000001000000000000000000000000000000> + | | | | "power-gates" = <030200008f010000> + | | | | "name" = <6170636965633100> + | | | | "IODeviceMemory" = (({"address"=0xb30000000,"length"=0x10000000}),({"address"=0xb20000000,"length"=0x4000}),({"address"=0xb21000000,"length"=0x8000}),({"address"=0xb20004000,"length"=0x4000}),({"address"=0xb20200000,"length"=0x4000}),({"address"=0xb21010000,"length"=0x4000}),({"address"=0xb2100c000,"length"=0x4000})) + | | | | "apcie-config-tunables" = <400100000400000001000000000000000100000000000000> + | | | | "device_type" = <7063692d6300> + | | | | "compatible" = <6170636965632c743831323200> + | | | | "port-type" = <02000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000000300b0000000000001000000000000000200b0000000040000000000000000000210b0000000080000000000000004000200b0000000040000000000000000020200b0000000040000000000000000001210b000000004000000000000000c000210b0000000040000000000000> + | | | | "port-number" = <02000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "#address-cells" = <03000000> + | | | | "IOInterruptSpecifiers" = (,,,<00040000>,<01040000>) + | | | | } + | | | | + | | | +-o AppleT8122PCIeC + | | | | { + | | | | "IOClass" = "AppleT8122PCIeC" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent0000005B" = <> + | | | | "IOPlatformActiveAction" = 0x5dc + | | | | "IOUserClientClass" = "AppleTunneledPCIEUserClient" + | | | | "IOPlatformQuiesceAction" = 0xfa0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "apciec,t8122" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleEmbeddedPCIE","IOReportChannels"=((0x4c537450727430,0x400020002,"apciec1 Link States")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Link States"},{"IOReportChannels"=((0x4576303050727430,0x180000001,"Port 0 Enable Request "),(0x4576303150727430,0x180000001,"Port 0 Enable Complete "),(0x4576303250727430,0x180000001,"Port 0 Disable Request "),(0x4576303350727430,0x180000001,"Port 0 Disable $ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3} + | | | | "IONameMatched" = "apciec,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | | } + | | | | + | | | +-o pcic1-bridge@0 + | | | | { + | | | | "IOPCIExpressLinkCapabilities" = 0x733901 + | | | | "vendor-id" = <6b100000> + | | | | "class-code" = <00040600> + | | | | "#msi-vectors" = <20000000> + | | | | "vm-force" = <0000000000010000> + | | | | "#size-cells" = <02000000> + | | | | "pci-ignore-linkstatus" = <> + | | | | "IOName" = "pci-bridge" + | | | | "function-dart_force_active" = <5d00000074636146> + | | | | "device-protection-granularity" = + | | | | "msi-for-bridges" = <> + | | | | "function-dart_self" = <5d000000666c6553> + | | | | "IOPCIHPType" = 0x31 + | | | | "pcidebug" = "0:0:0(1:128)" + | | | | "Thunderbolt Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/acio1@1F00000/AppleThunderboltHALType5/AppleThunderboltNHIType5/IOThunderboltControllerType5/IOThunderboltPort@7/IOThunderboltSwitchType5/IOThunderboltPort@3" + | | | | "IOPCIExpressLinkStatus" = 0x1011 + | | | | "IOPCIExpressCapabilities" = 0x42 + | | | | "IODTPersist" = 0x0 + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.pci","com.apple.developer.driverkit.transport.pci.bridge")) + | | | | "IOPCIConfigured" = Yes + | | | | "IOInterruptControllers" = ("APCIECMSIController-apciec1") + | | | | "Thunderbolt Entry ID" = 0x100000841 + | | | | "IOPCIResourced" = Yes + | | | | "AAPL,slot-name" = <536c6f742d310000> + | | | | "function-dart_release_sid" = <5d0000006c655253> + | | | | "AAPL,phandle" = <5c000000> + | | | | "ranges" = <0000008200001000000000000000008200001000000000000000f03f00000000000000c20000004000000000000000c2000000400000000000000040000000000000008100000000000000000000008100000000000000000000000000000000> + | | | | "name" = <70636963312d62726964676500> + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"ChildProxyPowerState"=0x2,"MaxPowerState"=0x3} + | | | | "default-apcie-options" = <01001080> + | | | | "IOPCITunnelLinkChange" = <> + | | | | "compatible" = <70636965632d62726964676500> + | | | | "marvel-wa-viddids" = <4b1b20914b1b23914b1b28914b1b30914b1b72914b1b7a914b1b82914b1ba0914b1b20924b1b3092281c22017b1992230311450603114206340030084b1b35924b1b7191> + | | | | "PCI-Thunderbolt" = <> + | | | | "AppleEmbeddedPCIEPort" = "AppleT8122PCIeCPort is not serializable" + | | | | "IOReportLegendPublic" = Yes + | | | | "function-dart_request_sid" = <5d00000071655253> + | | | | "msi-vector-base" = <40000000> + | | | | "IOPCIDeviceDeviceTreeEntry" = "IOService is not serializable" + | | | | "reg" = <0000000000000000000000000000000000000000> + | | | | "IOPCIOnline" = Yes + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "device-id" = <15100000> + | | | | "#address-cells" = <03000000> + | | | | "revision-id" = <00000000> + | | | | "IOInterruptSpecifiers" = (<7304000000000100>) + | | | | "IOPCIMSIMode" = Yes + | | | | } + | | | | + | | | +-o IOPP + | | | { + | | | "IOClass" = "ApplePCIECHostBridge" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PCIeC" + | | | "IOProviderClass" = "IOPCIDevice" + | | | "IOPCIPowerOnProbe" = No + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | "IOProbeScore" = 0x1388 + | | | "IONameMatch" = "pciec-bridge" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pciec-bridge" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PCIeC" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PCIeC" + | | | } + | | | + | | +-o dart-apciec1@21008000 + | | | | { + | | | | "dart-id" = <03000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "protection-granularity" = <80000000> + | | | | "AAPL,phandle" = <5d000000> + | | | | "IODeviceMemory" = (({"address"=0xb21008000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <37000000> + | | | | "noncompliant-dead-mappings" = <> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6170636965633100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "interrupts" = + | | | | "flush-by-dva" = <00000000> + | | | | "page-size" = <00400000> + | | | | "manual-availability" = <01000000> + | | | | "dead-mappings" = <00000000000000000040000000000000> + | | | | "vm-base" = <0000008000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <40000000> + | | | | "relaxed-rw-protections" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008000210b0000000040000000000000> + | | | | "vm-size" = <0000f07f00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = Yes + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000005D" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <5d000000> + | | | | } + | | | | + | | | +-o mapper-apciec1-piodma@F + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <0f000000> + | | | | "name" = <6d61707065722d617063696563312d70696f646d6100> + | | | | "AAPL,phandle" = <5e000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <5e000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apciec1-piodma@22000000 + | | | { + | | | "IOInterruptSpecifiers" = () + | | | "piodma-fifo-size" = <10000000> + | | | "AAPL,phandle" = <5f000000> + | | | "IODeviceMemory" = (({"address"=0xb22000000,"length"=0x4000}),({"address"=0xb22004000,"length"=0x4000}),({"address"=0xb22008000,"length"=0x4000}),({"address"=0xb20008000,"length"=0x4000})) + | | | "piodma-max-segment-size" = <00000000> + | | | "piodma-max-transfer-size" = <80000000> + | | | "iommu-parent" = <5e000000> + | | | "atc-apcie-apiodma-tunables" = <0000000004000000020000000000000000000000000000001000000004000000ffffff0700000000f2ff0000000000001400000004000000ffffff0700000000f2ff0000000000001800000004000000ffffff0700000000f3ff0000000000001c00000004000000ffff010000000000f0ff0000000000002000000004000000ffff010000000000f0ff000000000000> + | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | "name" = <617063696563312d70696f646d6100> + | | | "interrupt-parent" = <69000000> + | | | "piodma-byte-alignment" = <04000000> + | | | "compatible" = <70636965632d6170696f646d612c743831303300> + | | | "interrupts" = + | | | "piodma-base-address" = <000000300b000000000000000c000000000000000e000000> + | | | "atc-apcie-oe-fabric-tunables" = <0400000004000000070007000000000004000400000000000800000004000000010000000000000001000000000000000c000000040000000100000000000000010000000000000010000000040000001f80000000000000040000000000000018000000040000001f80000000000000040000000000000020000000040000001f800000000000000400000000000000> + | | | "piodma-num-address-bits" = <24000000> + | | | "device_type" = <617063696563312d70696f646d6100> + | | | "piodma-id" = <01000000> + | | | "reg" = <000000220b0000000040000000000000004000220b0000000040000000000000008000220b0000000040000000000000008000200b0000000040000000000000> + | | | } + | | | + | | +-o acio1@1F00000 + | | | | { + | | | | "hi_up_tx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "sat-dtf-trace-ring-index" = <02000000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "hi_dn_merge_fabric_tunables" = <0400000004000000070000000000000004000000000000000800000004000000078000000000000001000000000000001000000004000000070000000000000004000000000000001400000004000000078000000000000001000000000000001c00000004000000070000000000000004000000000000002000000004000000078000000000000001000000000000002800000004000000070000000000000004000000000000002c000000040000000780000000000000010000000000000034000000040000000700000000000000040000000000000038000000040000000780000000000000010000000000000040000000040000000700$ + | | | | "atc-phy-parent" = + | | | | "link-speed-default" = <080c0c00> + | | | | "interrupt-parent" = <69000000> + | | | | "port-defaults" = <16b0802b16b0802b0840802b0840802b0948802b0948802b0b58802b> + | | | | "function-dart_force_active" = <6100000074636146> + | | | | "interrupts" = <1e0400001f0400002004000021040000220400002304000024040000250400002604000027040000280400002904000012040000130400001404000015040000160400001704000018040000190400001a0400001b0400001c0400001d040000> + | | | | "top_tunables" = <0000000004000000f0ff00000000000010300000000000002c0000000400000004000000000000000000000000000000ac00000004000000ffffffff00000000e75ce75c00000000> + | | | | "iommu-parent" = <62000000> + | | | | "link-width-default" = <01010200> + | | | | "lbw_fabric_tunables" = <04000000040000000700070000000000040004000000000008000000040000001f80000000000000040000000000000010000000040000000700070000000000040004000000000018000000040000001f80000000000000040000000000000020000000040000000700070000000000040004000000000028000000040000001f80000000000000040000000000000030000000040000001f80000000000000040000000000000038000000040000001f80000000000000040000000000000040000000040000001f80000000000000040000000000000048000000040000001f80000000000000040000000000000050000000040000001f8000000000$ + | | | | "spec-version" = <20000000> + | | | | "clock-gates" = <7f00000087000000880000009c010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "IOPCITunnelControllerID" = 0x1000002be + | | | | "IODeviceMemory" = (({"address"=0xb01f00000,"length"=0x100000}),({"address"=0xb01db0000,"length"=0x30004}),({"address"=0xb01ac0000,"length"=0x4000}),({"address"=0xb01ac4000,"length"=0x4000}),({"address"=0xb01ac8000,"length"=0x4000}),({"address"=0xb01e44000,"length"=0x4000})) + | | | | "AAPL,phandle" = <60000000> + | | | | "name" = <6163696f3100> + | | | | "power-gates" = <7f0000008700000088000000> + | | | | "hbw_fabric_tunables" = <04000000040000007f007f0000000000400040000000000008000000040000001f80000000000000040000000000000010000000040000007f00000000000000400000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000024000000040000001f8000000000000004000000000000002c000000040000001f00000000000000100000000000000030000000040000001f8000000000000004000000000000003800000004000000ffffffff0000000001010101000000003c00000004000000ffff00000000000001010000000000004000000004000000010000000000$ + | | | | "sat-dtf-enabled-ring-mask" = + | | | | "portmap" = <0100000001000000010110000101200001010e0001010e0002000000> + | | | | "hi_up_tx_data_fabric_tunables" = <04000000040000003f00000000000000300000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000003f00000000000000300000000000000020000000040000001f80000000000000040000000000000028000000040000003f0000000000000030000000000000002c000000040000001f80000000000000040000000000000034000000040000003f00000000000000300000000000000038000000040000001f80000000000000040000000000000040000000040000003f$ + | | | | "hi_up_wr_fabric_tunables" = <04000000040000001f000000000000001f0000000000000008000000040000001f80000000000000040000000000000010000000040000001f000000000000001f0000000000000014000000040000001f8000000000000004000000000000001c000000040000001f000000000000001f0000000000000020000000040000001f80000000000000040000000000000028000000040000001f000000000000001f000000000000002c000000040000001f80000000000000040000000000000034000000040000001f000000000000001f0000000000000038000000040000001f80000000000000040000000000000040000000040000001f00000$ + | | | | "device_type" = <6163696f00> + | | | | "compatible" = <6163696f00> + | | | | "revision" = <00000000> + | | | | "port-type" = <02000000> + | | | | "function-pcie_port_control" = <5b000000437472505c000000> + | | | | "fw_int_ctl_management_tunables" = <00000000040000000f00001000000000020000100000000004000000040000000f00001000000000020000100000000008000000040000000f0000100000000002000010000000000c000000040000000f00001000000000020000100000000010000000040000000f00001000000000020000100000000014000000040000000f00001000000000020000100000000018000000040000000f0000100000000002000010000000001c000000040000000f00001000000000020000100000000020000000040000000f00001000000000020000100000000024000000040000000f00001000000000020000100000000028000000040000000$ + | | | | "gpio-lstx" = <1d00000000010000414f5000> + | | | | "rid" = <01000000> + | | | | "vid-did" = + | | | | "reg" = <0000f0010b00000000001000000000000000db010b00000004000300000000000000ac010b00000000400000000000000040ac010b00000000400000000000000080ac010b00000000400000000000000040e4010b0000000040000000000000> + | | | | "hi_up_merge_fabric_tunables" = <04000000040000001f00000000000000100000000000000008000000040000001f80000000000000040000000000000010000000040000003f00000000000000300000000000000014000000040000001f8000000000000004000000000000001c000000040000001f00000000000000100000000000000020000000040000001f80000000000000040000000000000028000000040000007f0000000000000060000000000000002c000000040000001f800000000000000400000000000000340000000400000007800000000000000100000000000000> + | | | | "hi_up_rx_desc_fabric_tunables" = <04000000040000000f00000000000000080000000000000008000000040000001f80000000000000040000000000000010000000040000000f00000000000000080000000000000014000000040000001f8000000000000004000000000000001c000000040000000f00000000000000080000000000000020000000040000001f80000000000000040000000000000028000000040000000f0000000000000008000000000000002c000000040000001f80000000000000040000000000000034000000040000000f00000000000000080000000000000038000000040000001f80000000000000040000000000000040000000040000000f$ + | | | | "port-number" = <02000000> + | | | | "thunderbolt-drom" = + | | | | "pcie_adapter_regs_tunables" = <081000000400000006000000000000000600000000000000> + | | | | "IOInterruptSpecifiers" = (<1e040000>,<1f040000>,<20040000>,<21040000>,<22040000>,<23040000>,<24040000>,<25040000>,<26040000>,<27040000>,<28040000>,<29040000>,<12040000>,<13040000>,<14040000>,<15040000>,<16040000>,<17040000>,<18040000>,<19040000>,<1a040000>,<1b040000>,<1c040000>,<1d040000>) + | | | | "acio-cpu" = <5a000000> + | | | | } + | | | | + | | | +-o AppleThunderboltHALType5 + | | | | | { + | | | | | "IOClass" = "AppleThunderboltHALType5" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOPlatformWakeAction" = 0x30d40 + | | | | | "IOPCITunnelCompatible" = Yes + | | | | | "IOPlatformSleepAction" = 0x30d40 + | | | | | "IOProbeScore" = 0x1000 + | | | | | "IONameMatch" = "acio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x3,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"PowerOverrideOn"=Yes} + | | | | | "Statistics" = {"Total Rx Packets"="0","Total Tx Packets"="0"} + | | | | | "IONameMatched" = "acio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltNHI" + | | | | | "Hardware Owner" = "AppleThunderboltNHIType5" + | | | | | } + | | | | | + | | | | +-o AppleThunderboltNHIType5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOThunderboltControllerType5 + | | | | | { + | | | | | "User Client Version" = 0x6 + | | | | | "Generation" = 0x1 + | | | | | "IOCFPlugInTypes" = {"3A0F596B-5D02-41D3-99D4-E27D4F218A54"="IOThunderboltFamily.kext/Contents/PlugIns/IOThunderboltLib.plugin"} + | | | | | "JTAG Device Count" = 0x0 + | | | | | "IOUserClientClass" = "IOThunderboltFamilyUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | "Using Bus Power" = No + | | | | | "TMU Mode" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOThunderboltLocalNode + | | | | | | { + | | | | | | "XDP" = <0144585518000000646e65766469726f01000076270a0000646e65766469726f030000741a0000006976656464696563010000760a0000006976656464696563030000741d000000697665647672656301000076000100806878616d6469706f010000760f0000006c7070416e49206500002e633163614d32312c35000000000000000000000000000000000000000000000000> + | | | | | | "Domain UUID" = "27A83CA6-5E0B-459E-AE5C-6D9948028FA0" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPService + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchCategory" = "AppleThunderboltIPService" + | | | | | | "IOClass" = "AppleThunderboltIPService" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOProviderClass" = "IOThunderboltLocalNode" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltIP" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Protocol Settings" = 0xffffffff80000003 + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltIPPort + | | | | | | { + | | | | | | "IOLocation" = "2" + | | | | | | "IOModel" = "ThunderboltIP" + | | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x23,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOMACAddress" = <36bf29b665c4> + | | | | | | "IOLinkSpeed" = 0x12a05f2000 + | | | | | | "AVBControllerState" = 0x1 + | | | | | | "IOVendor" = "Apple" + | | | | | | "IOSelectedMedium" = "00100020" + | | | | | | "IOMinPacketSize" = 0x40 + | | | | | | "IOFeatures" = 0x38 + | | | | | | "IORevision" = "4.0.3" + | | | | | | "IOLinkStatus" = 0x1 + | | | | | | "IOMaxPacketSize" = 0x10000 + | | | | | | "IOActiveMedium" = "00100020" + | | | | | | "IOMediumDictionary" = {"00100020"={"Index"=0x0,"Type"=0x100020,"Flags"=0x0,"Speed"=0x12a05f2000}} + | | | | | | } + | | | | | | + | | | | | +-o en2 + | | | | | | { + | | | | | | "IOLocation" = "2" + | | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOLinkActiveCount" = 0x0 + | | | | | | "BSD Name" = "en2" + | | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | | "IOInterfaceType" = 0x6 + | | | | | | "IOInterfaceFlags" = 0x8963 + | | | | | | "IOMediaAddressLength" = 0x6 + | | | | | | "IOInterfaceState" = 0x3 + | | | | | | "IOMediaHeaderLength" = 0xe + | | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | | "IOPrimaryInterface" = No + | | | | | | "IOControllerEnabled" = Yes + | | | | | | "IOInterfaceUnit" = 0x2 + | | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | | "IOBuiltin" = Yes + | | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStack + | | | | | | { + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | | "IOClass" = "IONetworkStack" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOProviderClass" = "IOResources" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o IONetworkStackUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o IOThunderboltPort@7 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "Thunderbolt Native Host Interface Adapter" + | | | | | | "Port Number" = 0x7 + | | | | | | "Max In Hop ID" = 0xb + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0xb + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0x2 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltSwitchType5 + | | | | | | { + | | | | | | "Device Vendor ID" = 0x1 + | | | | | | "Device Vendor Name" = "Apple Inc." + | | | | | | "Device Model Name" = "iOS" + | | | | | | "IOPowerManagement" = {"DesiredPowerState"=0x2,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"DriverPowerState"=0x2} + | | | | | | "UID" = 0x5ac49d5982d9971 + | | | | | | "Upstream Port Number" = 0x7 + | | | | | | "Max Port Number" = 0x7 + | | | | | | "DROM" = + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "ROM Version" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Route String" = 0x0 + | | | | | | "Device Model ID" = 0xf + | | | | | | "Device Model Revision" = 0x1 + | | | | | | "EEPROM Revision" = 0x0 + | | | | | | "Router ID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Depth" = 0x0 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@1 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x1 + | | | | | | "TRM Identification Restricted" = 0x0 + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "TRM Transport Restricted" = 0x0 + | | | | | | "TRM Hash Set" = No + | | | | | | "Port Number" = 0x1 + | | | | | | "TRM Transport Active 0" = No + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "TRM Transport Active 1" = No + | | | | | | "Socket ID" = "2" + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x2 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "TRM Policy" = "Root" + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@2 + | | | | | | { + | | | | | | "Max In Hop ID" = 0x16 + | | | | | | "Supported Link Width" = 0x2 + | | | | | | "Max Credits" = 0xae + | | | | | | "Target Link Width" = 0x1 + | | | | | | "Current Link Width" = 0x1 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Lane" = 0x2 + | | | | | | "Socket ID" = "2" + | | | | | | "Max Out Hop ID" = 0x16 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Port Number" = 0x2 + | | | | | | "Target Link Speed" = 0xc + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Link Bandwidth" = 0x64 + | | | | | | "Dual-Link Port" = 0x1 + | | | | | | "Supported Link Speed" = 0xc + | | | | | | "Description" = "Thunderbolt Port" + | | | | | | "CLx State" = 0x0 + | | | | | | "Adapter Type" = 0x1 + | | | | | | "Hop Table" = () + | | | | | | "Dual-Link Port RID" = 0x1 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Device ID" = 0x2008 + | | | | | | "Current Link Speed" = 0x8 + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@3 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "PCIe Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x3 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "PCI Path" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/apciec1@30000000/AppleT8122PCIeC/pcic1-bridge@0" + | | | | | | | "PCI Entry ID" = 0x100000863 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x100101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltPCIDownAdapterType5 + | | | | | | { + | | | | | | "IOProbeScore" = 0x2000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltPCIDownAdapterType5" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "Adapter Type" = 0x100101 + | | | | | | "Device ID" = "0x00002000&0x0000ff00" + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltPCIDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@4 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "USB Adapter" + | | | | | | | "Port Affinity" = (0x1) + | | | | | | | "Port Number" = 0x4 + | | | | | | | "Max In Hop ID" = 0x8 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x8 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0x200101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltUSBDownAdapter + | | | | | | { + | | | | | | "IOProbeScore" = 0x1000 + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltUSBDownAdapter" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "Adapter Type" = 0x200101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltUSBDownAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@5 + | | | | | | | { + | | | | | | | "Max Credits" = 0xae + | | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | | "Port Number" = 0x5 + | | | | | | | "Max In Hop ID" = 0x9 + | | | | | | | "Hop Table" = () + | | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | | "Device ID" = 0x2008 + | | | | | | | "Revision ID" = 0x0 + | | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | | "Vendor ID" = 0x5ac + | | | | | | | "Adapter Type" = 0xe0101 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | | { + | | | | | | "IOProbeScore" = 0xb + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | | } + | | | | | | + | | | | | +-o IOThunderboltPort@6 + | | | | | | { + | | | | | | "Max Credits" = 0xae + | | | | | | "Description" = "DP or HDMI Adapter" + | | | | | | "Port Number" = 0x6 + | | | | | | "Max In Hop ID" = 0x9 + | | | | | | "Hop Table" = () + | | | | | | "Thunderbolt Version" = 0x20 + | | | | | | "Maximum Bandwidth Allocated" = 0x0 + | | | | | | "Required Bandwidth Allocated" = 0x0 + | | | | | | "Device ID" = 0x2008 + | | | | | | "Revision ID" = 0x0 + | | | | | | "Max Out Hop ID" = 0x9 + | | | | | | "Vendor ID" = 0x5ac + | | | | | | "Adapter Type" = 0xe0101 + | | | | | | } + | | | | | | + | | | | | +-o AppleThunderboltDPInAdapterOS + | | | | | { + | | | | | "IOProbeScore" = 0xb + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "IOProviderClass" = "IOThunderboltPort" + | | | | | "IOClass" = "AppleThunderboltDPInAdapterOS" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "Adapter Type" = 0xe0101 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleThunderboltDPInAdapter" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Cached Local DP Capabilities" = <00000000> + | | | | | } + | | | | | + | | | | +-o AppleThunderboltDPConnectionManager + | | | | { + | | | | "Registered Ports" = ["<1:0x00000000:0x00000006>","<1:0x00000000:0x00000005>"] + | | | | "Registered DP Out Adapters" = [] + | | | | "DP Out Adapters Waiting for Evaluation" = () + | | | | "Waiting for all DP adapters to register" = No + | | | | "Registered DP In Adapters" = ["<1:0x00000000:0x00000006>","<1:0x00000000:0x00000005>"] + | | | | "Evaluating Connections" = No + | | | | } + | | | | + | | | +-o IOTBTTunnelClientInterfaceManager + | | | { + | | | } + | | | + | | +-o dart-acio1@1A80000 + | | | | { + | | | | "sat-dtf-sid" = <02000000000000000f000000> + | | | | "dart-id" = <04000000> + | | | | "bypass-15" = <> + | | | | "sat-dtf-remap" = <01000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "sat-dtf-bypass-2" = <> + | | | | "AAPL,phandle" = <61000000> + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOInterruptSpecifiers" = (<2d040000>) + | | | | "IODeviceMemory" = (({"address"=0xb01a80000,"length"=0x4000})) + | | | | "remap" = <0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b000000> + | | | | "dart-options" = <07000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6163696f3100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <2d040000> + | | | | "manual-availability" = <01000000> + | | | | "sat-dtf-apf-bypass-2" = <> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <1c000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000a8010b0000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000061" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <61000000> + | | | | } + | | | | + | | | +-o mapper-acio1@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6163696f3100> + | | | | "AAPL,phandle" = <62000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <62000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o atc1-dpxbar@304C000 + | | | | { + | | | | "device_type" = <4141504c2c6174632d64707862617200> + | | | | "reg" = <00c004030b0000000040000000000000> + | | | | "IODeviceMemory" = (({"address"=0xb0304c000,"length"=0x4000})) + | | | | "name" = <617463312d64707862617200> + | | | | "AAPL,phandle" = <63000000> + | | | | "compatible" = <6174632d6470786261722c743630327800> + | | | | } + | | | | + | | | +-o AppleT602XATCDPXBAR(atc1-dpxbar) + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleT602XATCDPXBAR" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("atc-dpxbar,t602x") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-dpxbar,t602x" + | | | } + | | | + | | +-o atc1-dpphy + | | | | { + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "compatible" = <6174632d64707068792c743831323200> + | | | | "transport-tunneled" = <00000000> + | | | | "dp-switch-dfp-port" = <00000000> + | | | | "AAPL,phandle" = <64000000> + | | | | "device_type" = <4141504c2c6174632d647070687900> + | | | | "transport-type" = <05000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "port-number" = <02000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "name" = <617463312d647070687900> + | | | | } + | | | | + | | | +-o AppleATCDPAltModePort(atc1-dpphy) + | | | { + | | | "IOClass" = "AppleATCDPAltModePort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPropertyMatch" = {"port-type"=<02000000>} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpphy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000423f5d06000000000300000001000000>,"EventTime"=0x65d3f42,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpphy" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc1-dpin0@1E50000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<2a040000>) + | | | | "dp-switch-dfp-port" = <01000000> + | | | | "transport-index" = <00000000> + | | | | "AAPL,phandle" = <65000000> + | | | | "IODeviceMemory" = (({"address"=0xb01e50000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "acio-parent" = <60000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463312d6470696e3000> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = <2a040000> + | | | | "port-number" = <02000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0000e5010b0000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc1-dpin0) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000006a845e06000000000300000001000000>,"EventTime"=0x65e846a,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o atc1-dpin1@1E58000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<2b040000>) + | | | | "dp-switch-dfp-port" = <02000000> + | | | | "transport-index" = <01000000> + | | | | "AAPL,phandle" = <66000000> + | | | | "IODeviceMemory" = (({"address"=0xb01e58000,"length"=0x4000})) + | | | | "transport-tunneled" = <01000000> + | | | | "dpxbar-parent" = <63000000> + | | | | "dp-switch-parent" = <67000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-dfp-endpoint" = <01000000> + | | | | "acio-parent" = <60000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <617463312d6470696e3100> + | | | | "interrupt-parent" = <69000000> + | | | | "atc-phy" = + | | | | "port-type" = <02000000> + | | | | "compatible" = <6174632d6470696e2c743831323200> + | | | | "interrupts" = <2b040000> + | | | | "port-number" = <02000000> + | | | | "transport-type" = <05000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <4141504c2c6174632d6470696e00> + | | | | "reg" = <0080e5010b0000000040000000000000> + | | | | } + | | | | + | | | +-o AppleATCDPINAdapterPort(atc1-dpin1) + | | | { + | | | "IOClass" = "AppleATCDPINAdapterPort" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "AAPL,atc-dpin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000818f5e06000000000300000001000000>,"EventTime"=0x65e8f81,"EventClass"="SetState"}) + | | | "IONameMatched" = "AAPL,atc-dpin" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "DisplayHints" = {} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | } + | | | + | | +-o display-crossbar0 + | | | | { + | | | | "ufp-count" = <04000000> + | | | | "compatible" = <646973706c61792d63726f73736261722c743831313200> + | | | | "ufp-endpoints" = <64697370657874300064697370657874310064697370657874320064697370657874330073636f6465633000> + | | | | "name" = <646973706c61792d63726f73736261723000> + | | | | "dfp-endpoints" = <61746330006174633100617463320061746333006c7064707478006470747800> + | | | | "device_type" = <4141504c2c646973706c61792d63726f737362617200> + | | | | "AAPL,phandle" = <67000000> + | | | | "pipe-sharing" = <01000000> + | | | | } + | | | | + | | | +-o AppleT8112DisplayCrossbar(display-crossbar0) + | | | { + | | | "IOClass" = "AppleT8112DisplayCrossbar" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDisplayCrossbar" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "available-ufps" = ("dispext1,0") + | | | "IOProbeScore" = 0x186a0 + | | | "IONameMatch" = "display-crossbar,t8112" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "EventLog" = ({"EventPayload"={"dfp"=(),"ufp"=()},"EventRaw"=<20000000900000004fe4a55ad50200000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>,"EventTime"=0x2d55aa5e44f,"EventClass"="ApplyState"},{"EventPayload"={"dfp"=(),"ufp"=()},"EventRaw"=<2000000090000000a148201fd60200000000000000000000001000000000000000000000000000$ + | | | "IONameMatched" = "display-crossbar,t8112" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDisplayCrossbar" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDisplayCrossbar" + | | | "current-state" = {"dfp"=(),"ufp"=()} + | | | "pending-dfps" = () + | | | } + | | | + | | +-o mcc@C03C0000 + | | | | { + | | | | "panic-save-ce" = <01000000> + | | | | "byte-mode" = <01000000> + | | | | "AAPL,phandle" = <68000000> + | | | | "panic-max-size" = <0000000004000000> + | | | | "dramcfg-data" = <3301000040535555> + | | | | "ptd-ranges" = <0e0000001e000000> + | | | | "IODeviceMemory" = (({"address"=0x2d03c0000,"length"=0x20000}),({"address"=0x2d0478000,"length"=0x149c}),({"address"=0x2d0780000,"length"=0x4000}),({"address"=0x220000000,"length"=0x2000000}),({"address"=0x222000000,"length"=0x2000000})) + | | | | "pmp_ptd_update_space_offset" = <00000100> + | | | | "ptd-ranges-smc" = <44000000> + | | | | "name" = <6d636300> + | | | | "pmp_ptd_reg_idx" = <00000000> + | | | | "compatible" = <6d63632c743831323200> + | | | | "dsid_mgmt" = <01000000> + | | | | "dcs-count-per-amcc" = <04000000> + | | | | "dcs-enable-thermal-loop" = <01000000> + | | | | "dcs-true-mr4-read-support" = <01000000> + | | | | "dram-base" = <0000000000010000> + | | | | "dram-limit" = <0000000000020000> + | | | | "device_type" = <6d636300> + | | | | "mcache-pmp" = <01000000> + | | | | "reg" = <00003cc0000000000000020000000000008047c0000000009c14000000000000000078c00000000000400000000000000000001000000000000000020000000000000012000000000000000200000000> + | | | | "plane-count-per-amcc" = <02000000> + | | | | } + | | | | + | | | +-o AppleH15MemCacheController + | | | { + | | | "IOClass" = "AppleH15MemCacheController" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x15ba8 + | | | "IOPlatformActiveAction" = 0x15ba8 + | | | "IOPlatformWakeAction" = 0x15ba8 + | | | "IOPlatformQuiesceAction" = 0x15ba8 + | | | "IOPlatformSleepAction" = 0x15ba8 + | | | "IONameMatch" = "mcc,t8122" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOUserClientClass" = "AppleMCCUserClient" + | | | "IOReportLegend" = ({"IOReportGroupName"="AMC Stats","IOReportChannels"=((0x1,0x100020001,"PCPU0 RD"),(0x2,0x100020001,"PCPU0 DCS RD"),(0x3,0x100020001,"PCPU0 WR"),(0x4,0x100020001,"PCPU0 DCS WR"),(0x5,0x100020001,"ECPU0 RD"),(0x6,0x100020001,"ECPU0 DCS RD"),(0x7,0x100020001,"ECPU0 WR"),(0x8,0x100020001,"ECPU0 DCS WR"),(0x9,0x100020001,"GFX RD"),(0xa,0x100020001,"GFX DCS RD"),(0xb,0x100020001,"GFX WR"),(0xc,0x100020001,"GFX DCS WR"),(0xd,0x100020001,"AFC RD"),(0xe,0x100020001,"AFC WR"),(0xf,0x100020001,"AFI RD"),(0x10,0x10002$ + | | | "IOReportLegendPublic" = Yes + | | | "IONameMatched" = "mcc,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "IOFunctionParent00000068" = <> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o aic@C1000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0000000000000000>) + | | | | "cap0-offset" = <04000000> + | | | | "#address-cells" = <00000000> + | | | | "AAPL,phandle" = <69000000> + | | | | "pubstamplo0-offset" = <08100000> + | | | | "IODeviceMemory" = (({"address"=0x2d1000000,"length"=0x184000})) + | | | | "intmaskclear-stride" = <00000000> + | | | | "intmaskset-stride" = <00000000> + | | | | "pubstampcfg0inttype-mask" = <03000000> + | | | | "extintrcfg-stride" = <00000000> + | | | | "InterruptControllerName" = "IOInterruptController00000069" + | | | | "cap0_max_interrupt_umask" = + | | | | "rev-offset" = <00000000> + | | | | "max_irq_interrupt_umask" = + | | | | "name" = <61696300> + | | | | "pubstampcfg0-offset" = <00100000> + | | | | "pubstampstride-mask" = <10000000> + | | | | "IOInterruptControllers" = ("IOPlatformInterruptController") + | | | | "compatible" = <6169632c3300> + | | | | "#shared-timestamps" = <10000000> + | | | | "interrupt-controller" = <6d617374657200> + | | | | "#interrupt-cells" = <01000000> + | | | | "maxnumirq-offset" = <0c000000> + | | | | "extint-baseaddress" = <00000100> + | | | | "aicglbcfg-offset" = <14000000> + | | | | "pubstampdcfg0en-mask" = <00000080> + | | | | "hwintmon-stride" = <00000000> + | | | | "pubstampdhi-offset" = <0c100000> + | | | | "aic-iack-offset" = <0000040000000000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "#main-cpus" = <08000000> + | | | | "reg" = <000000c1000000000040180000000000> + | | | | } + | | | | + | | | +-o AppleInterruptControllerV3 + | | | { + | | | "IOClass" = "AppleInterruptControllerV3" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleInterruptControllerV3" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformActiveAction" = 0x17ae8 + | | | "IOUserClientClass" = "AppleInterruptControllerUserClient" + | | | "IOPlatformQuiesceAction" = 0x17ae8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "aic,3" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "aic,3" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleInterruptControllerV3" + | | | "InterruptControllerName" = "IOInterruptController00000069" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleInterruptControllerV3" + | | | "IOFunctionParent00000069" = <> + | | | } + | | | + | | +-o aic-timebase@D1180000 + | | | { + | | | "IODeviceMemory" = () + | | | "reg" = <000018d1020000000010000000000000> + | | | "name" = <6169632d74696d656261736500> + | | | "AAPL,phandle" = <6a000000> + | | | "device_type" = <74696d657200> + | | | } + | | | + | | +-o wdt@D42B0000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,<00000000>) + | | | | "function-panic_flush_helper" = <68000000406d654d> + | | | | "AAPL,phandle" = <6b000000> + | | | | "IODeviceMemory" = (({"address"=0x2e42b0000,"length"=0x4000}),({"address"=0x2e42bc218,"length"=0x4}),({"address"=0x2e42b8008,"length"=0x4}),({"address"=0x2e42b802c,"length"=0x4}),({"address"=0x2e42b8020,"length"=0x4})) + | | | | "function-panic_halt_helper" = <68000000216d654d> + | | | | "reconfig-wdog-support" = <> + | | | | "function-panic_notify" = <700000004f4950470e00000000010000> + | | | | "panic-save-flag-bit" = <00000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <77647400> + | | | | "interrupt-parent" = <69000000> + | | | | "wdt-version" = <02000000> + | | | | "panic-forcepoweroff-flag-bit" = <02000000> + | | | | "compatible" = <7764742c7438313232007764742c73356c383936307800> + | | | | "clock-ids" = <04000000> + | | | | "interrupts" = + | | | | "awl-scratch-supported" = <01000000> + | | | | "trigger-config" = <84020210020000000f0000000100000084021210020000000f0000000100000084022210020000000f0000000100000084023210020000000f0000000100000084020211020000000f0000000100000084021211020000000f0000000100000084022211020000000f0000000100000084023211020000000f00000001000000> + | | | | "device_type" = <77647400> + | | | | "reg" = <00002bd400000000004000000000000018c22bd400000000040000000000000008802bd40000000004000000000000002c802bd400000000040000000000000020802bd4000000000400000000000000> + | | | | } + | | | | + | | | +-o AppleARMWatchdogTimer + | | | | { + | | | | "IOClass" = "AppleARMWatchdogTimer" + | | | | "IOPlatformSleepAction" = 0x15e + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IOKitQuiesceWatchdogEnabled" = Yes + | | | | "IOKitQuiesceWatchdogSupported" = Yes + | | | | "PanicWatchdogEnabled" = Yes + | | | | "PanicSMCWatchdogEnabled" = Yes + | | | | "IONameMatch" = "wdt,s5l8960x" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMWatchdogTimer" + | | | | "ShutdownWatchdogEnabled" = Yes + | | | | "IONameMatched" = "wdt,s5l8960x" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "IOPlatformQuiesceAction" = 0x13880 + | | | | "IOFunctionParent0000006B" = <> + | | | | "IOPlatformWakeAction" = 0x15e + | | | | } + | | | | + | | | +-o IOWatchdogUserClient + | | | { + | | | "IOUserClientCreator" = "pid 399, watchdogd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o error-handler@8CC40000 + | | | | { + | | | | "ni8-metadata" = <2038696e0f00000002000000230000000200000000000000> + | | | | "ni7-metadata" = <2037696e0d00000002000000210000000200000000000000> + | | | | "IOInterruptSpecifiers" = (<43010000>,<42010000>,<48010000>,<45010000>,<45010000>,<46010000>,<49010000>,<47010000>,<02010000>,<04010000>,<76000000>,<78000000>,<06010000>,<0a010000>,<0e010000>,<12010000>,<16010000>,<1a010000>,<1e010000>,<22010000>,<09010000>,<0d010000>,<11010000>,<15010000>,<19010000>,<1d010000>,<21010000>,<25010000>,<26030000>,<27030000>,<2b030000>,<2c030000>,<2d030000>,<24030000>,<25030000>,<29030000>,<2a030000>,<2e030000>,<28030000>) + | | | | "nsc-metadata" = <2063736e1100000001000000250000000100000000000000> + | | | | "AAPL,phandle" = <6c000000> + | | | | "IODeviceMemory" = (({"address"=0x29cc40000,"length"=0x40000}),({"address"=0x2d0000000,"length"=0x7c000}),({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e42c8000,"length"=0x4000}),({"address"=0x220000000,"length"=0x2000000}),({"address"=0x222000000,"length"=0x2000000}),({"address"=0x280000000,"length"=0x4000}),({"address"=0x300000000,"length"=0x4000}),({"address"=0x258c00000,"length"=0x40000}),({"address"=0x259000000,"length"=0x40000}),({"address"=0x24fc00000,"length"=0x40000}),({"address"=0x250000000,"length"=0x4000$ + | | | | "sep-metadata" = <207065730000000001000000000000000800000000000000> + | | | | "ni0-metadata" = <2030696e08000000020000001c0000000200000000000000> + | | | | "afc-ns-names" = <2030534e> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController000$ + | | | | "name" = <6572726f722d68616e646c657200> + | | | | "amcc-metadata" = <63636d610400000002000000080000000200000000000000> + | | | | "interrupt-parent" = <69000000> + | | | | "afi-ns-names" = <2030534e> + | | | | "ioa-metadata" = <20616f6906000000020000000a0000000200000000000000> + | | | | "compatible" = <6572726f722d68616e646c65722c743831323200> + | | | | "interrupts" = <430100004201000048010000450100004501000046010000490100004701000002010000040100007600000078000000060100000a0100000e01000012010000160100001a0100001e01000022010000090100000d0100001101000015010000190100001d010000210100002501000026030000270300002b0300002c0300002d0300002403000025030000290300002a0300002e03000028030000> + | | | | "dcs-metadata" = <2073636400000000000000000c0000001000000000000000> + | | | | "nsi-metadata" = <2069736e1200000001000000260000000100000000000000> + | | | | "ni2-metadata" = <2032696e0a000000030000001e0000000300000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6572726f722d68616e646c657200> + | | | | "reg" = <0000c48c000000000000040000000000000000c00000000000c0070000000000000070c00000000000c00c000000000000802cd4000000000040000000000000000000100000000000000002000000000000001200000000000000020000000000000070000000000040000000000000000000f00000000000400000000000000000c048000000000000040000000000000000490000000000000400000000000000c03f000000000000040000000000000000400000000000000400000000000000104000000000000004000000000000004048000000000000040000000000000080480000000000000400000000000000403f0000000000000400000000000000803f0000$ + | | | | "pmgr-metadata" = <72676d700100000003000000000000000000000000000000> + | | | | } + | | | | + | | | +-o AppleH15PlatformErrorHandler + | | | { + | | | "IOClass" = "AppleH15PlatformErrorHandler" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOFunctionParent0000006C" = <> + | | | "IOPlatformActiveAction" = 0x15ba8 + | | | "IOPlatformQuiesceAction" = 0x15ba8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "error-handler,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "error-handler,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122" + | | | } + | | | + | | +-o dwi@C0200000 + | | | | { + | | | | "dwi-version" = <01000000> + | | | | "lockout-us" = <05000000> + | | | | "compatible" = <6477692c7438313031006477692c733830303000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <10000000> + | | | | "clock-gates" = <13000000> + | | | | "reg" = <000020c0000000000040000000000000> + | | | | "AAPL,phandle" = <6d000000> + | | | | "str-delay" = <401f0000> + | | | | "polarity-config" = <01000000> + | | | | "device_type" = <64776900> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<10000000>) + | | | | "IODeviceMemory" = (({"address"=0x2d0200000,"length"=0x4000})) + | | | | "nclk-div" = <01000000> + | | | | "name" = <64776900> + | | | | } + | | | | + | | | +-o AppleS8000DWI + | | | { + | | | "IOClass" = "AppleS8000DWI" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS8000DWI" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformActiveAction" = 0x13880 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dwi,s8000" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent0000006D" = <> + | | | "IONameMatched" = "dwi,s8000" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS8000DWI" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS8000DWI" + | | | } + | | | + | | +-o pwm@91040000 + | | | | { + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <70776d2c74383130310070776d2c73356c383932307800> + | | | | "reg" = <00000491000000000040000000000000> + | | | | "interrupts" = <15030000> + | | | | "IODeviceMemory" = (({"address"=0x2a1040000,"length"=0x4000})) + | | | | "clock-gates" = <33000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (<15030000>) + | | | | "device_type" = <70776d00> + | | | | "AAPL,phandle" = <6e000000> + | | | | "name" = <70776d00> + | | | | } + | | | | + | | | +-o AppleS5L8920XPWM + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8920XPWM" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleS5L8920XPWM" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8920XPWM" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8920XPWM" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "pwm,s5l8920x" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "pwm,s5l8920x" + | | | "IOFunctionParent0000006E" = <> + | | | } + | | | + | | +-o aes@9100C000 + | | | | { + | | | | "sioaesdisable-offset" = <00000000> + | | | | "aes-version" = <03000000> + | | | | "IOInterruptSpecifiers" = (<0a030000>) + | | | | "clock-gates" = <42000000> + | | | | "AAPL,phandle" = <6f000000> + | | | | "sioaesdisablegid1-offset" = <48000000> + | | | | "sioaesdisableuid1-offset" = <40000000> + | | | | "IODeviceMemory" = (({"address"=0x2a100c000,"length"=0x4000}),({"address"=0x2e42dc000,"length"=0x8000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <98000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61657300> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6165732c733830303000> + | | | | "interrupts" = <0a030000> + | | | | "sioaesdisablegid0-offset" = <44000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61657300> + | | | | "reg" = <00c0009100000000004000000000000000c02dd4000000000080000000000000> + | | | | "address-width" = <2a000000> + | | | | } + | | | | + | | | +-o AppleS8000AESAccelerator + | | | { + | | | "IOClass" = "AppleS8000AESAccelerator" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS8000AES" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformWakeAction" = 0x13880 + | | | "IOUserClientClass" = "IOAESAcceleratorUserClient" + | | | "IOPlatformQuiesceAction" = 0x13880 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "aes,s8000" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "aes,s8000" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS8000AES" + | | | "CrashReporter-ID" = <30d4586a342292b8b109873f1b75127ce9816679> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS8000AES" + | | | } + | | | + | | +-o gpio0@B7100000 + | | | | { + | | | | "#interrupt-cells" = <02000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "#gpio-int-groups" = <07000000> + | | | | "reg" = <000010b7000000000000100000000000> + | | | | "#gpio-pins" = + | | | | "AAPL,phandle" = <70000000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "IODeviceMemory" = (({"address"=0x2c7100000,"length"=0x100000})) + | | | | "#address-cells" = <00000000> + | | | | "InterruptControllerName" = "IOInterruptController00000070" + | | | | "role" = <415000> + | | | | "name" = <6770696f3000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000070" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "IOFunctionParent00000070" = <> + | | | "role" = "AP" + | | | } + | | | + | | +-o aop-gpio@E4824000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<5a010000>,<5b010000>,<5c010000>,<5d010000>,<5e010000>,<5f010000>,<60010000>) + | | | | "wake-no-interrupt-group" = <04000000> + | | | | "wake-events" = <0616061a041a0000> + | | | | "#gpio-int-groups" = <07000000> + | | | | "#address-cells" = <00000000> + | | | | "supported-int-groups" = <040000000500000006000000> + | | | | "AAPL,phandle" = <71000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4824000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000071" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <616f702d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = <5a0100005b0100005c0100005d0100005e0100005f01000060010000> + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <36000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <414f5000> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004082e4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000071" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000071" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "AOP" + | | | } + | | | + | | +-o nub-gpio@D41F0000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "wake-no-interrupt-group" = <04000000> + | | | | "wake-events" = <02040000> + | | | | "#gpio-int-groups" = <07000000> + | | | | "#address-cells" = <00000000> + | | | | "supported-int-groups" = <040000000500000006000000> + | | | | "AAPL,phandle" = <72000000> + | | | | "IODeviceMemory" = (({"address"=0x2e41f0000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000072" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6e75622d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <20000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <4e554200> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <00001fd4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000072" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000072" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "NUB" + | | | } + | | | + | | +-o smc-gpio@DC820000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "wake-events" = <> + | | | | "#gpio-int-groups" = <07000000> + | | | | "AAPL,phandle" = <73000000> + | | | | "supported-int-groups" = <0500000006000000> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2ec820000,"length"=0x4000})) + | | | | "InterruptControllerName" = "IOInterruptController00000073" + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <736d632d6770696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <6770696f2c743831303100> + | | | | "interrupts" = + | | | | "#interrupt-cells" = <02000000> + | | | | "#gpio-pins" = <12000000> + | | | | "no-resume-restore" = <01000000> + | | | | "role" = <534d4300> + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <000082dc000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleT8101GPIOIC + | | | { + | | | "IOClass" = "AppleT8101GPIOIC" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleGPIOICController" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformPanicAction" = 0x1f4 + | | | "IOPlatformActiveAction" = 0x1388 + | | | "IOPlatformWakeAction" = 0x1f4 + | | | "IOPlatformQuiesceAction" = 0x3e8 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "gpio,t8101" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOFunctionParent00000073" = <> + | | | "IONameMatched" = "gpio,t8101" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleGPIOICController" + | | | "InterruptControllerName" = "IOInterruptController00000073" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleGPIOICController" + | | | "role" = "SMC" + | | | } + | | | + | | +-o aop@E4400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<74010000>,<73010000>,<76010000>,<75010000>) + | | | | "aot-power" = <01000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = <74000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4400000,"length"=0x6c000}),({"address"=0x2f4050000,"length"=0x4000}),({"address"=0x2f4c00000,"length"=0x1e0000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f45544558543b5f5f4f535f4c4f4700> + | | | | "iommu-parent" = <7f000000> + | | | | "function-pll_off_mode" = <820000004d4c4c500100000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <616f7000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <74010000730100007601000075010000> + | | | | "clock-ids" = <> + | | | | "role" = <414f5000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616f7000> + | | | | "power-gates" = <> + | | | | "reg" = <000040e40000000000c0060000000000000005e40000000000400000000000000000c0e40000000000001e000000000000802ad4000000000800000000000000> + | | | | "segment-ranges" = <0000c0f40200000000000001000000000000c0f40200000000c009000300000000c0c9f40200000000c009010000000000c0c9f40200000000c010000600000000808e000001000000801a0100000000000000000001000000c001000100000000c0d70a00010000000000fd0000000000c0d70a00010000003001000a000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "AOP" + | | | | } + | | | | + | | | +-o iop-aop-nub + | | | | { + | | | | "aop-target" = <00000000> + | | | | "sleep-on-hibernate" = <> + | | | | "uuid" = <43433932363630302d463034302d334533312d414436412d42373033423331393041343800> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <75000000> + | | | | "region-base" = <0000c0f402000000> + | | | | "firmware-name" = <6d6163313567616f7000> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f45544558543b5f5f4f535f4c4f4700> + | | | | "KDebugCoreID" = 0xe + | | | | "region-size" = <00002a0000000000> + | | | | "aop-fr-timebase" = <01000000> + | | | | "enable-doppler" = <01000000> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0000c0f40200000000000001000000000000c0f40200000000c009000300000000c0c9f40200000000c009010000000000c0c9f40200000000c010000600000000808e000001000000801a0100000000000000000001000000c001000100000000c0d70a00010000000000fd0000000000c0d70a00010000003001000a000000> + | | | | "name" = <696f702d616f702d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o AppleSPUTimesyncV2 + | | | | { + | | | | "IOClass" = "AppleSPUTimesyncV2" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("iop-aop-nub") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleSPUTimesync" + | | | | "timesync" = {"spu"=0x60aa721626280,"ap"=0xec7d6e74d9fb,"ap-cont"=0x60aa721626544,"calendar"=0x183fa9d7232528c4} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "iop-aop-nub" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOKitDebug" = 0xffff + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | } + | | | | + | | | +-o RTBuddy(AOP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.debug" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <75000000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "FirmwareUUID" = "cc926600-f040-3e31-ad6a-b703b3190a48" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "mac15gaop:DEBUG:AppleSPUFirmwareBuilder-642.100.42~6551" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "AOP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "AOP" + | | | | | } + | | | | | + | | | | +-o AppleSPUFirmwareService + | | | | { + | | | | "IOPropertyMatch" = {"role"="AOP"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOMatchCategory" = "RTBuddyFirmwareService" + | | | | "IOClass" = "AppleSPUFirmwareService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Role" = "AOP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="AOP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="AOP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000000 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 32","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o SPUApp + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xc7} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000000 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUAppDriver + | | | | | { + | | | | | "IOClass" = "AppleSPUAppDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleSPUAppDriverUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("SPUApp") + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IONameMatched" = "SPUApp" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | } + | | | | | + | | | | +-o AppleSPUProfileDriver + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOMatchCategory" = "AppleSPUProfileDriver" + | | | | "IOClass" = "AppleSPUProfileDriver" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "AppleSPUAppDriver" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "AppleSPUProfileDriverUserClient" + | | | | } + | | | | + | | | +-o AOPEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000001 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 33","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o wakehint + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x184} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000001 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x1 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0aff00a101150026ff00750895018102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0xff + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0xff},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExp$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | | { + | | | | | | "MaxOutputReportSize" = 0x0 + | | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | | "DeviceOpenedByEventSystem" = No + | | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | | "PrimaryUsage" = 0xff + | | | | | | "LocationID" = 0x0 + | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | | "Transport" = "SPU" + | | | | | | "ReportInterval" = 0x1f40 + | | | | | | "ReportDescriptor" = <0600ff0aff00a101150026ff00750895018102c0> + | | | | | | "Built-In" = Yes + | | | | | | "Manufacturer" = "Apple" + | | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | | "MaxInputReportSize" = 0x1 + | | | | | | } + | | | | | | + | | | | | +-o AppleSPUHIDDriver + | | | | | | { + | | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | | "Transport" = "SPU" + | | | | | | "AppleVoltageDictionary" = {} + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | | "QueueSize" = 0x4000 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Built-In" = Yes + | | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | | "Manufacturer" = "Apple" + | | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xff}) + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "AOPSupportsAggregateDictionary" = Yes + | | | | | | "calibration_state" = 0x1 + | | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | | "VendorIDSource" = 0x0 + | | | | | | "HIDServiceSupport" = Yes + | | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | | "CountryCode" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | | "VendorID" = 0x0 + | | | | | | "VersionNumber" = 0x0 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | | "motionRestrictedService" = No + | | | | | | "PrimaryUsage" = 0xff + | | | | | | "LocationID" = 0x0 + | | | | | | "ProductID" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "ReportInterval" = 0x0 + | | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | | } + | | | | | | + | | | | | +-o IOHIDEventServiceUserClient + | | | | | | { + | | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | | "IOUserClientEntitlements" = No + | | | | | | "DebugState" = {"EnqueueEventCount"=0x746,"LastEventTime"=0x3b3eab1d16,"EventQueue"={"NoFullMsg"=0x0,"tail"=0x1d70,"NotificationForce"=0x0,"NotificationCount"=0x746,"head"=0x1d70}} + | | | | | | } + | | | | | | + | | | | | +-o AppleSPUHIDDriverUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000d + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 34","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0xd0000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o aop-audio + | | | | | { + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "compatible" = <616f702d617564696f00> + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x117} + | | | | | "service_id" = 0x1000000d + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "device_type" = <616f702d617564696f00> + | | | | | "AAPL,phandle" = <76000000> + | | | | | "name" = <616f702d617564696f00> + | | | | | } + | | | | | + | | | | +-o AppleAOPAudioController + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioController" + | | | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | | "verbose level" = 0x1 + | | | | | | "input clock domain" = 0x6d61696e + | | | | | | "IOReportLegendPublic" = Yes + | | | | | | "channels per frame" = 0x3 + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOUserClientClass" = "AppleAOPAudioUserClient" + | | | | | | "listening enabled" = 0x0 + | | | | | | "device input latency in frames" = 0x1 + | | | | | | "historicDataSupported" = 0x1 + | | | | | | "bytes per sample" = 0x4 + | | | | | | "IONameMatch" = ("aop-audio") + | | | | | | "listening on gesture supported" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "input samples per sec" = 0x3e80 + | | | | | | "frames per packet" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "zero timestamp wrap frames" = 0xc80 + | | | | | | "IONameMatched" = "aop-audio" + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x100000000,0x181000001,"StateErrorCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="aop-audio-clientmanager:hpai"},{"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x100000000,0x181000001,"StateErrorCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="aop-audio-clientmanager:lilb"},{"IOReportGroupName"="AppleAOPAudio Status","IOReportChannels"=((0x2000$ + | | | | | | "driver safety offset in frames" = 0x400 + | | | | | | } + | | | | | | + | | | | | +-o audio-pdm2 + | | | | | | | { + | | | | | | | "clockSource" = <206c6c70> + | | | | | | | "channelsEnabled" = <07000000> + | | | | | | | "AAPL,phandle" = <77000000> + | | | | | | | "pdmcFrequency" = <00366e01> + | | | | | | | "fastClockSpeed" = <00366e01> + | | | | | | | "channelCount" = <03000000> + | | | | | | | "channelsSupported" = <07000000> + | | | | | | | "pdmFrequency" = <009f2400> + | | | | | | | "name" = <617564696f2d70646d3200> + | | | | | | | "micTurnOnTimeMs" = <14000000> + | | | | | | | "bytesPerSample" = <03000000> + | | | | | | | "compatible" = <617564696f2d616f702d70646d3200> + | | | | | | | "identifier" = <306d6470> + | | | | | | | "channelPolaritySelect" = <00010000> + | | | | | | | "hfdConfigForHighPowerClks" = <78000000> + | | | | | | | "channelPhaseSelect" = <00000000> + | | | | | | | "voiceTriggerChannel" = <01000000> + | | | | | | | "micSettleTimeMs" = <32000000> + | | | | | | | "slowClockSpeed" = <00366e01> + | | | | | | | "device_type" = <617564696f2d70646d3200> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioPDM2Device + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioPDM2Device" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-aop-pdm2","audio-pdm2") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IOFunctionParent00000077" = <> + | | | | | | "IONameMatched" = "audio-pdm2" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "id0" = "pdm0" + | | | | | | } + | | | | | | + | | | | | +-o hfdc-2400000 + | | | | | | { + | | | | | | "latency" = <24000000> + | | | | | | "ratios" = <0a050300> + | | | | | | "compatible" = <617564696f2d616f702d70646d3200> + | | | | | | "coefficients" = <6baeffffffffffff7095feffffffffff47f1fbffffffffff0172f6ffffffffff6b6fecffffffffff46d3dbffffffffffc282c2ffffffffffbdb29effffffffff4ca86fffffffffff996936ffffffffff1da3f6feffffffff4c45b7feffffffff64ec82feffffffff0c9d67feffffffff79d775fefffffffffcb5befeffffffff7c3e51ffffffffff9bf3360000000000c91d7001000000001e41f00200000000ed809b0400000000439c450600000000aa3bb307000000004efe9d08000000001876bb080000000048c4c607000000008b1a8c050000000048e3f4010000000089fc12fdffffffff5f3929f7ffffffff6d6aaff0ffffffff647$ + | | | | | | "filterLengths" = <6049d900> + | | | | | | "identifier" = <34326668> + | | | | | | "AAPL,phandle" = <78000000> + | | | | | | "name" = <686664632d3234303030303000> + | | | | | | } + | | | | | | + | | | | | +-o audio-hp + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d687000> + | | | | | | | "device_type" = <617564696f2d616f702d687000> + | | | | | | | "name" = <617564696f2d687000> + | | | | | | | "AAPL,phandle" = <79000000> + | | | | | | | "identifier" = <69617068> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioClientManager + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioClientManager" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-hp","audio-aop-ldcm","audio-aop-hawking","audio-leap-internal-loopback","audio-leap-mca-loopback","audio-aop-speaker-manager","audio-aud-mca-baseband","audio-aud-mca-loopback","audio-aop-mca2-pmgr","audio-aop-mca3-pmgr","audio-aop-mca4-pmgr","audio-aop-mca5-pmgr") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IONameMatched" = "audio-hp" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOFunctionParent00000079" = <> + | | | | | | "id0" = "hpai" + | | | | | | } + | | | | | | + | | | | | +-o audio-lp-mic-in + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d6c702d6d69632d696e00> + | | | | | | | "device_type" = <617564696f2d616f702d6c702d6d69632d696e00> + | | | | | | | "name" = <617564696f2d6c702d6d69632d696e00> + | | | | | | | "AAPL,phandle" = <7a000000> + | | | | | | | "identifier" = <6961706c> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioLPMicInDevice + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioLPMicInDevice" + | | | | | | "supportsHistoricalData" = 0x1 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "channelStatus" = (0x0,0x0,0x0,0x0) + | | | | | | "clockDomain" = 0x6d61696e + | | | | | | "channels per frame" = 0x3 + | | | | | | "device input latency in frames" = 0x1 + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "channelControl" = (0x7,0x7,0x1,0x7) + | | | | | | "id0" = "lpai" + | | | | | | "listening enabled" = 0x0 + | | | | | | "historicDataSupported" = 0x1 + | | | | | | "bytes per sample" = 0x4 + | | | | | | "IONameMatch" = ("audio-lp-mic-in","audio-aop-lp-mic-in") + | | | | | | "state" = "idle" + | | | | | | "listening on gesture supported" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "input samples per sec" = 0x3e80 + | | | | | | "frames per packet" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "zero timestamp wrap frames" = 0xc80 + | | | | | | "IONameMatched" = "audio-lp-mic-in" + | | | | | | "IOFunctionParent0000007A" = <> + | | | | | | "historicalBytesSinceWake" = 0x0 + | | | | | | "driver safety offset in frames" = 0x400 + | | | | | | } + | | | | | | + | | | | | +-o audio-leap-internal-loopback + | | | | | | | { + | | | | | | | "compatible" = <617564696f2d616f702d6c6561702d696e742d6c6f6f706261636b00> + | | | | | | | "device_type" = <617564696f2d616f702d6c6561702d696e742d6c6f6f706261636b00> + | | | | | | | "name" = <617564696f2d6c6561702d696e7465726e616c2d6c6f6f706261636b00> + | | | | | | | "AAPL,phandle" = <7b000000> + | | | | | | | "identifier" = <626c696c> + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAOPAudioClientManager + | | | | | | { + | | | | | | "IOClass" = "AppleAOPAudioClientManager" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOProviderClass" = "AppleAOPAudioDeviceNode" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | | "IOResourceMatch" = "IOKit" + | | | | | | "IONameMatch" = ("audio-hp","audio-aop-ldcm","audio-aop-hawking","audio-leap-internal-loopback","audio-leap-mca-loopback","audio-aop-speaker-manager","audio-aud-mca-baseband","audio-aud-mca-loopback","audio-aop-mca2-pmgr","audio-aop-mca3-pmgr","audio-aop-mca4-pmgr","audio-aop-mca5-pmgr") + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "IONameMatched" = "audio-leap-internal-loopback" + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPAudio" + | | | | | | "IOFunctionParent0000007B" = <> + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPAudio" + | | | | | | "id0" = "lilb" + | | | | | | } + | | | | | | + | | | | | +-o AppleAOPAudioUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAOPAudioService + | | | | { + | | | | } + | | | | + | | | +-o AOPEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000c + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 35","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o aop-voicetrigger + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xed} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000c + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleAOPVoiceTriggerController + | | | | | { + | | | | | "IOClass" = "AppleAOPVoiceTriggerController" + | | | | | "VTIdentity" = "AppleAOPVoiceTrigger-1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "IOResourceMatch" = "IOKit" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOProviderClass" = "AppleSPUAppInterface" + | | | | | "VTActiveChannelMask" = 0x1 + | | | | | "VTLastTriggerSampleTime" = 0x0 + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOUserClientClass" = "AppleAOPVoiceTriggerUserClient" + | | | | | "VTLastTriggerTime" = 0x0 + | | | | | "VTConfigured" = No + | | | | | "VTTriggerCount" = 0x0 + | | | | | "IONameMatch" = ("aop-voicetrigger") + | | | | | "VTLastWakeReason" = "unkn" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "voice trigger supported" = 0x1 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAOPVoiceTrigger" + | | | | | "IONameMatched" = "aop-voicetrigger" + | | | | | "voice trigger configured" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "VTSupported" = Yes + | | | | | "voice trigger enabled" = 0x0 + | | | | | "VTEnabled" = No + | | | | | } + | | | | | + | | | | +-o AppleAOPVoiceTriggerUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000004 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 36","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o accel + | | | | | { + | | | | | "accel-range-extr-cal" = <0200010100000000280000000100000000000100000000000000000000000000000001000000000000000000000000000000010000000000> + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "device-usage-page" = <00ff0000> + | | | | | "AAPL,phandle" = <7c000000> + | | | | | "service_id" = 0x10000004 + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "accel-nominal-extr-cal" = <02000101000000002800000001000000000000000000ffff000000000000ffff000000000000000000000000000000000000010000000000> + | | | | | "device_type" = <616363656c00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "device-usage" = <03000000> + | | | | | "accel-range-intr-cal" = <02000101000000002c0000000100000010000000007d0000000000000000000000000000007d0000000000000000000000000000007d000000000000> + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x154} + | | | | | "name" = <616363656c00> + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x16 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0300a101150026ff00750895168102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x3},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0xb0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0xb0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0300a101150026ff00750895168102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x16 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x2 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "50 100 200 400 800 " + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = Yes + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "23286b416c47045607090b23" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "dispatchAccel" = Yes + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "BMI286" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Bosch" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {"ACCEL_TEMP"=0x0} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x10 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000005 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 37","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o gyro + | | | | | { + | | | | | "gyro-range-intr-cal" = <02000101000000002c00000001000000d0070000a00f0000000000000000000000000000a00f0000000000000000000000000000a00f000000000000> + | | | | | "gyro-nominal-extr-cal" = <0200010100000000280000000100000000000000000001000000000000000100000000000000000000000000000000000000ffff00000000> + | | | | | "device-usage-page" = <00ff0000> + | | | | | "AAPL,phandle" = <7d000000> + | | | | | "service_id" = 0x10000005 + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | "device_type" = <6779726f00> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "device-usage" = <09000000> + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x18d} + | | | | | "gyro-range-extr-cal" = <0200010100000000280000000100000000000100000000000000000000000000000001000000000000000000000000000000010000000000> + | | | | | "gyro-temp-table" = <0200cb1502001000c3ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> + | | | | | "name" = <6779726f00> + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x16 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0900a101150026ff00750895168102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x9 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x9},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0xb0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0xb0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x9 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0900a101150026ff00750895168102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x16 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x2 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "50 100 200 400 800 " + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = Yes + | | | | | "SerialNumber" = "23286b416c47045607090b23" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "23286b416c47045607090b23" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x9}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "BMI286" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Bosch" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "dispatchGyro" = Yes + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x9 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {"GYRO_TEMP"=0x0} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x10 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000006 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 38","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o las + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x53,"_ap_latency"=0x9c0} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000006 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x8 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0520098aa10185010a7f044668013426680114750995018102651485020a0b0345ff3425ff1475089501810285030a070347ffffff7f3427ffffff7f1475209501810247010000003427010000001475089501810285040a030345033425031475089501810285050a840445023425021475089501810285060a440545013425011475089501910285070a450547a08c00003427a08c00001475329501550e810285080a4605450234250214750895018102c0> + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x8a + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x20,"Max"=0x168,"IsArray"=No,"Type"=0x1,"Size"=0x9,"Min"=0x0,"Flags"=0x2,"ReportID"=0x1,"Usage"=0x47f,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x9,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x168,"ElementCookie"=0x14},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"U$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x2,0x100020001,"Report 2"),(0x3,0x100020001,"Report 3"),(0x4,0x100020001,"Report 4"),(0x5,0x100020001,"Report 5"),(0x6,0x100020001,"Report 6"),(0x7,0x100020001,"Report 7"),(0x8,0x100020001,"Report 8")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x1c,"Size"=0x11,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x11,"Usage"=0x0},{"ReportID"=0x2,"ElementCookie"=0x1d,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x3,"ElementCookie"=0x1e,"Size"=0x30,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x30,"Usage"=0x0},{"ReportID"=0x4,"ElementCookie"=0x1f,"Size"=0x10,"ReportCount"$ + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x8a + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0520098aa10185010a7f044668013426680114750995018102651485020a0b0345ff3425ff1475089501810285030a070347ffffff7f3427ffffff7f1475209501810247010000003427010000001475089501810285040a030345033425031475089501810285050a840445023425021475089501810285060a440545013425011475089501910285070a450547a08c00003427a08c00001475329501550e810285080a4605450234250214750895018102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "MaxFeatureReportSize" = 0x1 + | | | | | "MaxInputReportSize" = 0x8 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x20 + | | | | | "sensor_rates" = "" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = No + | | | | | "SerialNumber" = "" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x20,"DeviceUsage"=0x8a}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "_first_ts_s" = 0xf39d2 + | | | | | "model" = "ma781" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "MagAlpha" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x8a + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x87 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "_num_first_less1s" = 0x746 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000010 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 39","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o als + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0xa2d,"_ap_latency"=0xeb5} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000010 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x7a + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0400a101150026ff007508957a8100c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x4 + | | | | | "LocationID" = 0x5 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x4},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x3d0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x3d0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x4 + | | | | | "LocationID" = 0x5 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0400a101150026ff007508957a8100c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x7a + | | | | | } + | | | | | + | | | | +-o AppleSPUVD6286 + | | | | | { + | | | | | "LocationID" = 0x5 + | | | | | "ALSSuperFastIntegrationTime" = 0x182b8 + | | | | | "ALSSlowIntegrationTime" = 0x3d090 + | | | | | "ALSGain" = 0x40 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleALSColorSensor" + | | | | | "Calibrated" = Yes + | | | | | "CFSN" = 0x7010a3fa3ee1e6b + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HIDServiceSupport" = Yes + | | | | | "SysConfigCalibration" = No + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "ALSFastIntegrationTime" = 0x186a0 + | | | | | "IOProbeScore" = 0x4b0 + | | | | | "IOClass" = "AppleSPUVD6286" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Orientation" = 0x1 + | | | | | "UseAABPlugin" = Yes + | | | | | "ALSSensorType" = 0x7 + | | | | | "manufacturer" = "Redbird" + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "CalibrationResult" = 0x1 + | | | | | "motionRestrictedService" = No + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleALSColorSensor" + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "LogLevel" = 0x6 + | | | | | "FDRCalibration" = Yes + | | | | | "ALSOcclusionIntegrationTime" = 0xf230 + | | | | | "crgb" = 0x1 + | | | | | "ReportInterval" = 0x30304 + | | | | | "Placement" = 0x1 + | | | | | "VendorID" = 0x0 + | | | | | "ChipType" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleALSColorSensor" + | | | | | "CalibrationData" = <01020000000000000001c1009a59fa00640063003e00060606060505d07f1dba725a453b5440bd3c96cbf33ca52e863c5c3ca9463796a3c45728a14506df9dc52ca61c4503000000000c000080008000800080c97fce7f3d80f47f2980050000000005000080008000800080db7fdd7f488015803980060000000006000080008000800080b97fe67f2380ea7ffb7f040000000007000080008000800080d17fd57f3c8045803780040000000007000080008000800080c07fc27f2580c87fa57f> + | | | | | "chip_id" = 0xa3fa3ee + | | | | | "ProductID" = 0x0 + | | | | | "calibration_state" = 0x1 + | | | | | "CalibrationType" = 0x2 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x4}) + | | | | | "HIDEventServiceProperties" = {"BatchInterval"=0x1} + | | | | | "PrimaryUsage" = 0x4 + | | | | | "FastModeFilter" = Yes + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "CurrentLux" = 0x3d4 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "Transport" = "SPU" + | | | | | "VendorIDSource" = 0x0 + | | | | | "Manufacturer" = "Apple" + | | | | | "CountryCode" = 0x0 + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x1ea0,"NotificationForce"=0x0,"NotificationCount"=0xa3cfc,"head"=0x1ea0},"EnqueueEventCount"=0xa3cfc,"LastEventType"=0xc,"LastEventTime"=0xb42ed9f} + | | | | } + | | | | + | | | +-o AOPEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000a + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 40","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "historical queue size" = 0x80000 + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o cma + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0xb0,"_ap_latency"=0x2139} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000a + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "historical buffer defers queue start" = Yes + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <060cff0901a1018500150026ff00750895058102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x1 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff0c,"Usage"=0x1},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x1 + | | | | | "LocationID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <060cff0901a1018500150026ff00750895058102c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x5 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"_num_events"=0x42de2,"_num_events_after_wake"=0x132,"_num_events_before_sleep"=0xc,"_last_event_timestamp"=0x5acfdc60d78} + | | | | | "_num_first_more1s" = 0x108 + | | | | | "motionRestrictedService" = No + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "ProductID" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x1}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "_first_ts_s" = 0x2745eb + | | | | | "QueueSize" = 0x14000 + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x1 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "_num_first_less1s" = 0x63e + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | | { + | | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | | "IOUserClientEntitlements" = No + | | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x8920,"NotificationForce"=0x0,"NotificationCount"=0x5d765,"head"=0x8920},"EnqueueEventCount"=0x831f9,"LastEventType"=0x1,"LastEventTime"=0xa275121} + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriverUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 601, locationd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AOPEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@1000000b + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 41","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o devmotion6 + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xed} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x1000000b + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x64 + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <060cff0905a1018500150026ff00750895648102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff0c,"Usage"=0x5},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x320,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x320,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "Transport" = "SPU" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <060cff0905a1018500150026ff00750895648102c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0x64 + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "Transport" = "SPU" + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "QueueSize" = 0x4000 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "Manufacturer" = "Apple" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff0c,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "calibration_state" = 0x1 + | | | | | "VendorIDSource" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "HIDServiceSupport" = Yes + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "motionRestrictedService" = Yes + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x0 + | | | | | "PrimaryUsagePage" = 0xff0c + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EnqueueEventCount"=0x746,"LastEventTime"=0x3b3f1c01f7,"EventQueue"={"NoFullMsg"=0x0,"tail"=0x1d70,"NotificationForce"=0x0,"NotificationCount"=0x746,"head"=0x1d70}} + | | | | } + | | | | + | | | +-o AOPEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSPU@10000007 + | | | | | { + | | | | | "IOClass" = "AppleSPU" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 42","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "slaveAlignment" = 0x40 + | | | | | "IONameMatched" = "AOPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "rx queue size" = 0x4000 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "tx queue size" = 0x4000 + | | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | | } + | | | | | + | | | | +-o als-temp + | | | | | { + | | | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0x13e} + | | | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | | | "service_id" = 0x10000007 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleSPUHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "SPU" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0xe + | | | | | "IOProviderClass" = "AppleSPUHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a0500a101150026ff007508950e8102c0> + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOCFPlugInTypes" = {"7ACF5332-1A35-4893-87CB-BA64E1887FAE"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "RegisterService" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"UsagePage"=0xff00,"Usage"=0x5},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x0,"Max"=0x0,"IsArray"=Yes,"Type"=0x5,"Size"=0x0,"Min"=0x0,"Flags"=0x0,"ReportID"=0x0,"Usage"=0xffffffffffffffff,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x0,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x0,"ElementCookie"=0x3},{"VariableSize"=0x0,"UnitExpo$ + | | | | | "ProductID" = 0x8104 + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x0,0x100020001,"Report 0")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "InputReportElements" = ({"ReportID"=0x0,"ElementCookie"=0x4,"Size"=0x70,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x70,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x0 + | | | | | "Built-In" = Yes + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = No + | | | | | "VendorID" = 0x5ac + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x0 + | | | | | "ProductID" = 0x8104 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Transport" = "SPU" + | | | | | "SerialNumber" = "" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff0a0500a101150026ff007508950e8102c0> + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x0 + | | | | | "MaxInputReportSize" = 0xe + | | | | | } + | | | | | + | | | | +-o AppleSPUHIDDriver + | | | | | { + | | | | | "calibration_state" = 0x1 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "sensor_rates" = "" + | | | | | "VersionNumber" = 0x0 + | | | | | "VendorID" = 0x5ac + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Built-In" = Yes + | | | | | "part" = "0" + | | | | | "DebugState" = {"_num_events"=0x0,"_num_events_after_wake"=0x0,"_num_events_before_sleep"=0x0,"_last_event_timestamp"=0x0} + | | | | | "motionRestrictedService" = No + | | | | | "SerialNumber" = "" + | | | | | "Transport" = "SPU" + | | | | | "Manufacturer" = "Apple" + | | | | | "serial_number" = "" + | | | | | "ProductID" = 0x8104 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | | "model" = "TMP108" + | | | | | "QueueSize" = 0x4000 + | | | | | "manufacturer" = "Texas Instruments" + | | | | | "ReportInterval" = 0x0 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | | "silicon" = "0" + | | | | | "IOCFPlugInTypes" = {"0B842ADD-C395-4352-95F6-6585EB515623"="IOHIDFamily.kext/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","3BC5CC87-845E-48AB-A9C2-9436001BA68A"="AppleSPU.kext/Contents/PlugIns/AppleSPULib.plugin"} + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LocationID" = 0x0 + | | | | | "IOClass" = "AppleSPUHIDDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "CountryCode" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "AppleVoltageDictionary" = {} + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "chip_id" = 0x0 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "StandardType" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o AOPEndpoint12 + | | | | { + | | | | } + | | | | + | | | +-o AppleSPU@1000000e + | | | | { + | | | | "IOClass" = "AppleSPU" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPU" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("AOPEndpoint1","AOPEndpoint2","AOPEndpoint3","AOPEndpoint4","AOPEndpoint5","AOPEndpoint6","AOPEndpoint7","AOPEndpoint8","AOPEndpoint9","AOPEndpoint10","AOPEndpoint11","AOPEndpoint12","AOPEndpoint13","AOPEndpoint14","AOPEndpoint15","AOPEndpoint16","AOPEndpoint17","AOPEndpoint18","AOPEndpoint19","AOPEndpoint20","AOPEndpoint21","AOPEndpoint22","AOPEndpoint23","AOPEndpoint24","AOPEndpoint25","AOPEndpoint26","AOPEndpoint27","AOPEndpoint28","AOPEndpoint29","AOPEndpoint30","AOPEndpoint31","AOPEndpoint32","SP$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="AOP endpoint 43","IOReportChannels"=((0x57414b4530303030,0x100020001,"spu_none"),(0x57414b4530303031,0x100020001,"spu"),(0x57414b4530303032,0x100020001,"spu_queue_overflow_ep"),(0x57414b4530303033,0x100020001,"spu_osmium"),(0x57414b4530303034,0x100020001,"spu_platinum"),(0x57414b4530303035,0x100020001,"spu_activity_alarm"),(0x57414b4530303036,0x100020001,"spu_sedentary_alarm"),(0x57414b4530303037,0x100020001,"spu_gesture"),(0x57414b4530303038,0x100020001,"spu_touch"),(0x57414b$ + | | | | "IOReportLegendPublic" = Yes + | | | | "slaveAlignment" = 0x40 + | | | | "IONameMatched" = "AOPEndpoint12" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPU" + | | | | "rx queue size" = 0x4000 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPU" + | | | | "tx queue size" = 0x4000 + | | | | "allowed-action-list" = {"SPUApp"={"perform-command"={"32"=Yes,"10"=Yes,"40"=Yes,"33"=Yes,"48"=Yes,"41"=Yes,"34"=Yes,"0"=Yes,"42"=Yes,"35"=Yes,"121"=Yes,"36"=Yes,"4"=Yes,"37"=Yes,"44"=Yes,"45"=Yes,"38"=Yes,"46"=Yes,"39"=Yes,"47"=Yes},"set-property"={"222"=Yes,"211"=Yes,"219"=Yes,"208"=Yes,"220"=Yes,"225"=Yes,"228"=Yes,"217"=Yes,"69"=Yes,"44"=Yes,"70"=Yes,"226"=Yes,"209"=Yes,"210"=Yes,"221"=Yes,"71"=Yes,"218"=Yes,"224"=Yes,"72"=Yes},"get-property"={"216"=Yes,"225"=Yes,"214"=Yes,"220"=Yes,"43"=Yes,"69"=Yes,"223"=Yes,"71$ + | | | | } + | | | | + | | | +-o aop-audprov + | | | { + | | | "DebugState" = {"_aop_latency"=0x1,"_ap_latency"=0xf4} + | | | "IOUserClientClass" = "AppleSPUUserClient" + | | | "service_id" = 0x1000000e + | | | "IOReportLegendPublic" = Yes + | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | "IOReportLegend" = ({"IOReportGroupName"="AOP","IOReportChannels"=((0x4e554d2052452030,0x100020001,"Ready reports"),(0x4e554d2052452031,0x100020001,"Gyro reports"),(0x4e554d2052452032,0x100020001,"Accel reports"),(0x4e554d2052452033,0x100020001,"Compass reports"),(0x4e554d2052452034,0x100020001,"HID reports"),(0x4e554d2052452039,0x100020001,"Grape reports"),(0x4e554d2052452041,0x100020001,"Platinum reports"),(0x4e554d2052452042,0x100020001,"Lisa reports"),(0x4e554d2052452043,0x100020001,"ALS reports"),(0x4e554d20524$ + | | | } + | | | + | | +-o dart-aop@E4818000 + | | | | { + | | | | "dart-id" = <05000000> + | | | | "IOInterruptSpecifiers" = (<87010000>) + | | | | "AAPL,phandle" = <7e000000> + | | | | "IODeviceMemory" = (({"address"=0x2f4818000,"length"=0x4000}),({"address"=0x2f481c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000046504144000000004441504600000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d616f7000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000040000000a000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <87010000> + | | | | "dapf-instance-0" = <000024e402000000730324e402000000010000000000000000000000000000000000000000000000000000000000000000030100008046a502000000038046a50200000001000000000000000000000000000000000000000000000000000000000000000003010000402be40200000043462be402000000010000000000000000000000000000000000000000000000000000000000000000030100004028e402000000f34028e40200000001000000000000000000000000000000000000000000000000000000000000000003010080c129e4020000009bc529e4020000000100000000000000000000000000000000000000000000000000000000000000$ + | | | | "vm-base" = <00c0010000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b7010080000000001802000004000000fcffff3f00000000d4402e000000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000001f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008081e400000000004000000000000000c081e4000000000040000000000000> + | | | | "vm-size" = <0040feffff020000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000007E" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <7e000000> + | | | | } + | | | | + | | | +-o mapper-aop@0 + | | | | | { + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "name" = <6d61707065722d616f7000> + | | | | | "AAPL,phandle" = <7f000000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <7f000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-aop-admac@A + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <0a000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d616f702d61646d616300> + | | | | | "AAPL,phandle" = <80000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <80000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-scm@4 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "name" = <6d61707065722d73636d00> + | | | | "AAPL,phandle" = <81000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <81000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o pmgr@C0700000 + | | | | { + | | | | "reg" = <000070c00000000000c00c0000000000000028d4000000000000080000000000000000c0000000000000070000000000000020d40000000000c0070000000000004000d40000000000100000000000000000e20000000000002000000000000000000500000000000010ef00000000000000e4000000000000900000000000000000e500000000000010e800000000000000e700000000000010000000000000000005000000000000000100000000000000150000000000000001000000000000002500000000000000010000000000000035000000000000000100000000000000e20100000000002000000000000000000501000000000010ef00000000000000e4010000$ + | | | | "apsc-snooze" = <00000000> + | | | | "dcs-tvm" = <01000000> + | | | | "dvd-factor" = <00000100> + | | | | "voltage-states5" = + | | | | "rosc-apply" = <00000000> + | | | | "events" = <000001010101000141465f464153545f434c4b5f534c4f00000000020000c601534f435f54564d5f54454d505f300000000000030000c701534f435f54564d5f54454d505f310000000000040000c801534f435f54564d5f54454d505f320000000000050000c901534f435f54564d5f54454d505f330000000000060000ca014443535f54564d5f54454d505f300000000000070000cb014443535f54564d5f54454d505f310000000000080000cc014443535f54564d5f54454d505f320000000000090000cd014443535f54564d5f54454d505f3300000000000a0000ce014746585f54564d5f54454d505f3000000000000b0000cf014746585f54564d5f54454d505$ + | | | | "config-ret-mem-grp-mode" = <01000000> + | | | | "interrupt-parent" = <69000000> + | | | | "bridge-reg-index" = <2f000000> + | | | | "cpu-apsc" = <01000000> + | | | | "vdd-cio-rail-pg" = <01000000> + | | | | "ane-dpe" = <01000000> + | | | | "dvd-period-us" = <401f0000> + | | | | "function-perf-boost" = <409c0000000000004443535f5057525f474154450000000030750000000000004443535f434c4b5f4741544500000000a86100000000000043504d5f5057525f4741544500000000204e0000040f01004443535f504552465f424f4f535400001027000007000210414d43435f434c4b5f47415445000000102700001a070300494d585f5057525f4741544500000000102700001907021d534d585f5057525f4741544500000000102700001905021c524d585f5057525f4741544500000000> + | | | | "ap-wake-sources" = <03000000414f502e43505557616b657570415000000000000000000000000000000000000c000000414f502e4750494f2e495251360000000000000000000000000000000000000033000000414f502e4f7574626f784e6f74456d70747900000000000000000000000000004a000000414f502e53504d49302e5357330000000000000000000000000000000000000053000000414f502e53504d49312e5357330000000000000000000000000000000000000057000000415443302e43494f57616b65757000000000000000000000000000000000000058000000415443302e55534257616b65757000000000000000000000000000000000000059000000$ + | | | | "ppt-thrtl" = + | | | | "function-pmp_control" = <8900000043504d50> + | | | | "voltage-states9-sram" = <0000000016030000807825141603000080eed5241603000000ff712f160300000059d431160300000028503716030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "tunableh-major-rev" = <02000000> + | | | | "dvd-threshold-us" = + | | | | "acc-harvesting" = <01000000> + | | | | "voltage-states0" = <010000009402000001000000d50200000100000025030000> + | | | | "frc-cpm-on-hack" = <00000000> + | | | | "pwrgate-regs" = <00000000ac400200000000ff0000008000000000ac500200ffffffff0000008000000000ac600200ffbf000000000080> + | | | | "hw-dpe-reg" = <0080e41002000000280000000000000000000100000100404543504d0000000000000000000000000080e41102000000280000000000000000000100000100405043504d00000000000000000000000000900510020000002800000000000000000001000001004045434f5245300000000000000000000000901510020000002800000000000000000001000001004045434f5245310000000000000000000000902510020000002800000000000000000001000001004045434f5245320000000000000000000000903510020000002800000000000000000001000001004045434f524533000000000000000000000090051102000000280000000000000000000$ + | | | | "devices" = <0000020000000000000000040500000000000000000000000000010000000000454350553000000000000000000000000000020000000000000001040600000000000000000000000000020000000000454350553100000000000000000000000000020000000000000002040700000000000000000000000000030000000000454350553200000000000000000000000000020000000000000003040800000000000000000000000000040000000000454350553300000000000000000000000000050000000000000004040900000000000000000000000000050000000000504350553000000000000000000000000000050000000000000005040a00000000000000$ + | | | | "perf-domains" = <00040001000000002c010000534f43000000000000000000000000000101010200000000000000004543505500000000000000000000000002040003000000002c0100004443530000000000000000000000000005010105000000000000000050435055000000000000000000000000080000080000000000000000414e45000000000000000000000000000b04000b000000002c01000044495350000000000000000000000000> + | | | | "tunableh-minor-rev" = <00000000> + | | | | "compatible" = <706d6772312c743831323200> + | | | | "name" = <706d677200> + | | | | "voltage-states9" = <000000007d000000807825147602000080eed524ad02000000ff712fe90200000059d431110300000028503711030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "AAPL,phandle" = <82000000> + | | | | "total-rails-leakage" = <00000000> + | | | | "interrupts" = + | | | | "soc-dpe" = <01000000> + | | | | "gfx-tvm" = <01000000> + | | | | "voltage-states2" = <010000006702000001000000ad02000001000000f30200000100000043030000010000007a030000> + | | | | "soc-tvm" = <01000000> + | | | | "aes-domain-hack" = <00000000> + | | | | "clpc" = <03000000> + | | | | "voltage-states1-sram" = <008a582c16030000002d3a3e1603000000f9f95720030000009d72777f03000000ef2e87bb03000000775998f20300000027cba329040000> + | | | | "function-mcc_ctrl" = <68000000246d654d> + | | | | "power-domains" = <004f0101000000004146495f4146430000000000000000000050010200000000414d43433000000000000000000000000051010300000000414d43433200000000000000000000000052010400000000444353300000000000000000000000000053010500000000444353320000000000000000000000000054010600000000444353310000000000000000000000000055010700000000444353330000000000000000000000000056010800000000444353340000000000000000000000000057010900000000444353350000000000000000000000000058010a00000000444353360000000000000000000000000059010b00000000444353370000000000$ + | | | | "reset-noaccess-poll" = <01000000> + | | | | "first-acc-dvfm-map-state" = <01000000> + | | | | "gpu-pwc-win-size" = <07000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "amx-thrtl" = <01000000> + | | | | "dvc-debug" = <01000000> + | | | | "clocks" = <3d01010100000000464153545f41460000000000000000003e01010200000000534252000000000000000000000000003f01010300000000504d5000000000000000000000000000400101040000000044504500000000000000000000000000410101050000000053494f5f4100000000000000000000004201010600000000414d435f554644495f444154410000004301010700000000444953503000000000000000000000004401010800000000414e530000000000000000000000000045010109000000004953505f4300000000000000000000004601010a000000004d4355000000000000000000000000004701010b00000000414e45305f535953000000000$ + | | | | "wake-time-events" = <01000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "device-bridges" = <000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040300000000000000000000000000000000000000000000000$ + | | | | "noise-hack" = <00000000> + | | | | "#bridges" = <20000000> + | | | | "pmgr-dock-fifo-channel" = <03000000> + | | | | "disp-tvm" = <01000000> + | | | | "perf-counter-version" = <02000000> + | | | | "ptd-ranges" = <0a0000000b0000000c0000000d0000000200000004000000> + | | | | "perf-regs" = <010000000040030038000000030000000000000000000200320100000000000000000000008007001a000000000000000000000000c007001a000000000000000300000000b8070001000000030000000200000000d806006200000000000000> + | | | | "energy-counters" = <00000305000000194543505530000000000000000000000000000000000000000000000000000000000003060000001945435055310000000000000000000000000000000000000000000000000000000000030700000019454350553200000000000000000000000000000000000000000000000000000000000308000000194543505533000000000000000000000000000000000000000000000000000000000003090000001a50435055300000000000000000000000000000000000000000000000000000000000030a0000001a50435055310000000000000000000000000000000000000000000000000000000000030b0000001a5043505532000000$ + | | | | "misc-acg-offset" = <00800300> + | | | | "cluster-ctl-offset" = <00000000> + | | | | "dvfm-cop-action" = <02000000> + | | | | "voltage-states11" = <010000009402000001000000c102000001000000df02000001000000f80200000100000043030000> + | | | | "misc-cores-offset" = <00400300> + | | | | "snooze-counter" = <01000000> + | | | | "clusters" = <0400000004000000> + | | | | "nominal-performance1" = + | | | | "bridge-settings-version" = <01000000> + | | | | "cpu-power-gate-latency-us" = <50c30000> + | | | | "IODeviceMemory" = (({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e4280000,"length"=0x80000}),({"address"=0x2d0000000,"length"=0x70000}),({"address"=0x2e4200000,"length"=0x7c000}),({"address"=0x2e4004000,"length"=0x1000}),({"address"=0x210e20000,"length"=0x2000}),({"address"=0x210050000,"length"=0xef1000}),({"address"=0x210e40000,"length"=0x9000}),({"address"=0x210e50000,"length"=0xe81000}),({"address"=0x210e70000,"length"=0x1000}),({"address"=0x210050000,"length"=0x10000}),({"address"=0x210150000,"length"=0x10000})$ + | | | | "voltage-states8" = <0053531dffffffff001e7c29ffffffff00e9a435ffffffff007e5f40ffffffff0049884cffffffff00f9f957ffffffff00584661ffffffff004bb667ffffffff00b7926affffffff003e266effffffff00c5b971ffffffff004c4d75ffffffff00ee9779ffffffff00752b7dffffffff00ab997effffffff00fcbe80ffffffff00835284ffffffff00b9c085ffffffff00d47786ffffffff00c7e78cffffffff> + | | | | "interrupt-config" = <0000000144564d465f434f500000000000000000> + | | | | "pmp" = <02000000> + | | | | "voltage-states5-sram" = <002ca33016030000009916411603000000ebd2501b0300000007215f25030000008f4b70340300000017768139030000004e7b905703000000feec9b7f03000000ae5ea7a7030000004319b2bb03000000a265bbde03000000e6fac3f7030000000fd9cb15040000001d00d34704000000f5b8d84704000000b2badd4704000000394ee14704000000f64fe64704000000ce08ec7904000000a6c1f179040000> + | | | | "voltage-states1" = <165801005802000035f500007b02000071ad0000a8020000be7f00000c030000df7000003e0300002864000089030000285d0000ca030000> + | | | | "pmgr-dock-fifo-agent" = <01000000> + | | | | "function-toggle_vdd_cio" = <9f00000034574b7043566d7000000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "llc-thrtl" = <00000000> + | | | | "cpu-fixed-freq-pll-relock" = <01000000> + | | | | "device_type" = <706d677200> + | | | | "panic-debug-switch-pg-wa" = <15000000> + | | | | "sep-ps-timeout" = <05000000> + | | | | "optional-bridge-mask" = <00000000> + | | | | "volman-sw-err-check" = <01000000> + | | | | "boost-performance1" = + | | | | "ps-regs" = <010000000000000001f8ff030100000000400000000000000100000000800000000000000100000000c00000000000000000000000000000ff0300000000000000010000ffffef780000000000020000ffffffff0000000000030000cffbffc10000000000040000bfffff0100000000000c00000100000000000000004000000000000000000000008000001f0000000000000000c0000000000000000000000000010001000000> + | | | | "panic-nub-pg-wa" = <13000000> + | | | | "mtr-polynom-fuse-agx" = <03000000100000004c850000e0ee000020f0ff01fffbff0106000000100000000e850000f6ee00001bf0ff01fefbff010800000010000000af8500008bef000010f0ff01f7fbff0109000000100000005685000055ef000010f0ff01f9fbff010b000000100000001588000008ef00001bf0ff01fdfbff010e000000100000009684000089ef000009f0ff01f6fbff01> + | | | | "tunableh-board-id" = <30000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | } + | | | | + | | | +-o AppleT8122PMGR + | | | | { + | | | | "IOClass" = "AppleT8122PMGR" + | | | | "IOPlatformSleepAction" = 0x258 + | | | | "AppleARMPerformanceControllerDVDThresholdUS1" = 0x3e8 + | | | | "AppleARMPerformanceControllerDVDFactor1-slowloop" = 0x10000 + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122PMGR" + | | | | "IOMatchedAtBoot" = Yes + | | | | "AppleARMPerformanceControllerDVDFactor1-lpm" = 0x10000 + | | | | "IOReportLegendPublic" = Yes + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent00000082" = <> + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "pmgr1,t8122" + | | | | "IOPlatformHaltRestartAction" = 0x15f90 + | | | | "AppleARMPerformanceControllerDVDFactor1-upo" = 0x10000 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122PMGR" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122PMGR" + | | | | "IONameMatched" = "pmgr1,t8122" + | | | | "IOPlatformActiveAction" = 0x15f90 + | | | | "IOPlatformQuiesceAction" = 0x15f90 + | | | | "AppleARMPerformanceControllerDVDFactor1-hip" = 0x10000 + | | | | "AppleARMPerformanceControllerDVDFactor1" = 0x10000 + | | | | "IOReportLegend" = ({"IOReportGroupName"="CPU Stats","IOReportChannels"=((0x43505520564f4c54,0x700020002,"ECPU")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPU Complex Voltage States"},{"IOReportGroupName"="CPU Stats","IOReportChannels"=((0x4543505530000000,0x800020002),(0x4543505531000000,0x800020002),(0x4543505532000000,0x800020002),(0x4543505533000000,0x800020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPU Core Performance State$ + | | | | "MtrPolynomGFX" = <03000000100000004c850000e0ee000020f0ff01fffbff0106000000100000000e850000f6ee00001bf0ff01fefbff010800000010000000af8500008bef000010f0ff01f7fbff0109000000100000005685000055ef000010f0ff01f9fbff010b000000100000001588000008ef00001bf0ff01fdfbff010e000000100000009684000089ef000009f0ff01f6fbff01> + | | | | "AppleARMPerformanceControllerDVDPeriodUS1" = 0x1f40 + | | | | "IOPlatformWakeAction" = 0x258 + | | | | } + | | | | + | | | +-o clpc + | | | | | { + | | | | | "clpc-match-version" = 0x3 + | | | | | "compatible" = <636c70632c743831323200> + | | | | | "interrupt-parent" = <69000000> + | | | | | "AAPL,phandle" = <83000000> + | | | | | "soc-devices" = <030000000400000006000000> + | | | | | "interrupts" = <7e02000000000000000000007d020000> + | | | | | "IOInterruptSpecifiers" = (<7e020000>,<00000000>,<00000000>,<7d020000>) + | | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | | "ptd-ranges" = <1f000000410000002100000022000000> + | | | | | "device_type" = <636c706300> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "IOReportLegendPublic" = Yes + | | | | | "name" = <636c706300> + | | | | | "events" = <5400000055000000560000005700000058000000590000005a00000060000000> + | | | | | } + | | | | | + | | | | +-o AppleCLPC + | | | | | { + | | | | | "#clpc-analysis-level" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122CLPC" + | | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | | "#cpu-core-mask-cluster-0" = 0xf + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "~pkg-power-split-gpu-fraction" = 0x8000 + | | | | | "~pkg-power-split-ane-fraction" = 0x0 + | | | | | "#cpu-core-mask-cluster-1" = 0xf0 + | | | | | "`pkg-avg-limiter-ki" = 0x757 + | | | | | "~carplay-power-limit" = 0xff0000 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOClass" = "AppleCLPC" + | | | | | "#pkg-lowpeak-limiter-input-tc" = 0x3c + | | | | | "~pkg-avg-max-power" = 0x730000 + | | | | | "#pkg-avg-limiter-input-tc" = 0x3e8 + | | | | | "`pkg-lowpeak-limiter-kp" = 0x2d0e5 + | | | | | "IOUserClientClass" = "AppleCLPCUserClient" + | | | | | "IONameMatched" = "clpc,t8122" + | | | | | "#cpu-avg-limiter-target-tc" = 0x0 + | | | | | "#cpu-num-cores" = 0x8 + | | | | | "#pkg-power-zone-filter-tc-0" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122CLPC" + | | | | | "#pkg-lowpeak-limiter-target-tc" = 0x0 + | | | | | "IOFunctionParent00000083" = <> + | | | | | "~pkg-power-zone-target-0" = 0x730000 + | | | | | "#pkg-avg-batt-power-target-tc" = 0x0 + | | | | | "#clpc-version" = 0x2 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122CLPC" + | | | | | "#cpu-lowpeak-limiter-input-tc" = 0xf + | | | | | "IOReportLegendPublic" = Yes + | | | | | "#pkg-avg-limiter-target-tc" = 0x0 + | | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | | "#pkg-avg-therm-power-target-tc" = 0x0 + | | | | | "#cpu-avg-limiter-input-tc" = 0x28 + | | | | | "`cpu-lowpeak-limiter-ki" = 0x1096c + | | | | | "#pkg-peak-power-target-tc" = 0xa + | | | | | "~pkg-power-zone-target-offset-0" = 0x0 + | | | | | "`pkg-low-power-target" = 0xffffffffff000000 + | | | | | "`cpu-avg-limiter-kp" = 0xb851d + | | | | | "~pkg-lowpeak-max-power" = 0x730000 + | | | | | "IOPropertyMatch" = {"clpc-match-version"=0x3} + | | | | | "IOProviderClass" = "ApplePMGRNub" + | | | | | "IONameMatch" = "clpc,t8122" + | | | | | "#clpc-profile-level" = 0x0 + | | | | | "#cpu-lowpeak-limiter-target-tc" = 0x0 + | | | | | "`cpu-avg-limiter-ki" = 0xded3 + | | | | | "#pkg-low-power-target-tc" = 0x64 + | | | | | "~pkg-power-split-cpu-fraction" = 0x8000 + | | | | | "`pkg-avg-therm-power-target" = 0xffffffffff000000 + | | | | | "`pkg-hip-power-target" = 0xffffffffff000000 + | | | | | "`cpu-lowpeak-limiter-kp" = 0x2c91 + | | | | | "#cpu-num-clusters" = 0x2 + | | | | | "#ane-num-clusters" = 0x1 + | | | | | "`pkg-avg-limiter-kp" = 0xd1b + | | | | | "IOPlatformHaltRestartAction" = 0x1f4 + | | | | | "`pkg-lowpeak-limiter-ki" = 0x96bc + | | | | | } + | | | | | + | | | | +-o AppleCLPCUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 24063, powerexperienced" + | | | | | } + | | | | | + | | | | +-o AppleCLPCUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 24063, powerexperienced" + | | | | | } + | | | | | + | | | | +-o AppleCLPCUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | | } + | | | | + | | | +-o soc-tuner + | | | | | { + | | | | | "fb-caching" = <00000000> + | | | | | "device-set-13" = <99010000> + | | | | | "AAPL,phandle" = <84000000> + | | | | | "device-set-12" = <90010000> + | | | | | "cio-config" = <01000000> + | | | | | "device-set-9" = <77000000> + | | | | | "#device-sets" = <0e000000> + | | | | | "function-mcc_ctrl" = <68000000246d654d> + | | | | | "device-set-8" = <9c010000> + | | | | | "device-set-11" = <2c000000> + | | | | | "device-set-7" = <9b010000> + | | | | | "cio-reconfig-wait-enable" = <01000000> + | | | | | "device-set-6" = <9a010000> + | | | | | "device-set-10" = <66010000> + | | | | | "name" = <736f632d74756e657200> + | | | | | "device-set-5" = <82010000> + | | | | | "compatible" = <736f632d74756e65722c743830323000> + | | | | | "device-set-4" = <0e010000> + | | | | | "ane-gpu-mccpwrgt" = <01000000> + | | | | | "device-set-3" = <4800000063000000640000006500000067000000> + | | | | | "fr-scaling-wa" = <01000000> + | | | | | "device-set-2" = <31000000> + | | | | | "mcc-configs" = <01000000020000000300000004000000> + | | | | | "soc-tuning" = <01000000> + | | | | | "device-set-1" = <62010000> + | | | | | "usb-audio-wa" = <01000000> + | | | | | "vdd-cio-pg" = <00000000> + | | | | | "device-set-0" = <290000006d0000002901000066010000> + | | | | | "mcc-power-gating" = <01000000> + | | | | | "device_type" = <736f632d74756e657200> + | | | | | "sbr-clk-gating-wa" = <00000000> + | | | | | } + | | | | | + | | | | +-o AppleT8020SOCTuner + | | | | { + | | | | "IOClass" = "AppleT8020SOCTuner" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8020SOCTuner" + | | | | "IOProviderClass" = "ApplePMGRNub" + | | | | "IOPlatformActiveAction" = 0x157c0 + | | | | "IOPlatformWakeAction" = 0x157c0 + | | | | "IOPlatformQuiesceAction" = 0x157c0 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "soc-tuner,t8020" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "soc-tuner,t8020" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8020SOCTuner" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8020SOCTuner" + | | | | } + | | | | + | | | +-o ppm + | | | | { + | | | | "IOInterruptSpecifiers" = (<7f020000>,<00000000>) + | | | | "AAPL,phandle" = <85000000> + | | | | "min-update-interval-overrides" = <0200000000000000> + | | | | "cpms-batt2client" = + | | | | "ptd-ranges" = <2000000040000000> + | | | | "cpms-policy-type" = <03000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "cpms-dt-topology" = <0000000000000000000000000100000064726f6f700000000000000000000000010000000000000000000000e803000070756c73655f706f7765722e73000000> + | | | | "name" = <70706d00> + | | | | "interrupt-parent" = <69000000> + | | | | "ptd-feature-enabled" = <01000000> + | | | | "function-btm-stop" = + | | | | "compatible" = <70706d2c706173737468726f75676800> + | | | | "interrupts" = <7f02000000000000> + | | | | "function-btm-config" = + | | | | "btm-enabled" = <01000000> + | | | | "cpms-dt-curve" = <000000000000000000000000010000002d000000540000007f000000ac000000d4000000ff000000e8f70100c0d40100a58c0100054c0100c804010067ba0000ca760000cf2e00007061636b616765000000000000000000010000000000000000000000010000002d000000540000007f000000ac000000d4000000ff000000e8f70100e59d0000ac880000a6750000ae600000c94a0000e2360000b22100007061636b616765000000000000000000> + | | | | "auto-rate-change" = <01000000> + | | | | "device_type" = <70706d00> + | | | | "function-btm-start" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | } + | | | | + | | | +-o ApplePassthroughPPM + | | | { + | | | "UseWeightFactorModelPp" = 0x0 + | | | "UseSystemLoadInputsPeff" = 0x0 + | | | "UseOverrideClientPowerBudgets" = 0x0 + | | | "OverrideBatteryInputQmax" = 0x0 + | | | "OverrideDroopUtilization" = 0x0 + | | | "OverrideBatteryInputIss" = 0x0 + | | | "UseOverrideUnDroopControlEffort" = 0x0 + | | | "OverrideSnapshotSignificantChange" = 0x1999 + | | | "UseLpemData" = 0x0 + | | | "CPMSSupported" = 0x1 + | | | "IOKitDebug" = 0xffff + | | | "OverrideBatteryInputDSG" = 0x0 + | | | "OverrideEnableFilteredRssI3I4" = 0x0 + | | | "UseOverrideAllowPolicyRun" = 0x0 + | | | "UseVoltageBattMeasPrevPs" = 0x0 + | | | "minVcutDynEntry" = 0x0 + | | | "PowerServoGains" = (0x0,0x0,0x0,0x0) + | | | "weightFactorModelPp" = 0x0 + | | | "IONameMatch" = "ppm,passthrough" + | | | "UseOverrideBatteryInputResScale" = 0x0 + | | | "UseAbnormalPmaxRiseProtectThreshold" = 0x0 + | | | "IOClass" = "ApplePassthroughPPM" + | | | "ppMaxPrevious" = 0x0 + | | | "UseFilterRatioDownPs" = 0x0 + | | | "OverrideBatteryInputDOD" = 0x0 + | | | "UseOverrideBatteryInputV" = 0x0 + | | | "UseEnableVcutDynEntry" = 0x0 + | | | "OverrideBatteryInputPsCutoffVoltage" = 0x0 + | | | "voltageThreshPropDynEntry" = 0x0 + | | | "OverrideBatteryInputRaTable" = (0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0) + | | | "OverrideRtrace" = 0x0 + | | | "decayRatePmuMeasFilter" = 0x0 + | | | "UseMeasuredSystemLoad" = 0x0 + | | | "OverrideUnDroopIntegratorState" = 0x0 + | | | "voltageThreshDerivDynEntry" = 0x0 + | | | "FullOperationModePowerFractionHyst" = 0xccc + | | | "OverrideOperationMode" = 0x0 + | | | "abnormalPmaxRiseProtectThreshold" = 0x0 + | | | "OverrideBrownoutRiskCELane" = 0xffffffffffff0000 + | | | "UseVoltageThreshDerivDynEntry" = 0x0 + | | | "MeasuredSystemLoadWindowSize" = 0x0 + | | | "decayPropDynEntry" = 0x0 + | | | "delayDecayDeriv" = 0x0 + | | | "filterRatioDownPs" = 0x0 + | | | "OverridePercentileRankPs" = 0x0 + | | | "UseOverrideBatteryInputIss" = 0x0 + | | | "UseSystemLoadInputsPt" = 0x0 + | | | "UseDelayDecayDeriv" = 0x0 + | | | "PPMVector" = {"TStamp"=0x18399f32ad82508c,"BaselineSysCap"=(0xc350),"OverrideSysCap"=(0x0),"TotalDemandRaw"=(0xa),"TotalDemandAdj"=(0xa),"Client5"={"Car"=(0x0),"reqBdg"=0x10000,"Pwr"=(0xa),"Idx"=0x0,"Bdg"=0x10000},"ModeledSysCap"=(0xc350),"ProactiveSysCap"=(0xc350),"DroopCtrlEff"=(0x0),"DroopPwrRemoval"=(0x0),"NetSysCap"=(0xc350)} + | | | "OverrideDroopIntegratorState" = 0x0 + | | | "UseFlagPpMaxFusion" = 0x0 + | | | "OverrideBatteryInputFS_ACT" = 0x0 + | | | "UseFreshCellParamsForPmax" = 0x0 + | | | "UseOverrideBatteryInputTimeScales" = 0x0 + | | | "UseSocThreshPropDynEntry" = 0x0 + | | | "UseOverrideBatteryInputFS_ACT" = 0x0 + | | | "UseDecayRatePmuMeasFilterReducedMode" = 0x0 + | | | "UseEnablePMUMeasForVoltageFeedback" = 0x0 + | | | "UseOverrideBatteryInputPuCutoffVoltage" = 0x0 + | | | "UseOverrideBatteryInputWeightedRa" = 0x0 + | | | "psMaxPrevious" = 0x0 + | | | "weightFactorModelPx" = 0x0 + | | | "PPMDebug" = ({"TStamp"=0x18399f32ad82508c,"BaselineSysCap"=(0xc350),"OverrideSysCap"=(0x0),"TotalDemandRaw"=(0xa),"TotalDemandAdj"=(0xa),"Client5"={"Car"=(0x0),"reqBdg"=0x10000,"Pwr"=(0xa),"Idx"=0x0,"Bdg"=0x10000},"ModeledSysCap"=(0xc350),"ProactiveSysCap"=(0xc350),"DroopCtrlEff"=(0x0),"DroopPwrRemoval"=(0x0),"NetSysCap"=(0xc350)}) + | | | "UseOverrideUnDroopIntegratorState" = 0x0 + | | | "systemLoadInputsPk" = 0x0 + | | | "EnableBatteryAgingModel" = 0x0 + | | | "UseOverrideDroopControlEffort" = 0x0 + | | | "filterRatioUpPp" = 0x0 + | | | "UseOverrideDroopUtilization" = 0x0 + | | | "OverrideBrownoutRiskCEThreshold" = 0x0 + | | | "IOProbeScore" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPb" = 0x0 + | | | "UseCurrentRateThreshold" = 0x0 + | | | "EnableBatteryModelToSafeHarborFallback" = 0x10000 + | | | "DroopUtilizationKiUp0" = 0x0 + | | | "UseOverrideBatteryInputDSG" = 0x0 + | | | "UseFlagFilterPs" = 0x0 + | | | "OverrideBatteryInputRss" = 0x0 + | | | "voltageThreshold" = 0x0 + | | | "systemLoadInputsPt" = 0x0 + | | | "IOMatchCategory" = "ApplePPM" + | | | "OverrideBatteryInputMeasuredPp" = 0x0 + | | | "currentRateThreshold" = 0x0 + | | | "kiGainDown" = 0x0 + | | | "UseOverrideBatteryInputPsCutoffVoltage" = 0x0 + | | | "UseBaselineSystemCapability" = 0x0 + | | | "UseOverrideBatteryInputRss" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.ApplePassthroughPPM" + | | | "OverrideBatteryInputIT_MISC_STATUS" = 0x0 + | | | "OverrideClientPowerBudgets" = (0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,0x7fffffff,$ + | | | "IOFunctionParent00000085" = <> + | | | "UseOverrideBatteryInputIT_MISC_STATUS" = 0x0 + | | | "decayRatePmuMeasFilterReducedMode" = 0x0 + | | | "OverrideBatteryInputResScale" = 0x0 + | | | "enableVcutDynEntry" = 0x0 + | | | "UseDelayDecayProp" = 0x0 + | | | "PmaxOCV" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPp" = 0x0 + | | | "systemLoadInputsPeff" = 0x0 + | | | "UseOverrideSystemCapability" = 0x0 + | | | "ForceBatteryModelFallback" = 0x0 + | | | "voltageBattMeasPrevPs" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPs" = 0x0 + | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePassthroughPPM" + | | | "UseOverrideDeltaVoltageTargetVdroop" = 0x0 + | | | "maxVcutDynEntry" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPu" = 0x0 + | | | "UseOverrideBatteryPowerConsumptionPMU" = 0x0 + | | | "UseDecayRatePmuMeasFilter" = 0x0 + | | | "filterRatioDownPp" = 0x0 + | | | "UseWeightFactorModelPx" = 0x0 + | | | "OverrideBatteryInputWeightedRa" = 0x0 + | | | "UseSocThreshDerivDynEntry" = 0x0 + | | | "gainDerivDynEntry" = 0x0 + | | | "UseFilterRatioUpPp" = 0x0 + | | | "FlagFilterPp" = 0x0 + | | | "UsePsMaxPrevious" = 0x0 + | | | "UseOverrideRtrace" = 0x0 + | | | "UseOverrideBatteryInputRaTable" = 0x0 + | | | "UseWeightFactorModelPs" = 0x0 + | | | "BaselineSystemCapability" = (0xc350) + | | | "kiGainUp" = 0x0 + | | | "IOUserClientClass" = "ApplePPMUserClient" + | | | "UseOverrideDeltaVoltageTargetPmax" = 0x0 + | | | "currentMeasPuVfThreshold" = 0x0 + | | | "IOReportLegendPublic" = Yes + | | | "enablePMUMeasForVoltageFeedback" = 0x0 + | | | "UseKiGainDown" = 0x0 + | | | "UseOverrideBatteryInputMeasuredPuSouth" = 0x0 + | | | "OverrideDroopControlEffort" = 0x0 + | | | "EnablePPMSelfDefinedLogging" = 0x10000 + | | | "UseOverrideDroopIntegratorState" = 0x0 + | | | "FlagFilterPs" = 0x0 + | | | "OverrideBrownoutRiskDebounceTime" = 0x0 + | | | "PmaxExtraFaultPowerThresholds" = (0x0,0x0,0x0) + | | | "OverrideAllowPolicyRun" = 0x0 + | | | "OverrideDeltaVoltageTargetPmax" = 0x0 + | | | "FullOperationModePowerFraction" = 0xe666 + | | | "OverridePowerServoControlEfforts" = (0x0) + | | | "UseOverrideBatteryInputDOD" = 0x0 + | | | "UseOverridePercentileRankPs" = 0x0 + | | | "UsePpMaxPrevious" = 0x0 + | | | "OverrideSystemCapability" = (0x7fffffff,0x7fffffff,0x7fffffff) + | | | "socThreshDerivDynEntry" = 0x0 + | | | "OverrideBatteryInputMeasuredPuSouth" = 0x0 + | | | "UseOverrideVoltageTargetVdroop" = 0x0 + | | | "IOReportLegend" = ({"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x5574696c697a746e,0xc00020002),(0x4374726c45666630,0xc00020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Droop Controller"},{"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x4c616e6573456e67,0x400020002)),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="CPMS Lanes engagement"},{"IOReportGroupName"="PPM Stats","IOReportChannels"=((0x537973496e737400,0xc00020$ + | | | "voltageBattMeasPrevPp" = 0x0 + | | | "OverrideBatteryInputV" = 0x0 + | | | "IONameMatched" = "ppm,passthrough" + | | | "UseFlagFilterPp" = 0x0 + | | | "OverrideBatteryInputMeasuredPu" = 0x0 + | | | "SystemCapabilityFallbackPowersLow" = (0xdac,0xdac,0xdac) + | | | "UseGainDerivDynEntry" = 0x0 + | | | "socThreshPropDynEntry" = 0x0 + | | | "UseFilterRatioDownPp" = 0x0 + | | | "UseOverrideBatteryInputVgg" = 0x0 + | | | "DroopUtilizationTarget0" = 0x0 + | | | "OverrideVoltageTargetVdroop" = 0x0 + | | | "OverrideBatteryInputTemp" = 0x0 + | | | "DroopPowerRemovalFactor0" = 0x0 + | | | "UseOverridePowerSample1sWindow" = 0x0 + | | | "IOProviderClass" = "ApplePMGRNub" + | | | "UseOverrideEnableFilteredRssI3I4" = 0x0 + | | | "OverrideBatteryInputMeasuredPs" = 0x0 + | | | "OverrideBatteryInputVgg" = 0x0 + | | | "UseKiGainUp" = 0x0 + | | | "PowerServoIntegratorMinimums" = (0x0) + | | | "DroopUtilizationKiDown0" = 0x0 + | | | "weightFactorModelPs" = 0x0 + | | | "OverrideDisableBrownoutRiskShutdownTrigger" = 0x0 + | | | "UseDecayPropDynEntry" = 0x0 + | | | "FlagPsMaxFusion" = 0x0 + | | | "delayDecayProp" = 0x0 + | | | "OverrideBatteryPowerConsumptionPMU" = (0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0) + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "UseCurrentMeasPuVfThreshold" = 0x0 + | | | "UseVoltageBattMeasPrevPp" = 0x0 + | | | "UseOverrideBatteryInputQmax" = 0x0 + | | | "FlagPpMaxFusion" = 0x0 + | | | "UseSystemLoadInputsPk" = 0x0 + | | | "UseOverridePercentileRankPp" = 0x0 + | | | "UseDecayDerivDynEntry" = 0x0 + | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePassthroughPPM" + | | | "OverridePowerSample1sWindow" = 0x0 + | | | "ClientDemandScaleFactor" = (0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64) + | | | "UseFlagPsMaxFusion" = 0x0 + | | | "UseMinVcutDynEntry" = 0x0 + | | | "OverrideBatteryInputTimeScales" = (0x0,0x0,0x0) + | | | "UseFilterRatioUpPs" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "SystemCapabilityFilterConstants" = (0x0,0x0,0x0,0x0,0x0,0x0) + | | | "OverrideUnDroopControlEffort" = 0x0 + | | | "CEFusionGains" = (0x0,0x0) + | | | "decayDerivDynEntry" = 0x0 + | | | "UseASBFastBatteryInput" = 0x0 + | | | "UseOverrideOperationMode" = 0x0 + | | | "UseMaxVcutDynEntry" = 0x0 + | | | "UseOverrideBatteryInputTemp" = 0x0 + | | | "UseVoltageThreshold" = 0x0 + | | | "OverrideBatteryInputPuCutoffVoltage" = 0x0 + | | | "OverrideBatteryInputMeasuredPb" = 0x0 + | | | "OverrideDeltaVoltageTargetVdroop" = 0x0 + | | | "OverridePercentileRankPp" = 0x0 + | | | "OverrideBrownoutRiskPmargin" = 0x0 + | | | "MinPeriodMSIntervalsKey" = (0x0,0x0,0x0) + | | | "UseOverridePowerServoControlEfforts" = 0x0 + | | | "UseVoltageThreshPropDynEntry" = 0x0 + | | | "filterRatioUpPs" = 0x0 + | | | } + | | | + | | +-o nco@C0044000 + | | | | { + | | | | "name" = <6e636f00> + | | | | "compatible" = <6e636f2c7438313031006e636f2c73356c383936307800> + | | | | "pmgr-nco-page-size" = <00400000> + | | | | "IODeviceMemory" = (({"address"=0x2d0044000,"length"=0x14000})) + | | | | "clock-ids" = <82010000830100008001000081010000> + | | | | "device_type" = <6e636f00> + | | | | "reg" = <004004c0000000000040010000000000> + | | | | "AAPL,phandle" = <86000000> + | | | | } + | | | | + | | | +-o AppleS5L8960XNCO + | | | { + | | | "IOClass" = "AppleS5L8960XNCO" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8960XNCO" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOFunctionParent00000086" = <> + | | | "IOPlatformActiveAction" = 0x14c08 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "nco,s5l8960x" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "nco,s5l8960x" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8960XNCO" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8960XNCO" + | | | } + | | | + | | +-o event-log-handler@C0700000 + | | | | { + | | | | "event-logs" = <0000000000000000b4800300000000000000000000600700010000000100000040c20300020000000200000004c006000300000003000000008007000400000004000000f03f00000500000005000000f03f00000600000006000000f03f00000700000007000000f03f00000800000008000000f00f00000900000009000000002a00000a0000000a000000f00f00000b0000000b0000000c4000000c0000000c0000000c400000> + | | | | "compatible" = <6576656e742d6c6f672d68616e646c65722c743831303100> + | | | | "interrupt-parent" = <69000000> + | | | | "AAPL,phandle" = <87000000> + | | | | "interrupts" = + | | | | "reg" = <000070c00000000000c00c0000000000000028d4000000000000080000000000000000c0000000000000070000000000000020d40000000000c0070000000000000029c0000000000040000000000000004029c0000000000040000000000000008029c000000000004000000000000000c028c0000000000040000000000000000028c00000000000800000000000000080860101000000004000000000000000808301010000000080000000000000000034c00000000000c0000000000000000035c00000000000c0000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,<1d000000>,<20000000>,<23000000>,<27000000>,<28000000>,<07020000>,,,) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <6576656e742d6c6f672d68616e646c657200> + | | | | "IODeviceMemory" = (({"address"=0x2d0700000,"length"=0xcc000}),({"address"=0x2e4280000,"length"=0x80000}),({"address"=0x2d0000000,"length"=0x70000}),({"address"=0x2e4200000,"length"=0x7c000}),({"address"=0x2d0290000,"length"=0x4000}),({"address"=0x2d0294000,"length"=0x4000}),({"address"=0x2d0298000,"length"=0x4000}),({"address"=0x2d028c000,"length"=0x4000}),({"address"=0x2d0280000,"length"=0x8000}),({"address"=0x311868000,"length"=0x4000}),({"address"=0x311838000,"length"=0x8000}),({"address"=0x2d0340000,"length"=0xc000}),({"ad$ + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "panic-on-event-log-intr" = <01000000> + | | | | "name" = <6576656e742d6c6f672d68616e646c657200> + | | | | } + | | | | + | | | +-o AppleEventLogHandler + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleEventLogHandler" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleEventLogHandler" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEventLogHandler" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEventLogHandler" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "event-log-handler,t8101" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "event-log-handler,t8101" + | | | } + | | | + | | +-o pmp@C0C00000 + | | | | { + | | | | "segment-ranges" = <000050d0020000000000000100000000000050d0020000000060030003000000006053d0020000000060030100000000006053d0020000000070040006000000> + | | | | "IOInterruptSpecifiers" = (<6e020000>,<6d020000>,<70020000>,<6f020000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <7a0000007b000000> + | | | | "AAPL,phandle" = <88000000> + | | | | "IODeviceMemory" = (({"address"=0x2d0c00000,"length"=0x6c000}),({"address"=0x2d0850000,"length"=0x4000}),({"address"=0x2d0500000,"length"=0x80000}),({"address"=0x2d03d0000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <8b000000> + | | | | "pio-vm-base" = <000000c000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <706d7000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <6e0200006d020000700200006f020000> + | | | | "clock-ids" = <> + | | | | "ptd-update-reg-index" = <03000000> + | | | | "role" = <504d5000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <706d7000> + | | | | "power-gates" = <7a0000007b000000> + | | | | "reg" = <0000c0c00000000000c0060000000000000085c0000000000040000000000000000050c000000000000008000000000000003dc0000000000040000000000000> + | | | | "pio-vm-size" = <0000004000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "PMP" + | | | | } + | | | | + | | | +-o iop-pmp-nub + | | | | { + | | | | "agx-fast-af-rd-bw-dvfs-filter" = + | | | | "dcs-bwr-threshold" = <33b30b00008018009919220033b32b0033333300> + | | | | "mc_quota_req_ptd_count" = <08000000> + | | | | "ane-slow-af-bw-dvfs-filter" = <3f000000> + | | | | "mc_cmd_ptd_count" = <02000000> + | | | | "KDebugCoreID" = 0x9 + | | | | "sochot-sensors" = <010000000200000003000000040000000500000006000000090000000a0000000b000000> + | | | | "pre-loaded" = <01000000> + | | | | "ptd-range" = <010000000000000001000000000000004e554c4c00000000000000000000000002000000010000000100000000000000504d502d53544154555300000000000003000000080000000400000000000000445646532d5354415445000000000000040000000c0000000400000000000000504d50544f4f4c00000000000000000005000000100000001000000000000000504d532d504d47522d504b540000000006000000200000001000000000000000504d532d4450452d504b54000000000007000000300000001000000000000000504d532d444556432d504b54000000000900000040000000c000000000000000534f432d4445562d504b5400000000000a$ + | | | | "sram-index" = <01000000> + | | | | "no-shutdown" = <01000000> + | | | | "uuid" = <43463838434341312d454546322d333133372d383744372d39433442374530383136304600> + | | | | "dvfs-domain" = <01000000050000000000000044435300000000000000000000000000020000000300000000000000534f4300000000000000000000000000030000000300000000000000444953505f494e540000000000000000040000000400000000000000444953505f4558540000000000000000> + | | | | "fast-die-ctrl-ce-map" = <010000000000000000000000010000000000000000000000000000004541434300000000000000000000000002000000000000000100000002000000030000000000000000000000504143435f414e450000000000000000> + | | | | "ane-fast-af-bw-threshold" = <0000050000000000000000000000000000000e00000000000000040006000000000000000000000000000d0006000000> + | | | | "user-power-managed" = <01000000> + | | | | "dcs-rd-bwr-threshold" = <33b30b00008018009919220033b32b0033333300> + | | | | "lts-voltage" = <01000000030000000300000001000000454143430000000002000000030000000400000002000000504143430000000003000000010000000600000000000000414e450000000000040000000300000005000000040000004147580000000000> + | | | | "bwr-catch-up-factor" = <00000100> + | | | | "controller" = <010000001f0000004300000000000000000000004449452d54454d5000000000000000000000000000000000000000000000000002000000000000000000000000000000000000004443532d4257000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000004147582d534c4f572d41462d52442d425700000000000000000000000000000004000000000000000000000000000000000000004147582d464153542d41462d52442d425700000000000000000000000000000005000000000000000000000000000000000000004147582d534c4f572d41462d57522d425700000000000000000000000$ + | | | | "ioa0-afnc-bw-threshold" = <66a61900000000000000000000000000333322000000000066a618000300000000000000000000003333210003000000> + | | | | "agx-fast-af-wr-bw-dvfs-filter" = + | | | | "agx-slow-af-rd-bw-dvfs-filter" = <0e000000> + | | | | "soc-device-ps-group" = + | | | | "mc_quota_rsp_ptd_count" = <08000000> + | | | | "lts-ctrl-ts" = <00000500> + | | | | "temp-sensor" = <01000000060000000600000000000000000000000000000000000000000000006e0000007d00000054613030306d0000000000000000000002000000060000000300000000000000000000000000000000000000000000006e0000007d00000054653030306d0000000000000000000003000000060000000300000001000000000000000000000000000000000000006e0000007d00000054653030316d0000000000000000000004000000060000000400000000000000000000000000000000000000000000006e0000007d00000054703030306d000000000000000000000500000006000000040000000100000000000000000000000000000000000000$ + | | | | "ane-slow-dcs-bw-threshold" = <8fc212000000000000000000000000005c8f2500000000008fc211000300000099993600000000005c8f240003000000c2f545000000000099993500030000000000000000000000c2f5440003000000> + | | | | "name" = <696f702d706d702d6e756200> + | | | | "ioa1-afnc-bw-threshold" = <66a61900000000000000000000000000333322000000000066a618000300000000000000000000003333210003000000> + | | | | "dcs-bw-threshold" = <8fc212000000000000000000000000005c8f2500000000008fc211000300000099993600000000005c8f240003000000c2f545000000000099993500030000000000000000000000c2f5440003000000> + | | | | "mc_cmd_ack_ptd_count" = <01000000> + | | | | "AAPL,phandle" = <89000000> + | | | | "agx-fast-dcs-bw-dvfs-filter" = + | | | | "agx-slow-dcs-bw-dvfs-filter" = <0e000000> + | | | | "ane-fast-dcs-bw-threshold" = <0000050000000000000000000000000000000e0000000000000004000600000000002a000000000000000d00060000000000460000000000000029000600000000000000000000000000450006000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "ane-fast-af-bw-dvfs-filter" = + | | | | "fast-die-ctrl-loop" = <0100000000000000000000001e0500009919040000006e000000010000000000000001000000000000000000000001001600000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454143430000000000000000000000000200000000000000010000001e0500009919040000006e000000010000000000000001000000000000000000000001001600000004000000050000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000504143430$ + | | | | "soc0-wr-bwr-threshold" = <3333160099991d0066662c00> + | | | | "firmware-name" = <7438313232706d7000> + | | | | "agx-slow-dcs-bw-threshold" = <000012000000000000000000000000000000240000000000000011000600000000003000000000000000230006000000000044000000000000002f000600000000000000000000000000430006000000> + | | | | "soc0-rd-bwr-threshold" = <3333160099991d0066662c00> + | | | | "lts-clpc-voltage" = <01000000ee0300000000690000006a00000000005041434300000000> + | | | | "soc1-rd-bwr-threshold" = <3333160099991d0066662c00> + | | | | "energy-counter" = <0100000001000000050000000100000041475800000000000000000000000000020000000100000005000000020000004147582d5352414d000000000000000003000000010000000600000001000000414e4500000000000000000000000000040000000000000014000000000000005644454300000000000000000000000005000000000000001500000000000000534f435f414f4e00000000000000000006000000000000001600000000000000534f435f524553540000000000000000> + | | | | "agx-fast-dcs-bw-threshold" = <0000010000000000000000000000000000000e0000000000000000000600000000001c000000000000000d0006000000000020000000000000001b0006000000000000000000000000001f0006000000> + | | | | "agx-fast-af-wr-bw-threshold" = <0000050000000000000000000000000000002c00000000000000040006000000000000000000000000002b0006000000> + | | | | "lts-config" = <000000000000000042bc10000000000087d30f006e000000690000000000110033b300000e0d1e03010000003b01000042bc10000000000087d30f006e000000690000000000110033b300002dd24b00020000000d020000ca63000000000000f4dd0f006e000000690000000000110033b3000070fd2203> + | | | | "agx-slow-af-wr-bw-threshold" = <00000e0000000000000000000000000000004c000000000000000d0006000000000000000000000000004b0006000000> + | | | | "soc1-wr-bwr-threshold" = <3333160099991d0066662c00> + | | | | "segment-ranges" = <000050d0020000000000000100000000000050d0020000000060030003000000006053d0020000000060030100000000006053d0020000000070040006000000> + | | | | "mcache-stream" = <1e00000003000000010000000b0000000e0000000e0000000200000000000000000000000400000001000000050000000100000001000000020000001400000014000000020000000000000000000000040000000100000006000000020000000100000003000000120000001200000002000000000000000000000004000000000000000b000000050000000100000005000000210000002100000002000000000000000000000004000000010000000e000000040000000100000010000000150000001500000002000000000000000000000004000000000000001100000004000000010000001100000016000000160000000200000000000000000000$ + | | | | "dcs-wr-bwr-threshold" = <0000070033b30e006666140033331a0033b31e00> + | | | | "agx-slow-af-wr-bw-dvfs-filter" = <0e000000> + | | | | "ptd-driver-version" = <01000000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "agx-fast-af-rd-bw-threshold" = <0000050000000000000000000000000000002c00000000000000040006000000000000000000000000002b0006000000> + | | | | "agx-slow-af-rd-bw-threshold" = <00000e0000000000000000000000000000004c000000000000000d0006000000000000000000000000004b0006000000> + | | | | "region-size" = <0000080000000000> + | | | | "coredump-enable" = <40000000> + | | | | "ane-fast-dcs-bw-dvfs-filter" = + | | | | "ane-slow-af-bw-threshold" = <47a11900000000000000000000000000142e22000000000047a11800030000000000000000000000142e210003000000> + | | | | "ane-slow-dcs-bw-dvfs-filter" = <3f000000> + | | | | "fast-die-ctrl-ts-avg-temp" = <00006400> + | | | | "lts-ctrl-loop" = <010000000000000000000000000000000000000001000000010000000000000002000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454143430000000000000000000000000200000000000000010000000100000001000000020000000200000001000000040000000500000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005041434300000000000000000000000003000000000000000200000002000000000000000000000004000000000000$ + | | | | "soc-device" = <01000000454e4f4e010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444353000000000002000000454e4f4e010000001000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000414d43430000000013000000454e4f4e0$ + | | | | "region-base" = <000050d002000000> + | | | | "pm-ptd-ranges" = <010000000200000003000000040000000500000006000000070000000000000000000000090000000a0000000b0000000c0000000d00000000000000> + | | | | "fast-die-ctrl-ts" = <00000500> + | | | | } + | | | | + | | | +-o RTBuddy(PMP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <89000000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8002,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "FirmwareUUID" = "cf88cca1-eef2-3137-87d7-9c4b7e08160f" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "not set" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "PMP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="PMP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "PMP" + | | | | } + | | | | + | | | +-o ApplePMPFirmware + | | | | { + | | | | "IOPropertyMatch" = {"role"="PMP"} + | | | | "CFBundleIdentifier" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOMatchCategory" = "RTBuddyFirmwareService" + | | | | "IOClass" = "ApplePMPFirmware" + | | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePMPFirmware" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Role" = "PMP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="PMP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="PMP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="PMP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o PMPEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o ApplePMPv2 + | | | { + | | | "ane-fast-dcs-bw-thr-dcs-f2-dn-lev" = + | | | "agx-p6-min-dcs-state" = <03000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmin-up-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "lts-ctrl-die-count" = <01000000> + | | | "dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "fast-die-ctrl-ts-ms" = <00000500> + | | | "agx-fast-dcs-bw-dvfs-filter" = + | | | "die-temp-ctrl-acc-cpmu-enable" = <01000000> + | | | "dcs-bw-thr-dcs-f3-dn-deb" = <03000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-dn-deb" = <03000000> + | | | "agx-slow-af-rd-bw-dvfs-filter" = <0e000000> + | | | "ioa1-afnc-bw-thr-soc-vmax-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "agx-p4-min-dcs-state" = <01000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "fast-die-loop-eacc-engage-delta" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-dn-lev" = + | | | "cpmu-acc-0-gradient-0" = <00c00800> + | | | "pmptool-config" = <444353000000000000000000000000004631000000000000670200004632000000000000ad0200004633000000000000f302000046340000000000004303000046350000000000007a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000534f4300000000000000000000000000564d494e0000000094020000564e4f4d00000000d5020000564d415$ + | | | "soc0-wr-bwr-thr-soc-vmax" = <5c662c00> + | | | "lts-ctrl-ecore-dtt_min" = <69000000> + | | | "agx-slow-dcs-bw-thr-dcs-f1-up-lev" = + | | | "agx-slow-af-wr-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-fast-af-wr-bw-dvfs-filter" = + | | | "ioa0-afnc-bw-thr-soc-vnom-up-lev" = <05332200> + | | | "ioa0-afnc-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "agx-p7-min-soc-state" = <01000000> + | | | "agx-fast-dcs-bw-thr-dcs-f3-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f4-up-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "IOPlatformSleepAction" = 0x262 + | | | "soc1-wr-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-slow-dcs-bw-dvfs-filter" = <3f000000> + | | | "agx-p2-min-dcs-state" = <01000000> + | | | "agx-fast-af-wr-bw-thr-soc-vmin-up-lev" = + | | | "agx-slow-af-rd-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "lts-ctrl-0-1-is" = <7b960b81690e4541> + | | | "fast-die-loop-eacc-kp" = <1e050000> + | | | "pmptool-fast-die-lp-config" = <01000000454143430000000000000000000000000200000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000504143430000000000000000000000000400000005000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000414e45000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "fast-die-loop-pacc-max-valid-temp-lag" = <00001600> + | | | "temp-sensor-te001m-offset" = <00000000> + | | | "registry-dictionary" = {"ane-fast-dcs-bw-thr-dcs-f2-dn-lev"={"format"="16p16","unit"="GB/s"},"agx-p6-min-dcs-state"={"format"="uint","unit"=""},"agx-slow-af-rd-bw-thr-soc-vmin-up-lev"={"format"="16p16","unit"="GB/s"},"agx-slow-dcs-bw-thr-dcs-f2-up-deb"={"format"="uint","unit"=""},"agx-fast-dcs-bw-thr-dcs-f4-up-deb"={"format"="uint","unit"=""},"dcs-bw-thr-dcs-f2-up-deb"={"format"="uint","unit"=""},"ane-fast-dcs-bw-thr-dcs-f1-up-deb"={"format"="uint","unit"=""},"agx-slow-dcs-bw-thr-dcs-f5-dn-deb"={"format"="uint","unit$ + | | | "cpmu-acc-0-gradient-2" = <00c00500> + | | | "fast-die-loop-eacc-invalid-temp-offset" = <00000100> + | | | "agx-slow-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "dcs-bw-thr-dcs-f4-dn-deb" = <03000000> + | | | "agx-p5-min-soc-state" = <01000000> + | | | "fast-die-loop-eacc-hs-target" = <00006e00> + | | | "ane-fast-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-p0-min-dcs-state" = <00000000> + | | | "IOPlatformWakeAction" = 0x262 + | | | "agx-fast-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "ioa0-afnc-bw-thr-soc-vnom-dn-lev" = <61a61800> + | | | "lts-ctrl-ovrd-reset" = <00000000> + | | | "dcs-bwr-thr-dcs-f5" = <2a333300> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.ApplePMP" + | | | "ane-slow-dcs-bw-thr-dcs-f3-dn-deb" = <03000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-up-lev" = <05332200> + | | | "ioa1-afnc-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "lts-ctrl-enbl-thrtl" = <01000000> + | | | "ane-fast-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "soc0-rd-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "IOPersonalityPublisher" = "com.apple.driver.ApplePMP" + | | | "agx-p3-min-soc-state" = <00000000> + | | | "soc1-rd-bwr-thr-soc-vnom" = <65991d00> + | | | "ioa0-afnc-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-up-lev" = + | | | "dcs-bw-thr-dcs-f1-up-lev" = <4fc21200> + | | | "agx-fast-af-wr-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-up-lev" = + | | | "dcs-bw-thr-dcs-f2-dn-lev" = <7dc21100> + | | | "ane-fast-dcs-bw-thr-dcs-f1-up-lev" = + | | | "agx-slow-af-wr-bw-dvfs-filter" = <0e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "ane-slow-af-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vmax-dn-deb" = <03000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-dn-lev" = <7dc21100> + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "agx-fast-af-rd-bw-thr-soc-vmax-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "ane-fast-af-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-p1-min-soc-state" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "CFBundleIdentifier" = "com.apple.driver.ApplePMP" + | | | "dcs-bwr-thr-dcs-f3" = <85192200> + | | | "ioa1-afnc-bw-thr-soc-vnom-dn-lev" = <61a61800> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-dn-lev" = + | | | "lts-ctrl-loop-count" = <03000000> + | | | "temp-sensor-th002i-offset" = <00000000> + | | | "IONameMatch" = ("PMPEndpoint1","PMP0Endpoint1","PMP1Endpoint1") + | | | "temp-sensor-tp002m-offset" = <00000000> + | | | "dcs-wr-bwr-thr-dcs-f2" = <32b30e00> + | | | "dcs-rd-bwr-thr-dcs-f1" = + | | | "agx-slow-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "IONameMatched" = "PMPEndpoint1" + | | | "soc0-rd-bwr-thr-soc-vmin" = <0c331600> + | | | "ioa0-afnc-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "ane-fast-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmin-up-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "lts-ctrl-0-0-is" = <246ad01bcfef4441> + | | | "fast-die-loop-ane-engage-delta" = <00000000> + | | | "fast-die-loop-eacc-ki" = <99190400> + | | | "ane-slow-dcs-bw-thr-dcs-f4-dn-deb" = <03000000> + | | | "ane-fast-dcs-bw-dvfs-filter" = + | | | "lts-ctrl-0-0-is-inuse" = + | | | "temp-sensor-ta002i-offset" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vmin-up-lev" = <19a11900> + | | | "soc1-rd-bwr-thr-soc-vmin" = <0c331600> + | | | "ane-slow-af-bw-thr-soc-vmax-dn-lev" = + | | | "agx-p7-min-dcs-state" = <04000000> + | | | "lts-ctrl-pcore-dtt_min" = <69000000> + | | | "dcs-bw-thr-dcs-f2-up-lev" = <5b8f2500> + | | | "temp-sensor-te000m-offset" = <00000000> + | | | "dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vmin-up-lev" = + | | | "dcs-rd-bwr-thr-dcs-f3" = <85192200> + | | | "ane-fast-af-bw-thr-soc-vmax-dn-lev" = + | | | "dcs-bw-thr-dcs-f3-dn-lev" = <458f2400> + | | | "dcs-wr-bwr-thr-dcs-f4" = <20331a00> + | | | "dcs-bw-thr-dcs-f5-dn-deb" = <03000000> + | | | "agx-slow-dcs-bw-thr-dcs-f3-up-lev" = + | | | "dcs-bwr-thr-dcs-f1" = + | | | "ane-fast-af-bw-dvfs-filter" = + | | | "lts-ctrl-gpu-dtt_min" = <69000000> + | | | "fast-die-loop-eacc-max-valid-temp-lag" = <00001600> + | | | "lts-ctrl-0-1-is-inuse" = <9db3def02eeb5041> + | | | "ane-slow-af-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "temp-sensor-mtr_top_agx-offset" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f2-up-lev" = + | | | "lts-ctrl-ecore-dtt_max" = <6e000000> + | | | "temp-sensor-th001i-offset" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f2-dn-lev" = <00000000> + | | | "fast-die-loop-ane-ki" = <99190400> + | | | "agx-p5-min-dcs-state" = <02000000> + | | | "fast-die-loop-pacc-invalid-temp-offset" = <00000100> + | | | "cpmu-acc-0-round-1" = <00800000> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "temp-sensor-tp000m-alarm1-temp" = <00007d00> + | | | "ane-slow-dcs-bw-thr-dcs-f3-dn-lev" = <458f2400> + | | | "ane-fast-af-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "ioa1-afnc-bw-thr-soc-vnom-dn-deb" = <03000000> + | | | "temp-sensor-version" = <00000000> + | | | "ane-fast-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "temp-sensor-ta001i-alarm1-temp" = <00007d00> + | | | "agx-fast-af-rd-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "ane-slow-af-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "dcs-rd-bwr-thr-dcs-f5" = <2a333300> + | | | "lts-ctrl-ts-ms" = <0000a040> + | | | "agx-slow-af-wr-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "ane-fast-af-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "lts-ctrl-ppi-min" = <3c000000> + | | | "temp-sensor-ta001i-offset" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "soc0-rd-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-fast-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-p3-min-dcs-state" = <01000000> + | | | "agx-fast-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "IOMatchedAtBoot" = Yes + | | | "ane-slow-dcs-bw-thr-dcs-f5-dn-deb" = <03000000> + | | | "dcs-bw-thr-dcs-f4-dn-lev" = <58993500> + | | | "fast-die-loop-pacc-engage-delta" = <00000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmax-dn-lev" = + | | | "fast-die-loop-pacc-hs-target" = <00006e00> + | | | "ane-slow-af-bw-thr-soc-vnom-dn-lev" = <03a11800> + | | | "soc1-rd-bwr-thr-soc-vmax" = <5c662c00> + | | | "ane-fast-af-bw-thr-soc-vnom-dn-lev" = + | | | "temp-sensor-te000m-alarm1-temp" = <00007d00> + | | | "temp-sensor-tp001m-offset" = <00000000> + | | | "fast-die-loop-ane-hs-target" = <00006e00> + | | | "temp-sensor-th000i-alarm1-temp" = <00007d00> + | | | "agx-slow-af-rd-bw-thr-soc-vnom-up-lev" = + | | | "ane-slow-af-bw-thr-soc-vnom-up-lev" = + | | | "agx-fast-af-wr-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "lts-ctrl-gpu-dtt_max" = <6e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f4-up-lev" = + | | | "agx-p1-min-dcs-state" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f1-up-lev" = <4fc21200> + | | | "IOClass" = "ApplePMPv2" + | | | "fast-die-loop-pacc-kp" = <1e050000> + | | | "ane-fast-af-bw-thr-soc-vnom-up-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f3-up-lev" = + | | | "cpmu-acc-0-gradient-1" = <00c00300> + | | | "agx-fast-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "agx-p8-min-soc-state" = <02000000> + | | | "lts-ctrl-0-2-is-inuse" = <2ebac41b64c34941> + | | | "fast-die-ctrl-loop-version" = <00000000> + | | | "ane-slow-dcs-bw-thr-dcs-f4-dn-lev" = <58993500> + | | | "dcs-bw-thr-dcs-f3-up-lev" = <6f993600> + | | | "cpmu-acc-0-alpha-down" = <33330000> + | | | "ioa0-afnc-bw-thr-soc-vmin-up-lev" = <33a61900> + | | | "agx-fast-af-wr-bw-thr-soc-vmax-dn-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f2-up-deb" = <00000000> + | | | "IOUserClientClass" = "ApplePMPv2UserClient" + | | | "die-temp-ctrl-avg-temp-enable" = <01000000> + | | | "agx-slow-af-rd-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-dn-lev" = + | | | "agx-slow-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "temp-sensor-tp001m-alarm1-temp" = <00007d00> + | | | "temp-sensor-th001i-alarm1-temp" = <00007d00> + | | | "agx-p6-min-soc-state" = <01000000> + | | | "ane-slow-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "cpmu-acc-0-gradient-3" = <00800700> + | | | "agx-fast-dcs-bw-thr-dcs-f5-dn-deb" = <06000000> + | | | "temp-sensor-th000i-offset" = <00000000> + | | | "temp-sensor-tp000m-offset" = <00000000> + | | | "temp-sensor-ta002i-alarm1-temp" = <00007d00> + | | | "lts-ctrl-0-0-is-ovrd" = <10e28549> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-up-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f2-dn-deb" = <06000000> + | | | "IOProbeScore" = 0x2 + | | | "agx-slow-af-rd-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "fast-die-loop-ane-max-valid-temp-lag" = <00001600> + | | | "ane-slow-af-bw-dvfs-filter" = <3f000000> + | | | "lts-ctrl-pcore-dtt_max" = <6e000000> + | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | "agx-fast-af-rd-bw-thr-soc-vmin-up-lev" = + | | | "dcs-bwr-thr-dcs-f4" = <0cb32b00> + | | | "agx-p4-min-soc-state" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f1-up-lev" = + | | | "ioa1-afnc-bw-thr-soc-vmin-up-lev" = <33a61900> + | | | "dcs-bw-thr-dcs-f4-up-lev" = + | | | "ane-slow-dcs-bw-thr-dcs-f2-up-lev" = <5b8f2500> + | | | "soc0-wr-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-slow-dcs-bw-dvfs-filter" = <0e000000> + | | | "agx-slow-dcs-bw-thr-dcs-f2-dn-lev" = + | | | "ane-fast-dcs-bw-thr-dcs-f4-up-lev" = + | | | "dcs-bw-thr-dcs-f5-dn-lev" = + | | | "temp-sensor-te001m-alarm1-temp" = <00007d00> + | | | "agx-fast-dcs-bw-thr-dcs-f4-dn-lev" = + | | | "dcs-wr-bwr-thr-dcs-f1" = + | | | "temp-sensor-tp002m-alarm1-temp" = <00007d00> + | | | "ane-slow-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "soc1-wr-bwr-thr-soc-vnom" = <65991d00> + | | | "agx-fast-af-wr-bw-thr-soc-vmax-dn-deb" = <06000000> + | | | "dvfs_constraint_disable" = <00000000> + | | | "ioa0-afnc-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "die-temp-ctrl-alarm0-enable" = <01000000> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-dn-deb" = <06000000> + | | | "agx-slow-dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-p2-min-soc-state" = <00000000> + | | | "cpmu-acc-0-alpha-up" = <1e050000> + | | | "fast-die-loop-pacc-ki" = <99190400> + | | | "lts-ctrl-0-1-is-ovrd" = <10e28549> + | | | "agx-fast-dcs-bw-thr-dcs-f3-up-deb" = <00000000> + | | | "mc_ctrl_tracing" = <00000000> + | | | "agx-fast-af-rd-bw-dvfs-filter" = + | | | "fast-die-loop-ane-kp" = <1e050000> + | | | "ane-slow-dcs-bw-thr-dcs-f4-up-deb" = <00000000> + | | | "agx-fast-af-wr-bw-thr-soc-vnom-up-deb" = <00000000> + | | | "agx-slow-dcs-bw-thr-dcs-f4-dn-deb" = <06000000> + | | | "dcs-wr-bwr-thr-dcs-f3" = <24661400> + | | | "dcs-rd-bwr-thr-dcs-f2" = + | | | "dcs-bwr-thr-dcs-f2" = + | | | "temp-sensor-ta000m-alarm1-temp" = <00007d00> + | | | "ane-fast-dcs-bw-thr-dcs-f3-dn-deb" = <06000000> + | | | "dcs-bw-thr-dcs-f1-up-deb" = <00000000> + | | | "agx-fast-af-rd-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-p0-min-soc-state" = <00000000> + | | | "cpmu-acc-0-round-2" = <00c00000> + | | | "dcs-bw-thr-dcs-f2-dn-deb" = <03000000> + | | | "fast-die-loop-ane-invalid-temp-offset" = <00000100> + | | | "agx-p8-min-dcs-state" = <04000000> + | | | "agx-slow-af-wr-bw-thr-soc-vmax-dn-lev" = + | | | "pmptool-temp-sensor-config" = <0100000074613030306d000000000000000000000200000074653030306d000000000000000000000300000074653030316d000000000000000000000400000074703030306d000000000000000000000500000074703030316d000000000000000000000600000074703030326d000000000000000000000700000074613030316900000000000000000000080000007461303032690000000000000000000009000000746830303069000000000000000000000a000000746830303169000000000000000000000b000000746830303269000000000000000000000c0000006d74725f746f705f6167780000000000> + | | | "temp-sensor-th002i-alarm1-temp" = <00007d00> + | | | "soc0-wr-bwr-thr-soc-vmin" = <0c331600> + | | | "temp-sensor-ta000m-offset" = <00000000> + | | | "lts-ctrl-0-2-is" = <4d3f9272d5e93941> + | | | "ioa0-afnc-bw-thr-soc-vmax-dn-lev" = + | | | "ioa1-afnc-bw-thr-soc-vmin-up-deb" = <00000000> + | | | "agx-fast-dcs-bw-thr-dcs-f2-up-lev" = + | | | "die-temp-ctrl-alarm1-enable" = <01000000> + | | | "temp-sensor-mtr_top_agx-alarm1-temp" = <00006d00> + | | | "ane-slow-dcs-bw-thr-dcs-f3-up-lev" = <6f993600> + | | | "dcs-wr-bwr-thr-dcs-f5" = + | | | "dcs-rd-bwr-thr-dcs-f4" = <0cb32b00> + | | | "agx-slow-dcs-bw-thr-dcs-f3-dn-lev" = + | | | "soc1-wr-bwr-thr-soc-vmin" = <0c331600> + | | | "agx-slow-af-wr-bw-thr-soc-vnom-up-lev" = + | | | "agx-fast-dcs-bw-thr-dcs-f5-dn-lev" = + | | | "lts-ctrl-0-2-is-ovrd" = <0094c746> + | | | } + | | | + | | +-o dart-pmp@C0300000 + | | | | { + | | | | "dart-id" = <06000000> + | | | | "bypass-13" = <> + | | | | "IOInterruptSpecifiers" = (<71020000>) + | | | | "AAPL,phandle" = <8a000000> + | | | | "IODeviceMemory" = (({"address"=0x2d0300000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "apf-bypass-13" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d706d7000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000d000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <71020000> + | | | | "l2-tt-0" = <0040f4ff030100000200000000000000> + | | | | "dapf-instance-0" = <00c0012002000000ffff0220020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0052002000000ffff0620020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0012202000000ffff0222020000000100000000000000000000000000000000000000000000000000000000000000000301000000000000c0052202000000ffff062202000000010000000000000000000000000000000000000000000000000000000000000000030100000000000000152002000000ffbf1d200200000001000000000000000000000000000000$ + | | | | "pt-region-0" = <0040f4ff030100000080f4ff03010000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <000030c0000000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent0000008A" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <8a000000> + | | | | } + | | | | + | | | +-o mapper-pmp@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d706d7000> + | | | | "AAPL,phandle" = <8b000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <8b000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sep@8E400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<3f010000>,<3e010000>,<41010000>,<40010000>) + | | | | "aot-power" = <01000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = <8c000000> + | | | | "sepfw-booted" = <01000000> + | | | | "IODeviceMemory" = (({"address"=0x29e400000,"length"=0x6c000}),({"address"=0x29e050000,"length"=0x60000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "self-power-gate" = <> + | | | | "iommu-parent" = <92000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "sika-support" = <01000000> + | | | | "name" = <73657000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702d7365702c617363777261702d763600> + | | | | "interrupts" = <3f0100003e0100004101000040010000> + | | | | "clock-ids" = <91010000> + | | | | "role" = <53455000> + | | | | "sepfw-loaded" = <01000000> + | | | | "aarch64" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <73657000> + | | | | "cpu-ctrl-filtered" = <> + | | | | "reg" = <0000408e0000000000c00600000000000000058e000000000000060000000000> + | | | | "power-gates" = <> + | | | | } + | | | | + | | | +-o AppleASCWrapV6SEP + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6SEP" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop-sep,ascwrap-v6","iop-sep,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop-sep,ascwrap-v6" + | | | | "role" = "SEP" + | | | | } + | | | | + | | | +-o iop-sep-nub + | | | | { + | | | | "AAPL,phandle" = <8d000000> + | | | | "compatible" = <696f702d6e75622c73657000> + | | | | "tz0-size-set" = <01000000> + | | | | "tz0-size" = <0080ee01> + | | | | "function-wait_for_power_gate" = <8200000074696157900000000000000000000000> + | | | | "rom-panic-bytes" = <88010000> + | | | | "name" = <696f702d7365702d6e756200> + | | | | } + | | | | + | | | +-o AppleSEPManager + | | | | { + | | | | "IOClass" = "AppleSEPManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8000,"MaxPowerState"=0x2} + | | | | "IOUserClientClass" = "AppleSEPUserClient" + | | | | "IOPlatformQuiesceAction" = 0x15f8f + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,sep" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "SEPCameraDisable" = No + | | | | "IONameMatched" = "iop-nub,sep" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "sep-booted" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "HasXART" = Yes + | | | | } + | | | | + | | | +-o NVMeSEPNotifier + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMatchCategory" = "NVMeSEPNotifier" + | | | | "IOClass" = "NVMeSEPNotifier" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONVMeFamily" + | | | | "IOProviderClass" = "AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,hibe + | | | | | { + | | | | | } + | | | | | + | | | | +-o HibernationService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.SEPHibernation" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "HibernationService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.SEPHibernation" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.SEPHibernation" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,hibe" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,hibe" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | } + | | | | + | | | +-o sep-endpoint,stac + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleTrustedAccessoryManager + | | | | | { + | | | | | "IOClass" = "AppleTrustedAccessoryManager" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTrustedAccessory" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleTrustedAccessoryManagerUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "sep-endpoint,stac" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "com_apple_driver_AppleTrustedAccessoryManager" + | | | | | "IONameMatched" = "sep-endpoint,stac" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTrustedAccessory" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTrustedAccessory" + | | | | | } + | | | | | + | | | | +-o AppleTrustedAccessoryManagerUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,pnon + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,xars + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPXARTService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "AppleSEPXARTService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,xars" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,xars" + | | | | "XartApToSep" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,xarm + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPXARTService + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPManager" + | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | "IOClass" = "AppleSEPXARTService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPManager" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPManager" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "sep-endpoint,xarm" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "sep-endpoint,xarm" + | | | | } + | | | | + | | | +-o sep-endpoint,cntl + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,hdcp + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleSEPHDCPManager + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOClass" = "AppleSEPHDCPManager" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPHDCPManager" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IONameMatch" = "sep-endpoint,hdcp" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IONameMatched" = "sep-endpoint,hdcp" + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x0 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x1 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x2 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x3 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x3 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x4 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x0 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x5 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x6 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | | { + | | | | | "HDCPChannel" = 0x7 + | | | | | "HDCPRole" = "(None - Not Open)" + | | | | | "HDCPTransport" = 0x1 + | | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "HDCPCapabilityMask" = 0x2 + | | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | | } + | | | | | + | | | | +-o AppleHDCPInterface + | | | | { + | | | | "HDCPChannel" = 0x8 + | | | | "HDCPRole" = "(None - Not Open)" + | | | | "HDCPTransport" = 0x1 + | | | | "HDCPRXCapabilities" = {"Protocols"=()} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "HDCPCapabilityMask" = 0x2 + | | | | "HDCPTXCapabilities" = {"Protocols"=(0x1,0x2)} + | | | | } + | | | | + | | | +-o sep-endpoint,sbio + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleMesaSEPDriver + | | | | | { + | | | | | "IOClass" = "AppleMesaSEPDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "ScanningState" = 0x0 + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "IONameMatch" = "sep-endpoint,sbio" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "com_apple_driver_AppleMesaSEPDriver" + | | | | | "MesaCalBlobSource" = "FDR" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IONameMatched" = "sep-endpoint,sbio" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMesaSEPDriver" + | | | | | } + | | | | | + | | | | +-o AppleBiometricServices + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOMatchCategory" = "com_apple_driver_AppleBiometricServices" + | | | | | "IOClass" = "AppleBiometricServices" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOProviderClass" = "AppleMesaSEPDriver" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricServices" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "AppleBiometricServicesUserClient" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o AppleBiometricServicesUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,skdl + | | | | | { + | | | | | } + | | | | | + | | | | +-o CoreKDLDriver + | | | | | { + | | | | | "IOClass" = "CoreKDLDriver" + | | | | | "CFBundleIdentifier" = "com.apple.driver.CoreKDL" + | | | | | "IOProviderClass" = "AppleSEPDeviceService" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOUserClientClass" = "CoreKDLUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "sep-endpoint,skdl" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "CoreKDLDriver" + | | | | | "IONameMatched" = "sep-endpoint,skdl" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.CoreKDL" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.CoreKDL" + | | | | | } + | | | | | + | | | | +-o CoreKDLUserClient + | | | | | { + | | | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | | | "IOUserClientDefaultLocking" = Yes + | | | | | } + | | | | | + | | | | +-o CoreKDLUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o sep-endpoint,sse + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,scrd + | | | | { + | | | | } + | | | | + | | | +-o sep-endpoint,sks + | | | { + | | | } + | | | + | | +-o dart-sep@8CAC0000 + | | | | { + | | | | "dart-id" = <07000000> + | | | | "IOInterruptSpecifiers" = (<44010000>) + | | | | "AAPL,phandle" = <91000000> + | | | | "IODeviceMemory" = (({"address"=0x29cac0000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d73657000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <44010000> + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000ac8c000000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <91000000> + | | | | "IOFunctionParent00000091" = <> + | | | | } + | | | | + | | | +-o mapper-sep@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d73657000> + | | | | "AAPL,phandle" = <92000000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <92000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sio@91C00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<1f030000>,<1e030000>,<21030000>,<20030000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <81010000> + | | | | "AAPL,phandle" = <93000000> + | | | | "asio-ascwrap-tunables" = <400000000400000000ff00000000000000040000000000000c0800000400000001000060000000000100006000000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1c00000,"length"=0x6c000}),({"address"=0x2a1850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "map-range" = <4353494d000000a1020000000040000000000000> + | | | | "iommu-parent" = <97000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "dmashim" = <49505353000010a10200000000001000000000000d0000000e0000000f0000000040000052415553000020a10200000000001000000000000100000002000000030000000040000044554153000030a30200000000001000000000001e0000001f0000002000000000400000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <1f0300001e0300002103000020030000> + | | | | "clock-ids" = <940100009201000093010000> + | | | | "device-type" = <49505364060000000000000052415564070000000000000041504464050000000c000000> + | | | | "role" = <53494f00> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <73696f00> + | | | | "power-gates" = <81010000> + | | | | "reg" = <0000c0910000000000c006000000000000008591000000000040000000000000> + | | | | "segment-ranges" = <00009600000100000000000000000000000000000001000000c0010001000000000075010001000000c0010000000000000002000001000000800f0000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "SIO" + | | | | } + | | | | + | | | +-o iop-sio-nub + | | | | { + | | | | "pre-loaded" = <01000000> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "KDebugCoreID" = 0xa + | | | | "segment-ranges" = <00009600000100000000000000000000000000000001000000c0010001000000000075010001000000c0010000000000000002000001000000800f0000000000> + | | | | "uuid" = <42343236444544332d433839322d333830412d413939442d35413146423939334139443400> + | | | | "coredump-enable" = <40000000> + | | | | "no-firmware-service" = <> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "user-power-managed" = <01000000> + | | | | "name" = <696f702d73696f2d6e756200> + | | | | "AAPL,phandle" = <94000000> + | | | | } + | | | | + | | | +-o RTBuddy(SIO) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "FirmwareUUID" = "b426ded3-c892-380a-a99d-5a1fb993a9d4" + | | | | "FirmwareVersion" = "not set" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "SIO" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <94000000> + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "SIO" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o SIOEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o AppleSmartIO + | | | | { + | | | | "IOClass" = "AppleSmartIO" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartIO2" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "IOPlatformWakeAction" = 0x24e + | | | | "IOPlatformQuiesceAction" = 0x13880 + | | | | "IOPlatformSleepAction" = 0x24e + | | | | "IONameMatch" = ("SIOEndpoint1","SIO1Endpoint1") + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "AppleSmartIOUserClient" + | | | | "IONameMatched" = "SIOEndpoint1" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartIO2" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartIO2" + | | | | } + | | | | + | | | +-o sio-dma + | | | | { + | | | | "device_type" = <73696f2d646d6100> + | | | | "name" = <73696f2d646d6100> + | | | | "AAPL,phandle" = <95000000> + | | | | "compatible" = <73696f2d646d612d636f6e74726f6c6c657200> + | | | | } + | | | | + | | | +-o IODMAController00000095 + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartIO2" + | | | "IOMatchCategory" = "DMA" + | | | "IOClass" = "AppleSmartIODMAController" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartIO2" + | | | "IOProviderClass" = "AppleSmartIODMANub" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartIO2" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o dart-sio@91004000 + | | | | { + | | | | "dart-id" = <08000000> + | | | | "IOInterruptSpecifiers" = (<18030000>) + | | | | "AAPL,phandle" = <96000000> + | | | | "IODeviceMemory" = (({"address"=0x2a1004000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000100000002000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <18030000> + | | | | "vm-base" = <00c0010000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000004000000000004080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00400091000000000040000000000000> + | | | | "vm-size" = <0040feffff020000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <96000000> + | | | | "IOFunctionParent00000096" = <> + | | | | } + | | | | + | | | +-o mapper-sio@0 + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d73696f00> + | | | | | "AAPL,phandle" = <97000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <97000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-aes@1 + | | | | | { + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "allow-subpage-mapping" = <> + | | | | | "name" = <6d61707065722d61657300> + | | | | | "AAPL,phandle" = <98000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <98000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-admac@2 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <02000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d61646d616300> + | | | | "AAPL,phandle" = <99000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <99000000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ans@F9400000 + | | | | { + | | | | "nvme-interrupt-idx" = <04000000> + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <04020000> + | | | | "nvme-queue-entries" = <40000000> + | | | | "AAPL,phandle" = <9a000000> + | | | | "IODeviceMemory" = (({"address"=0x309400000,"length"=0x6c000}),({"address"=0x309050000,"length"=0x4000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x30dcc0000,"length"=0x60000}),({"address"=0x30b000000,"length"=0x1000000}),({"address"=0x30db90000,"length"=0xc000}),({"address"=0x30dd47c00,"length"=0x4000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x210000000,"length"=0x0}),({"address"=0x21000000$ + | | | | "IOReportLegendPublic" = Yes + | | | | "nvme-linear-sq" = <> + | | | | "iommu-parent" = <9c000000> + | | | | "ccu-security-interrupt-tunables" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "nand-debug" = <0100000000000000> + | | | | "namespaces" = <010000000100000000000000020000000800000000030000030000000d00000000800000> + | | | | "interrupt-parent" = <69000000> + | | | | "name" = <616e7300> + | | | | "afc-aiu-ans-dual-tunables" = <0000000004000000030200000000000001020000000000000c00000004000000ffff0f000000000000680100000000001000000004000000ffff0f000000000000b40000000000003c00000004000000ffffffff0000000020000500000000004000000004000000ffffffff0000000040000a000000000008010000040000003300ffff0000000031000c00000000000c01000004000000ffff0f000000000000680100000000001001000004000000ffff0f000000000000b40000000000000006000004000000ff03f1c300000000010001c000000000000c000004000000ffffff0100000000ffffff0100000000480d000004000000ff07ff$ + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "msp-bfh-params" = <01000100efbeadde020000006c000000ffffffff01002a00008c00000278088e1b0836007c8e7b630c00489000000000549000000000509000f000005c9000f0000002001800900800204000a80861100004900800204001a80861100004030014006d6163626f6f6b3135675f31335f31355f4d4c4204000400010000000000> + | | | | "interrupts" = + | | | | "clock-ids" = <4c0100004b0100004d010000> + | | | | "nvme-vdma-wa" = <> + | | | | "command-accelerator-tunables" = <> + | | | | "role" = <414e533200> + | | | | "tunable-table-bundle" = <766b64617267767300> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616e7300> + | | | | "power-gates" = <04020000> + | | | | "reg" = <000040f90000000000c0060000000000000005f9000000000040000000000000000000000000000000000000000000000000ccfd000000000000060000000000000000fb0000000000000001000000000000b9fd0000000000c0000000000000007cd4fd000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010fd000000000040040000000000> + | | | | "storage-lane-common-tunables" = <> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "ANS2" + | | | | } + | | | | + | | | +-o iop-ans-nub + | | | | { + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "shutdown-sleep" = <> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "AAPL,phandle" = <9b000000> + | | | | "region-base" = <0000d2e603010000> + | | | | "KDebugCoreID" = 0xc + | | | | "power-managed" = <01000000> + | | | | "running" = <01000000> + | | | | "region-size" = <0000001900000000> + | | | | "continuous-time" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "no-hibernate-sleep" = <> + | | | | "segment-ranges" = <00400000000100000000000000000000004000000001000000001d0001000000000097ff0301000000001d0000000000000097ff0301000000003b0000000000> + | | | | "crashlog-non-fatal" = <> + | | | | "name" = <696f702d616e732d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(ANS2) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254537461740000,0x600020002,"power state")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Power State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "ANS2" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <9b000000> + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="ANS2","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sle$ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o ANS2Endpoint1 + | | | | { + | | | | } + | | | | + | | | +-o ANS2Endpoint2 + | | | | { + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "ANS2" + | | | | } + | | | | + | | | +-o AppleANS3NVMeController + | | | | { + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOPolledInterface" = "IONVMeControllerPolledAdapter is not serializable" + | | | | "IOMinimumSaturationByteCount" = 0x800000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x1000 + | | | | "IOMaximumByteCountWrite" = 0x100000 + | | | | "Physical Interconnect" = "Apple Fabric" + | | | | "Physical Interconnect Location" = "Internal" + | | | | "Vendor Name" = "Apple" + | | | | "Serial Number" = "0ba028e440b0d625" + | | | | "IOMaximumSegmentByteCountWrite" = 0x1000 + | | | | "IOMaximumByteCountRead" = 0x100000 + | | | | "Model Number" = "APPLE SSD AP0256Z" + | | | | "IOPropertyMatch" = {"role"="ANS2"} + | | | | "AppleNANDStatus" = "Ready" + | | | | "IOCommandPoolSize" = 0x40 + | | | | "Chipset Name" = "SSD Controller" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONVMeFamily" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "Firmware Revision" = "532.100." + | | | | "NVMe Revision Supported" = "1.10" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONVMeFamily" + | | | | "IOMaximumSegmentCountWrite" = 0x100 + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOMaximumSegmentByteCountRead" = 0x1000 + | | | | "IOClass" = "AppleANS3NVMeController" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONVMeFamily" + | | | | "IOPlatformPanicAction" = 0x0 + | | | | "IOMaximumSegmentCountRead" = 0x100 + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x4e564d6520507772,0x200020002,"NVMe Power States")),"IOReportGroupName"="NVMe","IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018}}) + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Controller Characteristics" = {"default-bits-per-cell"=0x3,"firmware-version"="532.100.","controller-unique-id"="0ba028e440b0d625 ","capacity"=0x3b9aca0000,"pages-per-block-mlc"=0x540,"pages-in-read-verify"=0x540,"sec-per-full-band-slc"=0x3800,"pages-per-block0"=0x0,"cell-type"=0x3,"bytes-per-sec-meta"=0x10,"Preferred IO Size"=0x100000,"program-scheme"=0x0,"bus-to-msp"=(0x0,0x0,0x1,0x1),"num-dip"=0x8,"nand-marketing-name"="tlc_3d_g5_2p_512 ","package_blocks_at_EOL"=0x3110,"sec-per-full-band"=0xa800,$ + | | | | "IOProbeScore" = 0x493e0 + | | | | } + | | | | + | | | +-o AppleEmbeddedNVMeTemperatureSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "NAND CH0 temp" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x544e306e + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o NS_01@1 + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "IOMaximumBlockCountWrite" = 0x100 + | | | | | "IOMaximumSegmentByteCountRead" = 0x100000 + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOMaximumSegmentByteCountWrite" = 0x100000 + | | | | | "NamespaceID" = 0x1 + | | | | | "IOMaximumSegmentCountRead" = 0x100 + | | | | | "IOMaximumSegmentCountWrite" = 0x100 + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "IOUnit" = 0x1 + | | | | | "NamespaceUUID" = 0x0 + | | | | | "Encryption" = Yes + | | | | | "Device Characteristics" = {"Serial Number"="0ba028e440b0d625","Medium Type"="Solid State","Product Name"="APPLE SSD AP0256Z","Vendor Name"="","Product Revision Level"="532.100."} + | | | | | "IOMaximumBlockCountRead" = 0x100 + | | | | | "IOCFPlugInTypes" = {"AA0FA6F9-C2D6-457F-B10B-59A13253292F"="NVMeSMARTLib.plugin"} + | | | | | "IOMinimumSegmentAlignmentByteCount" = 0x1000 + | | | | | "IOMaximumByteCountRead" = 0x100000 + | | | | | "IOMaximumByteCountWrite" = 0x100000 + | | | | | "device-type" = "Generic" + | | | | | "EmbeddedDeviceTypeRoot" = Yes + | | | | | "Physical Block Size" = 0x1000 + | | | | | "Protocol Characteristics" = {"Physical Interconnect"="Apple Fabric","Physical Interconnect Location"="Internal"} + | | | | | "IOReportLegend" = ({"IOReportGroupName"="NVMe","IOReportChannels"=((0x5469657230204257,0x180000001,"Tier0 BW Scale Factor"),(0x5469657231204257,0x180000001,"Tier1 BW Scale Factor"),(0x5469657232204257,0x180000001,"Tier2 BW Scale Factor"),(0x5469657233204257,0x180000001,"Tier3 BW Scale Factor")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="BW Limits"},{"IOReportGroupName"="NVMe","IOReportChannels"=((0x546f742054696d65,0x180000001,"Total time elapsed"),(0x5469657230202020,0x180000001,"Tie$ + | | | | | "ThermalThrottlingSupported" = Yes + | | | | | "NVMe SMART Capable" = Yes + | | | | | } + | | | | | + | | | | +-o IOBlockStorageDriver + | | | | | { + | | | | | "IOClass" = "IOBlockStorageDriver" + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Statistics" = {"Operations (Write)"=0xc036e6,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x1201d417000,"Errors (Write)"=0x0,"Total Time (Read)"=0xd7aecedd40b,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x14ec10cd1f3,"Bytes (Write)"=0x6880c4c000,"Operations (Read)"=0x1c1e664,"Retries (Write)"=0x0} + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | } + | | | | | + | | | | +-o APPLE SSD AP0256Z Media + | | | | | { + | | | | | "Content" = "GUID_partition_scheme" + | | | | | "Removable" = No + | | | | | "Whole" = Yes + | | | | | "Leaf" = No + | | | | | "BSD Name" = "disk0" + | | | | | "Ejectable" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Internal.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | | "BSD Minor" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Writable" = Yes + | | | | | "BSD Major" = 0x1 + | | | | | "Size" = 0x3a70c70000 + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Open" = Yes + | | | | | "Content Hint" = "" + | | | | | "BSD Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7530 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IOGUIDPartitionScheme + | | | | | { + | | | | | "IOProbeScore" = 0xfa0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "Content Mask" = "GUID_partition_scheme" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "UUID" = "96AE2D69-7830-4BC9-A4F9-8F9A1240A765" + | | | | | } + | | | | | + | | | | +-o iBootSystemContainer@1 + | | | | | | { + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Base" = 0x6000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "69646961-6700-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x1 + | | | | | | "Whole" = No + | | | | | | "Removable" = No + | | | | | | "UUID" = "20593001-0A3D-4F25-98B5-70369CB522B5" + | | | | | | "BSD Unit" = 0x0 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk0s1" + | | | | | | "Partition ID" = 0x1 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "GPT Attributes" = 0x0 + | | | | | | "Content Hint" = "69646961-6700-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "TierType" = "Main" + | | | | | | } + | | | | | | + | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainerScheme + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="69646961-6700-11AA-AA11-00306543ECAC"}) + | | | | | | "IOProbeScore" = 0x7d0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Operations (Read)"=0x1cfd,"Bytes (Write)"=0x5a19000,"Operations (Write)"=0x2e21,"Bytes (Read)"=0x1d3b000} + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "APFSComposited" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMedia + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x4 + | | | | | | "Whole" = Yes + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | | "UUID" = "BC43A98F-291A-4B26-8EC0-0EC23BF40EB9" + | | | | | | "BSD Unit" = 0x1 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk1" + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "OSInternal" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainer + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x254000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x2c0,"Write burst: Total number of I/Os"=0x29,"Write burst: Total time"=0x8ef6bb,"Bytes read from block device"=0x2e8000,"Object cache: Number of writes"=0x2993,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x2aa,"Metadata: Number of bytes written"=0x2993000,"Write burst: Total time betw$ + | | | | | | "UUID" = "BC43A98F-291A-4B26-8EC0-0EC23BF40EB9" + | | | | | | "ContainerBlockSize" = 0x1000 + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "Status" = "Online" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOAPFSPreBootDevice" = ("iSCPreboot@1") + | | | | | | } + | | | | | | + | | | | | +-o iSCPreboot@1 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x10 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "iSCPreboot" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xa + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "20146CCB-102A-4E49-9DE9-6F1D91F4BCA4" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x20d000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x3b1,"Calls to VNOP_GETATTRLISTBULK"=0x39,"Calls to VNOP_CLOSE"=0xd0b,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x936,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x91b,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x209,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=$ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Preboot") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s1" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o xART@2 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x100 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "xART" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x8 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "6D4F1EF2-0D94-4B9F-AF85-E7F2CB81C85E" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x277,"Calls to VNOP_GETATTRLISTBULK"=0x28,"Calls to VNOP_CLOSE"=0x3d8,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls $ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("xART") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s2" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Hardware@3 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x140 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Hardware" + | | | | | | | "Size" = 0x1f400000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x7 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "8DCE2EB7-9962-48CE-A3BC-5D2F2B002084" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x78f000,"Bytes read from block device"=0xdb000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0xb5b,"Calls to VNOP_GETATTRLISTBULK"=0x3b,"Calls to VNOP_CLOSE"=0x8f5,"Calls to VNOP_MNOMAP"=0x3,"Calls to VNOP_INACTIVE"=0x536,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x12a,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x47f,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to wri$ + | | | | | | | "BSD Unit" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Hardware") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk1s3" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Recovery@4 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = No + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x4 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "Recovery" + | | | | | | "Size" = 0x1f400000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x9 + | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "87E92CF5-99CE-442C-A26D-0D84138F8250" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | | "BSD Unit" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("Recovery") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk1s4" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o Container@2 + | | | | | | { + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Base" = 0x1f406000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0x2 + | | | | | | "Whole" = No + | | | | | | "Removable" = No + | | | | | | "UUID" = "0D2CE055-9155-4F5F-BDF4-C3A425190FFE" + | | | | | | "BSD Unit" = 0x0 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk0s2" + | | | | | | "Partition ID" = 0x2 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "GPT Attributes" = 0x0 + | | | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | "TierType" = "Main" + | | | | | | } + | | | | | | + | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainerScheme + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "IOProbeScore" = 0x7d0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Operations (Read)"=0x1c166ff,"Bytes (Write)"=0x687b233000,"Operations (Write)"=0xc008c5,"Bytes (Read)"=0x120152ca000} + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "APFSComposited" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMedia + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "Writable" = Yes + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xc + | | | | | | "Whole" = Yes + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | | "UUID" = "6A706C2C-A61E-4FB2-BF75-DFB81ABE9045" + | | | | | | "BSD Unit" = 0x3 + | | | | | | "BSD Major" = 0x1 + | | | | | | "Ejectable" = No + | | | | | | "BSD Name" = "disk3" + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = No + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSContainer + | | | | | | { + | | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | | "IOProbeScore" = 0x3e8 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOMatchCategory" = "IOStorage" + | | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x10a76000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x1a19ed0,"Write burst: Total time"=0x141c2c73cbe0,"Bytes read from block device"=0x104abe6b000,"Object cache: Number of writes"=0x8114a3,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1390461,"Metadata: Number of bytes written"=0x8114a3000,"Writ$ + | | | | | | "UUID" = "6A706C2C-A61E-4FB2-BF75-DFB81ABE9045" + | | | | | | "ContainerBlockSize" = 0x1000 + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "Status" = "Online" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOAPFSPreBootDevice" = ("Preboot@2") + | | | | | | } + | | | | | | + | | | | | +-o Macintosh HD@1 + | | | | | | | { + | | | | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | | | | "RoleValue" = 0x1 + | | | | | | | "IncompatibleFeatures" = 0x21 + | | | | | | | "Writable" = Yes + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "VolBootable" = Yes + | | | | | | | "BSD Name" = "disk3s1" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Whole" = No + | | | | | | | "Open" = Yes + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "Status" = "Online" + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0xd07ae5000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x7c73b90,"Calls to VNOP_GETATTRLISTBULK"=0xeb257,"Calls to VNOP_CLOSE"=0x9714ff,"Calls to VNOP_MNOMAP"=0x52f05,"Calls to VNOP_INACTIVE"=0x15b354,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0xb87230,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x2600fa,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of$ + | | | | | | | "UUID" = "4D2A614C-A710-4107-8AEC-0AF9A08A8198" + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Ejectable" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "VolGroupMntFromName" = "/dev/disk3s1s1" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Leaf" = Yes + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "FullName" = "Macintosh HD" + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Removable" = No + | | | | | | | "Role" = ("System") + | | | | | | | "BSD Minor" = 0x10 + | | | | | | | "autodiskmount" = No + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o com.apple.os.update-83920663FCCF8FEE21340F708B980423F7822AE195EAD15998C70BD0F7B8AF23@1 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Writable" = No + | | | | | | | "Sealed" = "Yes" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "com.apple.os.update-83920663FCCF8FEE21340F708B980423F7822AE195EAD15998C70BD0F7B8AF23" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x13 + | | | | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "53435747-C371-4509-B67B-6673C9E4145D" + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Ejectable" = No + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "BSD Name" = "disk3s1s1" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o IOMediaBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7530 + | | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOProviderClass" = "IOMedia" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Preboot@2 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x10 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Preboot" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xf + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "FF64E779-F6B1-47D8-B749-4D46CD44F67E" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0xbc3000,"Bytes read from block device"=0x65d4000,"Calls to VNOP_ALLOCATE"=0x1088,"Calls to VNOP_LOOKUP"=0x4fd72c,"Calls to VNOP_GETATTRLISTBULK"=0x18ba4,"Calls to VNOP_CLOSE"=0x168c42,"Calls to VNOP_MNOMAP"=0x6db7,"Calls to VNOP_INACTIVE"=0x17f19,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x24726,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x1ed429,"Calls to VNOP_CREATE"=0x9af,"Metadata: Numbe$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Preboot") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s2" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o GlowE24E263.arm64eSystemCryptex + | | | | | | | { + | | | | | | | "FullName" = "GlowE24E263.arm64eSystemCryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x11 + | | | | | | | "inode range base" = 0x8f1c + | | | | | | | "System content" = Yes + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0xf757e7000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | | "inode range length" = 0x2fd4 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0xf757e7000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x1d14e4,"Metadata: Number of bytes written"=0x0,"Write burst: Total time betwee$ + | | | | | | | "Cryptex inode" = 0x88b3 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppCryptex + | | | | | | | { + | | | | | | | "FullName" = "AppCryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x12 + | | | | | | | "inode range base" = 0xbef0 + | | | | | | | "System content" = Yes + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x7ad8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | | "inode range length" = 0x12d9 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x7ad8000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x23c8,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bu$ + | | | | | | | "Cryptex inode" = 0x88b7 + | | | | | | | } + | | | | | | | + | | | | | | +-o GlowE24E263.arm64eSystemCryptex + | | | | | | { + | | | | | | "FullName" = "GlowE24E263.arm64eSystemCryptex" + | | | | | | "Sealed" = "Yes" + | | | | | | "Graft directory inode" = 0x14 + | | | | | | "inode range base" = 0xd1c9 + | | | | | | "System content" = Yes + | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x8b49000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | "inode range length" = 0x2fd4 + | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x8b49000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x187e,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bu$ + | | | | | | "Cryptex inode" = 0x88b4 + | | | | | | } + | | | | | | + | | | | | +-o Recovery@3 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = No + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0x4 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Recovery" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0x11 + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "C16E6524-0B49-4D3A-A8CD-1FE01E3CBF10" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x4000,"Bytes read from block device"=0x156e1000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x9c,"Calls to VNOP_GETATTRLISTBULK"=0x23,"Calls to VNOP_CLOSE"=0x2f,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x6a,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x30aa,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x13da,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to wri$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Recovery") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s3" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Update@4 + | | | | | | | { + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "Open" = Yes + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "RoleValue" = 0xc0 + | | | | | | | "Writable" = Yes + | | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | | "Sealed" = "No" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "FullName" = "Update" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "BSD Minor" = 0xd + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "Whole" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "Removable" = No + | | | | | | | "UUID" = "12606787-8A52-4103-805B-9B783BC225C5" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x1ca000,"Bytes read from block device"=0x12d000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x1c19,"Calls to VNOP_GETATTRLISTBULK"=0x48e,"Calls to VNOP_CLOSE"=0xa97,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x6e1,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0xc2,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x92,"Calls to VNOP_CREATE"=0x1d,"Metadata: Number of objects failed to w$ + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "Ejectable" = No + | | | | | | | "Role" = ("Update") + | | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | | "BSD Name" = "disk3s4" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "autodiskmount" = No + | | | | | | | "Status" = "Online" + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "Leaf" = Yes + | | | | | | | "OSInternal" = Yes + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | { + | | | | | | "IOProbeScore" = 0x7918 + | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | } + | | | | | | + | | | | | +-o Data@5 + | | | | | | | { + | | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | | "RoleValue" = 0x40 + | | | | | | | "IncompatibleFeatures" = 0x41 + | | | | | | | "Locked" = No + | | | | | | | "Writable" = Yes + | | | | | | | "BSD Unit" = 0x3 + | | | | | | | "EncryptionType" = "ScalablePFK" + | | | | | | | "BSD Name" = "disk3s5" + | | | | | | | "Size" = 0x3911870000 + | | | | | | | "Whole" = No + | | | | | | | "Open" = Yes + | | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | | "Physical Block Size" = 0x1000 + | | | | | | | "Status" = "Online" + | | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x27c43d000,"Bytes read from block device"=0xf544abc000,"Calls to VNOP_ALLOCATE"=0x16e9c,"Calls to VNOP_LOOKUP"=0x1f044672,"Calls to VNOP_GETATTRLISTBULK"=0x357885,"Calls to VNOP_CLOSE"=0x247637d,"Calls to VNOP_MNOMAP"=0x4b0d9b,"Calls to VNOP_INACTIVE"=0x16d010d,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x6934e5c,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x163194a,"Calls to VNOP_CREATE"=0xbf$ + | | | | | | | "UUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "Encrypted" = Yes + | | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | | "CaseSensitive" = No + | | | | | | | "Ejectable" = No + | | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | | "VolGroupMntFromName" = "/dev/disk3s5" + | | | | | | | "Sealed" = "No" + | | | | | | | "BSD Major" = 0x1 + | | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | | "Leaf" = Yes + | | | | | | | "VolGroupUUID" = "C6ADB841-2907-421F-B33E-F7633C06428D" + | | | | | | | "FullName" = "Data" + | | | | | | | "Logical Block Size" = 0x1000 + | | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | | "Removable" = No + | | | | | | | "Role" = ("Data") + | | | | | | | "BSD Minor" = 0x12 + | | | | | | | } + | | | | | | | + | | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | | | { + | | | | | | | "IOProbeScore" = 0x7918 + | | | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | | "IOResourceMatch" = "IOBSD" + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200731.UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200731.UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb719 + | | | | | | | "inode range base" = 0x1eb71a + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x8b + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x66ad + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200448.UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200448.UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb935 + | | | | | | | "inode range base" = 0x1eb936 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x73 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x65ff + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200451.UC_FM_PHOTOS_GENEDIT_MAGICCLEANUP_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200451.UC_FM_PHOTOS_GENEDIT_MAGICCLEANUP_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb6d9 + | | | | | | | "inode range base" = 0x1eb6da + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x27fbb8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | | "inode range length" = 0x3f + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x27fbb8000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x2db9f,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between$ + | | | | | | | "Cryptex inode" = 0x68a9 + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200703.UC_FM_LANGUAGE_INSTRUCT_3B_DRAFTS_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200703.UC_FM_LANGUAGE_INSTRUCT_3B_DRAFTS_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb7a5 + | | | | | | | "inode range base" = 0x1eb7a6 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x166 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x665b + | | | | | | | } + | | | | | | | + | | | | | | +-o Creedence11M6270.SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "Creedence11M6270.SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1ab683 + | | | | | | | "inode range base" = 0x1ab688 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x20b5000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0$ + | | | | | | | "inode range length" = 0x22 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x20b5000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x645,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bur$ + | | | | | | | "Cryptex inode" = 0x1ab47d + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200516.UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200516.UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb664 + | | | | | | | "inode range base" = 0x1eb665 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x74 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x62a1 + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M200730.UC_IF_PLANNER_NLROUTER_BASE_EN_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M200730.UC_IF_PLANNER_NLROUTER_BASE_EN_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x1eb90c + | | | | | | | "inode range base" = 0x1eb90d + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Ca$ + | | | | | | | "inode range length" = 0x28 + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0$ + | | | | | | | "Cryptex inode" = 0x897c + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M201387.UC_FM_CODE_GENERATE_SAFETY_GUARDRAIL_BASE_GENERIC_H15G_Cryptex + | | | | | | | { + | | | | | | | "FullName" = "RevivalB13M201387.UC_FM_CODE_GENERATE_SAFETY_GUARDRAIL_BASE_GENERIC_H15G_Cryptex" + | | | | | | | "Sealed" = "Yes" + | | | | | | | "Graft directory inode" = 0x2fdfb4 + | | | | | | | "inode range base" = 0x2fdfb5 + | | | | | | | "System content" = No + | | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x93550000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=$ + | | | | | | | "inode range length" = 0x2e + | | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x93550000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x10aa,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between b$ + | | | | | | | "Cryptex inode" = 0x2fb32f + | | | | | | | } + | | | | | | | + | | | | | | +-o RevivalB13M201387.UC_FM_CODE_GENERATE_SMALL_V1_BASE_GENERIC_H15_Cryptex + | | | | | | { + | | | | | | "FullName" = "RevivalB13M201387.UC_FM_CODE_GENERATE_SMALL_V1_BASE_GENERIC_H15_Cryptex" + | | | | | | "Sealed" = "Yes" + | | | | | | "Graft directory inode" = 0x2fdfe5 + | | | | | | "inode range base" = 0x2fdfe6 + | | | | | | "System content" = No + | | | | | | "Volume statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x1fa6b8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"$ + | | | | | | "inode range length" = 0x21 + | | | | | | "Container statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x1fa6b8000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x2dc40,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between$ + | | | | | | "Cryptex inode" = 0x2fc762 + | | | | | | } + | | | | | | + | | | | | +-o VM@6 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = Yes + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x8 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "VM" + | | | | | | "Size" = 0x3911870000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xe + | | | | | | "FormattedBy" = "apfs_boot_util (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "3851BA68-DEC8-4EB1-9F4B-295935E2B63D" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x1d000,"Bytes read from block device"=0x243ae8000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x2a9,"Calls to VNOP_GETATTRLISTBULK"=0x28,"Calls to VNOP_CLOSE"=0x3e6,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x1b,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0xb8dc7,"Calls to VNOP_CREATE"=0xf,"Metadata: Number of objects failed to w$ + | | | | | | "BSD Unit" = 0x3 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("VM") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk3s6" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o RecoveryOSContainer@3 + | | | | | { + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "Base" = 0x3930c76000 + | | | | | "Writable" = Yes + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "52637672-7900-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x3 + | | | | | "Whole" = No + | | | | | "Removable" = No + | | | | | "UUID" = "D57DAE4C-FEF6-4563-A333-B5195DD08064" + | | | | | "BSD Unit" = 0x0 + | | | | | "BSD Major" = 0x1 + | | | | | "Ejectable" = No + | | | | | "BSD Name" = "disk0s3" + | | | | | "Partition ID" = 0x3 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "GPT Attributes" = 0x0 + | | | | | "Content Hint" = "52637672-7900-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = No + | | | | | "TierType" = "Main" + | | | | | } + | | | | | + | | | | +-o IOMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7530 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "IOMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o AppleAPFSContainerScheme + | | | | | { + | | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "IOPropertyMatch" = ({"Content Hint"="52637672-7900-11AA-AA11-00306543ECAC"}) + | | | | | "IOProbeScore" = 0x7d0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "Statistics" = {"Operations (Read)"=0x625b,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x63ff000} + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "APFSComposited" = No + | | | | | } + | | | | | + | | | | +-o AppleAPFSMedia + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "Writable" = Yes + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x5 + | | | | | "Whole" = Yes + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "Removable" = No + | | | | | "EncryptionBlockSize" = 0x1000 + | | | | | "UUID" = "3CE0A222-E76A-4C15-8931-E99A8A5EAE24" + | | | | | "BSD Unit" = 0x2 + | | | | | "BSD Major" = 0x1 + | | | | | "Ejectable" = No + | | | | | "BSD Name" = "disk2" + | | | | | "Physical Block Size" = 0x1000 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = No + | | | | | "OSInternal" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAPFSMediaBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o AppleAPFSContainer + | | | | | { + | | | | | "IOClass" = "AppleAPFSContainer" + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "IOMedia" + | | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | | "Logical Block Size" = 0x1000 + | | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOMatchCategory" = "IOStorage" + | | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x0,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x0,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x0,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache$ + | | | | | "UUID" = "3CE0A222-E76A-4C15-8931-E99A8A5EAE24" + | | | | | "ContainerBlockSize" = 0x1000 + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "Status" = "Online" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | } + | | | | | + | | | | +-o Recovery@1 + | | | | | | { + | | | | | | "Logical Block Size" = 0x1000 + | | | | | | "Open" = No + | | | | | | "Preferred Block Size" = 0x1000 + | | | | | | "RoleValue" = 0x4 + | | | | | | "Writable" = Yes + | | | | | | "IncompatibleFeatures" = 0x1 + | | | | | | "Sealed" = "No" + | | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | | "FullName" = "Recovery" + | | | | | | "Size" = 0x13fff5000 + | | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "BSD Minor" = 0xb + | | | | | | "FormattedBy" = "newfs_apfs (2317.61.2)" + | | | | | | "Whole" = No + | | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | | "Removable" = No + | | | | | | "UUID" = "D965D3BA-3A8A-4B4A-B531-1936DAFA712A" + | | | | | | "CaseSensitive" = No + | | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | | "BSD Unit" = 0x2 + | | | | | | "Ejectable" = No + | | | | | | "Role" = ("Recovery") + | | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | | "BSD Name" = "disk2s1" + | | | | | | "BSD Major" = 0x1 + | | | | | | "Physical Block Size" = 0x1000 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "autodiskmount" = No + | | | | | | "Status" = "Online" + | | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | | "Leaf" = Yes + | | | | | | } + | | | | | | + | | | | | +-o AppleAPFSVolumeBSDClient + | | | | | { + | | | | | "IOProbeScore" = 0x7918 + | | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o Update@2 + | | | | | { + | | | | | "Logical Block Size" = 0x1000 + | | | | | "Open" = No + | | | | | "Preferred Block Size" = 0x1000 + | | | | | "RoleValue" = 0xc0 + | | | | | "Writable" = Yes + | | | | | "IncompatibleFeatures" = 0x1 + | | | | | "Sealed" = "No" + | | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | | "FullName" = "Update" + | | | | | "Size" = 0x13fff5000 + | | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | "BSD Minor" = 0x6 + | | | | | "FormattedBy" = "com.apple.MobileSof (2317.61.2)" + | | | | | "Whole" = No + | | | | | "IOStorageFeatures" = {"Unmap"=Yes,"Priority"=Yes,"Barrier"=Yes} + | | | | | "Removable" = No + | | | | | "UUID" = "15F8AF8C-924E-41AA-87F6-A864D47A7FE4" + | | | | | "CaseSensitive" = No + | | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x0,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x0,"Calls to VNOP_GETATTRLISTBULK"=0x0,"Calls to VNOP_CLOSE"=0x0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x0,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x0,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x0,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to VN$ + | | | | | "BSD Unit" = 0x2 + | | | | | "Ejectable" = No + | | | | | "Role" = ("Update") + | | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | | "BSD Name" = "disk2s2" + | | | | | "BSD Major" = 0x1 + | | | | | "Physical Block Size" = 0x1000 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "autodiskmount" = No + | | | | | "Status" = "Online" + | | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | | "Leaf" = Yes + | | | | | "OSInternal" = Yes + | | | | | } + | | | | | + | | | | +-o AppleAPFSVolumeBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSVolume" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o NS_02 + | | | | { + | | | | "EmbeddedDeviceTypePanicLog" = Yes + | | | | } + | | | | + | | | +-o NS_03 + | | | | { + | | | | "EmbeddedDeviceTypeEAN" = Yes + | | | | } + | | | | + | | | +-o AppleNVMeEANUC + | | | { + | | | "IOUserClientCreator" = "pid 548, suhelperd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o sart-ans@FDC50000 + | | | | { + | | | | "sart-version" = <03000000> + | | | | "sart-power-managed" = <> + | | | | "compatible" = <736172742c636f617374677561726400> + | | | | "name" = <736172742d616e7300> + | | | | "IODeviceMemory" = (({"address"=0x30dc50000,"length"=0xc000}),({"address"=0x210000000,"length"=0x0}),({"address"=0x30dcc0000,"length"=0x4000})) + | | | | "sart-power-reg-offset" = + | | | | "device_type" = <7361727400> + | | | | "AAPL,phandle" = <9c000000> + | | | | "reg" = <0000c5fd0000000000c0000000000000000000000000000000000000000000000000ccfd000000000040000000000000> + | | | | } + | | | | + | | | +-o IOCoastGuardSARTMapper + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSART" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "IOCoastGuardSARTMapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSART" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSART" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("sart,coastguard") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "sart,coastguard" + | | | "IOMapperID" = <9c000000> + | | | } + | | | + | | +-o smc@DC400000 + | | | | { + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "clock-ids" = <> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "clock-gates" = <> + | | | | "reg" = <000040dc0000000000c0060000000000000005dc000000000040000000000000000081dc000000001400000000000000> + | | | | "AAPL,phandle" = <9d000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "iop-version" = <01000000> + | | | | "device_type" = <736d6300> + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "IODeviceMemory" = (({"address"=0x2ec400000,"length"=0x6c000}),({"address"=0x2ec050000,"length"=0x4000}),({"address"=0x2ec810000,"length"=0x14})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "role" = <534d4300> + | | | | "power-gates" = <> + | | | | "timers-reg-index" = <02000000> + | | | | "name" = <736d6300> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "SMC" + | | | | } + | | | | + | | | +-o iop-smc-nub + | | | | { + | | | | "pre-loaded" = <01000000> + | | | | "uuid" = <30303030303030302d303030302d303030302d303030302d30303030303030303030303000> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <9e000000> + | | | | "region-base" = <0000e0ed02000000> + | | | | "firmware-name" = <7438313232736d6300> + | | | | "running" = <01000000> + | | | | "no-shutdown" = <01000000> + | | | | "region-size" = <0000100000000000> + | | | | "continuous-time" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "KDebugCoreID" = 0x8 + | | | | "no-hibernate-sleep" = <> + | | | | "watchdog-enable" = <> + | | | | "coredump-active-only" = <> + | | | | "name" = <696f702d736d632d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(SMC) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SMC","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "SMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = <9e000000> + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "SMC" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="SMC","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="SMC","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="SMC","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o SMCEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o AppleSMCKeysEndpoint + | | | | { + | | | | "IOClass" = "AppleSMCKeysEndpoint" + | | | | "IOPlatformSleepAction" = 0x320 + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "socd-data-in-progress" = No + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "AppleSMCClient" + | | | | "remove-socd-data" = 0x0 + | | | | "IONameMatch" = "SMCEndpoint1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "Generation" = 0x4 + | | | | "IOMatchCategory" = "AppleSMCKeysEndpoint" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IONameMatched" = "SMCEndpoint1" + | | | | "role" = "SMC" + | | | | "DeviceOpenedByEventSystem" = Yes + | | | | "IOPlatformWakeAction" = 0x320 + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU VP0u" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503075 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tcal" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450305a + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503164 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503264 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503364 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503464 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503564 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503664 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503764 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdev8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503864 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54503662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU tdie8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5450386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503062 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503762 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56503962 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vbuck13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650316c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650326c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650336c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650356c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650626c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650636c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650656c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo15" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650666c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo17" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5650686c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU vldo21" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56506c6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503062 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503762 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49503962 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ibuck13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950316c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950326c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950336c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950356c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo11" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950626c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950636c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950656c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo15" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950666c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo17" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4950686c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU ildo21" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49506c6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 VR0u" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523075 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tcal" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452305a + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523164 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523264 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523364 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523464 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdev5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523564 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie1" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie2" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523262 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie3" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523462 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie7" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452376c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 tdie8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x5452386c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56523862 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vbuck14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652346c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652366c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652646c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo16" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652676c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo18" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x5652696c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 vldo19" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0x56526a6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x3}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck5" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523662 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck8" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49523862 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526162 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck12" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526362 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ibuck14" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526562 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo0" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952306c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo4" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952346c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo6" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952366c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo9" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952396c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo10" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952616c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo13" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952646c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo16" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952676c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo18" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x4952696c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUPowerSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "PMU2 ildo19" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0x49526a6c + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff08,"DeviceUsage"=0x2}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff08 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473042 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473043 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473048 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473056 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473142 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o AppleARMPMUTempSensor + | | | | | { + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "VendorID" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "Product" = "gas gauge battery" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "PrimaryUsage" = 0x5 + | | | | | "LocationID" = 0x54473242 + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notificatio$ + | | | | | "ProductID" = 0x0 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5}) + | | | | | "Built-In" = Yes + | | | | | "ReportInterval" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "VendorIDSource" = 0x0 + | | | | | "QueueSize" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {} + | | | | } + | | | | + | | | +-o smc-pmu + | | | | | { + | | | | | "#address-cells" = <00000000> + | | | | | "AAPL,phandle" = <9f000000> + | | | | | "event_name-bit48" = <72746300> + | | | | | "event_name-bit22" = <747261636b7061646b6579626f61726400> + | | | | | "has_pmu_gpio0" = <01000000> + | | | | | "event_name-bit44" = <555342325f77616b6500> + | | | | | "has_lid_open_sensor" = <01000000> + | | | | | "InterruptControllerName" = "IOInterruptController0000009F" + | | | | | "event_name-bit42" = <5553422d435f706c756700> + | | | | | "event_name-bit8" = <6c696400> + | | | | | "event_name-bit0" = <70777262746e00> + | | | | | "event_name-bit40" = <616361747461636800> + | | | | | "name" = <736d632d706d7500> + | | | | | "event_name-bit13" = <77696669627400> + | | | | | "compatible" = <736d632d706d7500> + | | | | | "interrupt-controller" = <> + | | | | | "event_name-bit9" = <636f64656300> + | | | | | "#interrupt-cells" = <01000000> + | | | | | "event_name-bit11" = <6368617267657200> + | | | | | "event_name-bit45" = <6175706f00> + | | | | | "event_name-bit43" = <555342325f706c756700> + | | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | | "event_name-bit41" = <616364657461636800> + | | | | | "function-pmu_button" = <2101000044747542> + | | | | | } + | | | | | + | | | | +-o AppleSMCPMU + | | | | { + | | | | "IOClass" = "AppleSMCPMU" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOPlatformWakeAction" = 0x2bc + | | | | "IOPlatformSleepAction" = 0x2bc + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = ("smc-pmu") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOFunctionParent0000009F" = <> + | | | | "IONameMatched" = "smc-pmu" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "InterruptControllerName" = "IOInterruptController0000009F" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | } + | | | | + | | | +-o smc-charger-util-0 + | | | | | { + | | | | | "name" = <736d632d636861726765722d7574696c2d3000> + | | | | | "compatible" = <736d632d636861726765722d7574696c00> + | | | | | "dock-num" = <01000000> + | | | | | "port-number" = <01000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <02000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o smc-charger-util-1 + | | | | | { + | | | | | "name" = <736d632d636861726765722d7574696c2d3100> + | | | | | "compatible" = <736d632d636861726765722d7574696c00> + | | | | | "dock-num" = <02000000> + | | | | | "port-number" = <02000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <02000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o smc-charger-util + | | | | | { + | | | | | "magsafe-auth" = <01000000> + | | | | | "name" = <736d632d636861726765722d7574696c00> + | | | | | "port-number" = <01000000> + | | | | | "dock-num" = <03000000> + | | | | | "device_type" = <736d632d636861726765722d7574696c00> + | | | | | "port-type" = <11000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleSMCChargerUtil + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleSMCInterface" + | | | | "IOClass" = "AppleSMCChargerUtil" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("smc-charger-util") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-charger-util" + | | | | } + | | | | + | | | +-o AppleSmartBatteryManager + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOMatchCategory" = "AppleSmartBatteryManager" + | | | | | "IOClass" = "AppleSmartBatteryManager" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOProviderClass" = "AppleSMC" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSmartBatteryManager" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "AppleSmartBatteryManagerUserClient" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | } + | | | | | + | | | | +-o AppleSmartBattery + | | | | { + | | | | "PostChargeWaitSeconds" = 0x78 + | | | | "built-in" = Yes + | | | | "AppleRawAdapterDetails" = () + | | | | "CurrentCapacity" = 0x56 + | | | | "PackReserve" = 0x7f + | | | | "DeviceName" = "bq40z651" + | | | | "PostDischargeWaitSeconds" = 0x78 + | | | | "CarrierMode" = {"CarrierModeLowVoltage"=0xe10,"CarrierModeHighVoltage"=0x1004,"CarrierModeStatus"=0x0} + | | | | "TimeRemaining" = 0x169 + | | | | "ChargerConfiguration" = 0x0 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x6379636c65636e74,0x181120001,"BatteryCycleCount")),"IOReportGroupName"="Battery","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}}) + | | | | "AtCriticalLevel" = No + | | | | "BatteryCellDisconnectCount" = 0x0 + | | | | "UpdateTime" = 0x6825b613 + | | | | "Amperage" = 0xfffffffffffffc49 + | | | | "AppleRawCurrentCapacity" = 0xeca + | | | | "AbsoluteCapacity" = 0x0 + | | | | "AvgTimeToFull" = 0xffff + | | | | "ExternalConnected" = No + | | | | "ExternalChargeCapable" = No + | | | | "AppleRawBatteryVoltage" = 0x3042 + | | | | "BootVoltage" = 0x0 + | | | | "BatteryData" = {"Ra03"=0x45,"Ra10"=0x7e,"CellWom"=(0x0,0x0),"RaTableRaw"=(<00ef0040002f003f005c004a0063005e006d006e008700a20100021f03e60000>,<010500480032004800630050005d005d006b006e0084009f00fd020e03ae0000>,<00fc0044003600450060004e005c005c006c0079007e009900f6021a03d50000>),"Qstart"=0x0,"AdapterPower"=,"TrueRemainingCapacity"=0x0,"DailyMinSoc"=0x53,"Ra04"=0x60,"CurrentSenseMonitorStatus"=0x0,"Ra11"=0x99,"CellVoltage"=(0x1016,0x100f,0x101d),"PackCurrentAccumulator"=0x3d9c10,"PassedCharge"=0x52,"Flags"=0x1000001,"$ + | | | | "BatteryInstalled" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "Serial" = "F5D50370E0U10DLDM" + | | | | "AppleRawExternalConnected" = No + | | | | "KioskMode" = {"KioskModeLastHighSocHours"=0x0,"KioskModeFullChargeVoltage"=0x0,"KioskModeMode"=0x0,"KioskModeHighSocSeconds"=0x0,"KioskModeHighSocDays"=0x0} + | | | | "NominalChargeCapacity" = 0x12ae + | | | | "FullyCharged" = No + | | | | "DeadBatteryBootData" = {"ActivePayloads"=0x3,"GeneralPayload"={"StartBatteryCapacity"=0x0,"PrechargeCount"=0x1,"VbusType"=0x0,"WirelessChargingMode"=0x0,"StartBatteryVoltage"=0x366,"AdapterType"=0x0,"CloakEntryCount"=0x0,"TimeOnCharger"=0x1f,"AverageBattVirtualTemp"=0x1b,"AverageBattSkinTemp"=0x1b},"SMCBootManagementPayload"={"DisplayTimeBootCount"=0x0,"Ok2SwitchCount"=0x2,"AdapterPower"=0x0,"DeviceResetCount"=0x2,"HighPoweriBootCount"=0x2,"APBootCount"=0x2}} + | | | | "ManufacturerData" = <000000000b000100f91400000432323133033030420341544c00200000000000> + | | | | "FedDetails" = ({"FedStateOfCharge"=0x0,"FedPortPowerRole"=0x0,"FedProductID"=0x0,"FedDesignCapacity"=0x0,"FedPdSpecRevision"=0x0,"FedSnkConfReason"=0x0,"FedVendorID"=0x0,"FedExternalConnected"=0x0,"FedDualRolePower"=0x1,"FedRemainingCapacity"=0x0,"FedPwrPolicySt"=0x0,"FedSrcConfReason"=0x0},{"FedStateOfCharge"=0x0,"FedPortPowerRole"=0x0,"FedProductID"=0x0,"FedDesignCapacity"=0x0,"FedPdSpecRevision"=0x0,"FedSnkConfReason"=0x0,"FedVendorID"=0x0,"FedExternalConnected"=0x0,"FedDualRolePower"=0x0,"FedRemainingCapacity$ + | | | | "FullPathUpdated" = 0x6825b523 + | | | | "BatteryInvalidWakeSeconds" = 0x1e + | | | | "ChargerData" = {"ChargerStatus"=<0700021c00009820440f00000000000000000000000000000000000000000000000000000000000000c3e400024a010000000000000000000000000000000000>,"VacVoltageLimit"=0x1153,"NotChargingReason"=0x80,"SlowChargingReason"=0x0,"ChargerResetCounter"=0x0,"ChargerID"=0xe,"TimeChargingThermallyLimited"=0x0,"ChargingVoltage"=0x1173,"ChargerInhibitReason"=0x0,"ChargingCurrent"=0x0} + | | | | "BootPathUpdated" = 0x680bc3c8 + | | | | "DesignCycleCount9C" = 0x3e8 + | | | | "AdapterDetails" = {"FamilyCode"=0x0} + | | | | "PowerTelemetryData" = {"AccumulatedWallEnergyEstimate"=0x1370157e,"SystemEnergyConsumed"=0x0,"SystemPowerInAccumulatorCount"=0x312b8,"AdapterEfficiencyLoss"=0x0,"SystemLoad"=0x378d,"AccumulatedSystemLoad"=0x4c25a3c9,"AccumulatedSystemEnergyConsumed"=0x46d716717a2e,"SystemCurrentIn"=0x0,"WallEnergyEstimate"=0x0,"SystemLoadAccumulatorCount"=0x19cc45,"AdapterEfficiencyLossAccumulatorCount"=0x1d100,"SystemVoltageIn"=0x0,"SystemPowerIn"=0x0,"AccumulatedBatteryPower"=0x32da7d3b,"PowerTelemetryErrorCount"=0x0,"Accumulat$ + | | | | "MaxCapacity" = 0x64 + | | | | "InstantAmperage" = 0xfffffffffffffc49 + | | | | "PortControllerInfo" = ({"PortControllerLoserReason"=0x1,"PortControllerEvtBuffer"=<02485f5e005f40015e0003021a033f025ff80003011a0340005ff800370231103702485f5e005f40015e000503021a033f025ff80003011a0340005ff800370231103702485f5e005f40015e000503021a033f025ff80003011a0340005ff800370231103702485f5e005f5e00400103021a033f025ff800>,"PortControllerIrqCntWakeAck"=0x346a,"PortControllerSlpWakIsSleepEnabled"=0x1,"PortControllerI2cErrCount"=0x0,"PortControllerIrqCntStsUpd"=0x3d,"PortControllerFwVersion"=0x306300,"PortControlle$ + | | | | "GasGaugeFirmwareVersion" = 0x2 + | | | | "AdapterInfo" = 0x0 + | | | | "Location" = 0x0 + | | | | "Temperature" = 0xb9b + | | | | "AvgTimeToEmpty" = 0x169 + | | | | "BestAdapterIndex" = 0x0 + | | | | "DesignCapacity" = 0x11d3 + | | | | "IsCharging" = No + | | | | "PermanentFailureStatus" = 0x0 + | | | | "Voltage" = 0x3042 + | | | | "UserVisiblePathUpdated" = 0x6825b613 + | | | | "CycleCount" = 0x1a + | | | | "AppleRawMaxCapacity" = 0x122f + | | | | "VirtualTemperature" = 0x955 + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 19109, spindump" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | | { + | | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleSMCClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o uart0@91200000 + | | | | { + | | | | "compatible" = <756172742d312c73616d73756e6700> + | | | | "clock-ids" = <9d01000004000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "reg" = <00002091000000000040000000000000> + | | | | "clock-gates" = <4b000000> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <7561727400> + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x2a1200000,"length"=0x4000})) + | | | | "no-flow-control" = <> + | | | | "function-tx" = <700000004f495047a500000002010000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "uart-version" = <01000000> + | | | | "boot-console" = <> + | | | | "name" = <756172743000> + | | | | } + | | | | + | | | +-o AppleSamsungSerial + | | | | { + | | | | "IOClass" = "AppleSamsungSerial" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSamsungSerial" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOTTYBaseName" = "debug-console" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("uart-1,samsung") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "uart-1,samsung" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSamsungSerial" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSamsungSerial" + | | | | "IOTTYSuffix" = "" + | | | | } + | | | | + | | | +-o debug-console + | | | | { + | | | | "IOTTYBaseName" = "debug-console" + | | | | "serial state" = 0x0 + | | | | "serial flow control" = 0x0 + | | | | "serial parity" = 0x0 + | | | | "AAPL,phandle" = + | | | | "serial baud rate" = 0x0 + | | | | "HiddenPort" = Yes + | | | | "serial data width" = 0x0 + | | | | "IOTTYSuffix" = "" + | | | | "AppleOnboardSerialParent000000A7" = <> + | | | | "name" = <64656275672d636f6e736f6c6500> + | | | | "serial stop bits" = 0x0 + | | | | } + | | | | + | | | +-o AppleOnboardSerialBSDClient + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOMatchCategory" = "AppleOnboardSerialBSDClient" + | | | | "IOClass" = "AppleOnboardSerialBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOProviderClass" = "AppleOnboardSerialSync" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleOnboardSerial" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOSerialBSDClient + | | | { + | | | "IOClass" = "IOSerialBSDClient" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily" + | | | "IOProviderClass" = "IOSerialStreamSync" + | | | "IOTTYBaseName" = "debug-console" + | | | "IOSerialBSDClientType" = "IOSerialStream" + | | | "IOProbeScore" = 0x3e8 + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOTTYDevice" = "debug-console" + | | | "IOCalloutDevice" = "/dev/cu.debug-console" + | | | "IODialinDevice" = "/dev/tty.debug-console" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSerialFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSerialFamily" + | | | "IOTTYSuffix" = "" + | | | } + | | | + | | +-o dockchannel-uart@D4128000 + | | | | { + | | | | "compatible" = <6161706c2c646f636b2d6368616e6e656c7300> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "reg" = <008012d400000000000001000000000000c010d4000000000010000000000000> + | | | | "AAPL,phandle" = + | | | | "max-aop-clk" = <00882a11> + | | | | "dock-wstat-mask" = + | | | | "enable-sw-drain" = <01000000> + | | | | "device_type" = <646f636b6368616e6e656c00> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x2e4128000,"length"=0x10000}),({"address"=0x2e410c000,"length"=0x1000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <646f636b6368616e6e656c2d7561727400> + | | | | } + | | | | + | | | +-o AppleSerialShim + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSerialShim" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AppleSerialShim" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSerialShim" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSerialShim" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dockchannel-uart") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dockchannel-uart" + | | | } + | | | + | | +-o dockchannel-mtp@EAB00000 + | | | | { + | | | | "channel-name" = <6368616e6e656c3000> + | | | | "compatible" = <646f636b6368616e6e656c2c743830303200> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <38030000> + | | | | "reg" = <0000b0ea0000000000100000000000000040b1ea0000000000100000000000000000b3ea0000000000100000000000000040b3ea0000000000100000000000000080b2ea00000000001000000000000000c0b2ea000000000010000000000000> + | | | | "AAPL,phandle" = + | | | | "IOInterruptSpecifiers" = (<38030000>) + | | | | "dock-wstat-mask" = + | | | | "device_type" = <646f636b6368616e6e656c2d6d747000> + | | | | "fifo-size" = <00080000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IODeviceMemory" = (({"address"=0x2fab00000,"length"=0x1000}),({"address"=0x2fab14000,"length"=0x1000}),({"address"=0x2fab30000,"length"=0x1000}),({"address"=0x2fab34000,"length"=0x1000}),({"address"=0x2fab28000,"length"=0x1000}),({"address"=0x2fab2c000,"length"=0x1000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <646f636b6368616e6e656c2d6d747000> + | | | | "channel-number" = <00000000> + | | | | } + | | | | + | | | +-o AppleDockChannel + | | | | { + | | | | "IOClass" = "AppleDockChannel" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDockChannel" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "channel-name" = "channel0" + | | | | "IOUserClientClass" = "AppleDockChannelUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dockchannel,t8002" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dock-wstat-mask" = 0xfff + | | | | "IONameMatched" = "dockchannel,t8002" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDockChannel" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDockChannel" + | | | | } + | | | | + | | | +-o mtp-transport + | | | | { + | | | | "hid-merge-personality" = <4d54505f53595300> + | | | | "compatible" = <6168742d68696265726e61746f7200> + | | | | "aud-early-boot-critical" = <> + | | | | "iommu-parent" = + | | | | "image-tag" = <6670746d> + | | | | "AAPL,phandle" = + | | | | "AIDImageDownloadersCreated" = Yes + | | | | "device_type" = <6d74702d7472616e73706f727400> + | | | | "role" = <4d545000> + | | | | "hibernator-target" = <4170706c654849445472616e73706f72744465766963654649464f00> + | | | | "hid-transport-mux" = <6d74702d616f702d6d757800> + | | | | "name" = <6d74702d7472616e73706f727400> + | | | | } + | | | | + | | | +-o AppleHIDTransportHibernator + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "IOProviderClass" = "IOService" + | | | | "IOClass" = "AppleHIDTransportHibernator" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransportFIFO" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("aht-hibernator") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "aht-hibernator" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x1 + | | | | "AIDLoadMs" = 0x1f09 + | | | | "KernelClientRequestTimeMs" = 0xe73 + | | | | "LoadingGroup" = 0x1 + | | | | "AHTLoaderName" = "mtp-transport" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x6d747066 + | | | | "UserSpaceRequestTimeMs" = 0x2 + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x0 + | | | | "AIDLoadMs" = 0x1f0b + | | | | "KernelClientRequestTimeMs" = 0xea8 + | | | | "LoadingGroup" = 0x0 + | | | | "AHTLoaderName" = "multi-touch" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x6d746677 + | | | | "UserSpaceRequestTimeMs" = 0x34 + | | | | } + | | | | + | | | +-o AIDImageDownloader + | | | | { + | | | | "ValidationTimeMs" = 0x0 + | | | | "AIDLoadMs" = 0x1f43 + | | | | "KernelClientRequestTimeMs" = 0xeac + | | | | "LoadingGroup" = 0x0 + | | | | "AHTLoaderName" = "stm" + | | | | "IOUserClientClass" = "AppleFirmwareUpdateUserClient" + | | | | "AIDStartMs" = 0x1096 + | | | | "Need FUD Download" = 0x0 + | | | | "Image Tag" = 0x69706466 + | | | | "UserSpaceRequestTimeMs" = 0x1 + | | | | } + | | | | + | | | +-o AppleHIDTransportDeviceFIFO + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleHIDTransport","IOReportChannels"=((0x5245534554434e54,0x101080001,"ResetCount"),(0x5754444f47434e54,0x101080001,"WatchdogResetCount")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="DeviceReset"}) + | | | | "MemoryFIFOs" = ({"Address"=0x10000028000,"Size"=0x200000}) + | | | | "IOUserClientClass" = "AppleHIDTransportDeviceUserClient" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "ResetCount" = 0x0 + | | | | } + | | | | + | | | +-o AppleHIDTransportBootloaderRTBuddy + | | | | { + | | | | "Config" = {"Protocol"="SCMFIFO","Interfaces"=({"bInterfaceNumber"=0x0,"InterfaceName"="comm"},{"bInterfaceNumber"=0x6,"AsyncRegistration"=Yes,"Reporters"=({"ReportID"=0xea,"SubgroupName"="mtp","Categories"=("Performance","Field"),"Type"="Simple","AbsoluteValues"=No,"ReportLength"=0x3f7,"Channels"=({"Offset"=0x7,"Name"="mtp.BLACK_BOX.UNKNOWN","Type"="Counter","Size"=0x4},{"Offset"=0xb,"Name"="mtp.BLACK_BOX.BAD_MODULE_ID","Type"="Counter","Size"=0x4},{"Offset"=0xf,"Name"="mtp.BLACK_BOX.BAD_EVENT_ID","Type"="Counter","Siz$ + | | | | "hid-merge-personality" = "MTP_SYS" + | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | "image-tag" = 0x6d747066 + | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | "AHTBootloadLoadImageStart" = 0x1f0a + | | | | "AHTBootloadLoadImageEnd" = 0x1f0a + | | | | "Supports Memory Dump" = No + | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | } + | | | | + | | | +-o AppleHIDTransportProtocolSCMFIFO + | | | | { + | | | | } + | | | | + | | | +-o comm + | | | | { + | | | | "PowerState" = 0x0 + | | | | "bInterfaceNumber" = 0x0 + | | | | "LocationId" = 0xaa + | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | "InterfaceName" = "comm" + | | | | "InterfaceType" = "Management" + | | | | } + | | | | + | | | +-o mtp + | | | | | { + | | | | | "Reporters" = ({"ReportID"=0xea,"SubgroupName"="mtp","Categories"=("Performance","Field"),"Type"="Simple","AbsoluteValues"=No,"ReportLength"=0x3f7,"Channels"=({"Offset"=0x7,"Name"="mtp.BLACK_BOX.UNKNOWN","Type"="Counter","Size"=0x4},{"Offset"=0xb,"Name"="mtp.BLACK_BOX.BAD_MODULE_ID","Type"="Counter","Size"=0x4},{"Offset"=0xf,"Name"="mtp.BLACK_BOX.BAD_EVENT_ID","Type"="Counter","Size"=0x4},{"Offset"=0x13,"Name"="mtp.BLACK_BOX.BAD_BUFFER_SZ","Type"="Counter","Size"=0x4},{"Offset"=0x17,"Name"="mtp.BLACK_BOX.THROW_EXTERNA$ + | | | | | "InterfaceType" = "HID" + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x0,0x101080001,"mtp.BLACK_BOX.UNKNOWN"),(0x1,0x101080001,"mtp.BLACK_BOX.BAD_MODULE_ID"),(0x2,0x101080001,"mtp.BLACK_BOX.BAD_EVENT_ID"),(0x3,0x101080001,"mtp.BLACK_BOX.BAD_BUFFER_SZ"),(0x4,0x101080001,"mtp.BLACK_BOX.THROW_EXTERNAL"),(0x5,0x101080001,"mtp.DRAM.REGISTER_FAILURE"),(0x6,0x101080001,"mtp.DRAM.ASSIGN_VM_FAILURE"),(0x7,0x101080001,"mtp.DRAM.UNREGISTER_FAILURE"),(0x8,0x101080001,"mtp.HSP_SPI.ACK_SENT"),(0x9,0x101080001,"mtp.HSP_SPI.NAK_SENT")$ + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LocationId" = 0xaa + | | | | | "InterfaceName" = "mtp" + | | | | | "bInterfaceNumber" = 0x6 + | | | | | "HIDDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5f}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x5f + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x20,"Min"=0x0,"Flags"=0x22,"ReportID"=0xe0,"Usage"=0x5f,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x20,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0x5f},{"VariableSize"=0x0,"Uni$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xe0,0x100020001,"Report 224")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xe0,"ElementCookie"=0x7,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x1 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0x5f + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x5f}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff0a5f00a1010600ff0a5f00150026ff00750896040085e081227600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x5 + | | | | } + | | | | + | | | +-o multi-touch + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "hid-merge-personality" = <43314644312c3200> + | | | | | "NotifyPowerStateChange" = Yes + | | | | | "image-tag" = <7766746d> + | | | | | "AAPL,phandle" = + | | | | | "PowerState" = "On" + | | | | | "ExternalResources" = {"afe-reset"=0xa7} + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "function-afe-reset" = <9f00000034574b703830506700000100> + | | | | | "NotifyAllResets" = No + | | | | | "IOReportLegendPublic" = Yes + | | | | | "PowerMethod" = 0x2 + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "name" = <6d756c74692d746f75636800> + | | | | | "HIDDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "bootloader-type" = <43424f5200> + | | | | | "Reporters" = ({"ReportID"=0x7e,"SubgroupName"="Trackpad Power State Time (ms)","Categories"=("Power"),"Type"="Simple","AbsoluteValues"=Yes,"ReportLength"=0x81,"ClearReportZeroPad"=Yes,"GroupName"="Trackpad Power Stats","Channels"=({"Offset"=0x1,"Name"="Unknown","Type"="Counter","Size"=0x8},{"Offset"=0x9,"Name"="Active","Type"="Counter","Size"=0x8},{"Offset"=0x11,"Name"="Ready","Type"="Counter","Size"=0x8},{"Offset"=0x19,"Name"="Rsv","Type"="Counter","Size"=0x8},{"Offset"=0x21,"Name"="Rsv","Type"="Counter","Size"=0x8}$ + | | | | | "reset-sequence" = <66756e6374696f6e2d6166652d72657365740032000100> + | | | | | "bInterfaceNumber" = 0x1 + | | | | | "LocationId" = 0xaa + | | | | | "AsyncRegistration" = No + | | | | | "power-sequence" = <66756e6374696f6e2d6166652d72657365740000320001> + | | | | | "aud-early-boot-critical" = <> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Trackpad Power Stats","IOReportChannels"=((0x0,0x100020001,"Unknown"),(0x1,0x100020001,"Active"),(0x2,0x100020001,"Ready"),(0x3,0x100020001,"Rsv"),(0x4,0x100020001,"Rsv"),(0x5,0x100020001,"Rsv"),(0x6,0x100020001,"Rsv"),(0x7,0x100020001,"Rsv"),(0x8,0x100020001,"Rsv"),(0x9,0x100020001,"Anticip"),(0xa,0x100020001,"Diag"),(0xb,0x100020001,"Rsv"),(0xc,0x100020001,"Rsv"),(0xd,0x100020001,"Rsv"),(0xe,0x100020001,"Rsv"),(0xf,0x100020001,"ForceOnly")),"IOReportChannelInfo"={"IOReportCh$ + | | | | | "device_type" = <6d756c74692d746f75636800> + | | | | | "InterfaceName" = "multi-touch" + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportBootloaderCBOR + | | | | | { + | | | | | "Config" = {"Always Powered"=Yes,"Interface Config"=({"Reporters"=({"ReportID"=0x7e,"SubgroupName"="Trackpad Power State Time (ms)","Categories"=("Power"),"Type"="Simple","AbsoluteValues"=Yes,"ReportLength"=0x81,"ClearReportZeroPad"=Yes,"GroupName"="Trackpad Power Stats","Channels"=({"Offset"=0x1,"Name"="Unknown","Type"="Counter","Size"=0x8},{"Offset"=0x9,"Name"="Active","Type"="Counter","Size"=0x8},{"Offset"=0x11,"Name"="Ready","Type"="Counter","Size"=0x8},{"Offset"=0x19,"Name"="Rsv","Type"="Counter","Size"=0x8},{"$ + | | | | | "hid-merge-personality" = "C1FD1,2" + | | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | | "image-tag" = 0x6d746677 + | | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | | "AHTBootloadLoadImageStart" = 0x1f3f + | | | | | "AHTBootloadLoadImageEnd" = 0x1f3f + | | | | | "Supports Memory Dump" = No + | | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x6d8 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "RequiresTCCAuthorization" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "Built-In" = Yes + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "FirstInputReceived" = Yes + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x0,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x9,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x2,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x2,0x100020001,"Report 2"),(0x3f,0x100020001,"Report 63"),(0x44,0x100020001,"Report 68")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0x2,"ElementCookie"=0x6ec,"Size"=0x40,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x40,"Usage"=0x0},{"ReportID"=0x3f,"ElementCookie"=0x6ed,"Size"=0x88,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x88,"Usage"=0x0},{"ReportID"=0x44,"ElementCookie"=0x6ee,"Size"=0x36c0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x36c0,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0x2 + | | | | | "LocationID" = 0xaa + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <05010902a1010901a1000509190129031500250185029503750181029501750581010501093009311581257f7508950281069504750881017600409502b101c0c0050d0905a1010600ff090c150026ff0075089510853f8122c00600ff090ca1010600ff090c150026ff008544750896d7068100c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x6d8 + | | | | | } + | | | | | + | | | | +-o AppleMultitouchTrackpadHIDEventDriver + | | | | | { + | | | | | "mt-device-id" = 0x7000000000000aa + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "SensorProperties" = {} + | | | | | "BuildAMDAtStart" = Yes + | | | | | "ApplePreferencesDefaultPreferences" = {"TrackpadPinch"=0x1,"TrackpadFourFingerVertSwipeGesture"=0x2,"ActuateDetents"=0x1,"FirstClickThreshold"=0x1,"SecondClickThreshold"=0x1,"TrackpadFourFingerPinchGesture"=0x2,"TrackpadHorizScroll"=0x1,"TrackpadMomentumScroll"=Yes,"TrackpadRotate"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"Clicking"=0x0,"TrackpadScroll"=Yes,"DragLock"=0x0,"TrackpadFiveFingerPinchGesture"=0x2,"ForceSuppressed"=No,"TrackpadThreeFingerVertSwipeGesture"=0x2,"Dragging"=0x0,"TrackpadCornerSecon$ + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "DebugState" = {"LastReportTime"=0x3b4c4fdd4b} + | | | | | "Built-In" = Yes + | | | | | "HIDPointerResolution" = 0x1900000 + | | | | | "RelativePointer" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7f,"IsArray"=No,"Type"=0x1,"Size"=0x8,"Min"=0xffffffffffffff81,"Flags"=0x8000006,"ReportID"=0x2,"Usage"=0x30,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x8,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0xffffffffffffff81,"IsWrapping"=No,"ScaledMax"=0x7f,"ElementCookie"=0x6e9},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=Yes,"UsagePage"=0x1,"Max"=0x7f,"IsArray"=No,"Type"=$ + | | | | | "MTEventSource" = Yes + | | | | | "DoReportIntervalHack" = Yes + | | | | | "SupportReportInfo" = No + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Transport" = "FIFO" + | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration" + | | | | | "HIDScrollAccelerationTable" = <000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f00810$ + | | | | | "HIDDisallowRemappingOfPrimaryClick" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration" + | | | | | "TrackpadEmbedded" = Yes + | | | | | "ApplePreferenceCapability" = 0x2 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "ApplePreferenceIdentifier" = "com.apple.AppleMultitouchTrackpad" + | | | | | "HIDScrollResolution" = 0x1900000 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "ReenumerateOnInit" = Yes + | | | | | "ProductID" = 0x0 + | | | | | "UnleashUnsupported" = Yes + | | | | | "DefaultMultitouchProperties" = {"HIDScrollAccelerationType"="HIDTrackpadScrollAcceleration","SupportsGestureScrolling"=Yes,"parser-type"=0x3e8,"HIDScrollResolutionX"=0x1900000,"HSTouchHIDService"=Yes,"HIDScrollResolutionY"=0x1900000,"HIDScrollAccelerationTable"=<000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b61500$ + | | | | | "ReportInterval" = 0x1f40 + | | | | | "HIDPointerButtonCount" = 0x3 + | | | | | "VendorIDSource" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "IOCFPlugInTypes" = {"0516B563-B15B-11DA-96EB-0014519758EF"="AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin"} + | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x76666,"HIDAccelTangentSpeedParabolicRoot"=0x150000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xfd71,"HIDAccelTangentSpeedLinear"=0x74ccd,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x8000,"HIDAccelTangentSpeedParabolicRoot"=0x140000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xfae1,"HIDAccelTangentSpeedLinear"=0x73333,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0xa8f6,"HIDAccelTangentSpeedParabolicRoot"=0x130000,"H$ + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "LocationID" = 0xaa + | | | | | "HIDPointerAccelerationTable" = <000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d0000003c$ + | | | | | "HIDServiceSupport" = No + | | | | | "IOClass" = "AppleMultitouchTrackpadHIDEventDriver" + | | | | | "HIDScrollAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x60000,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xf333,"HIDAccelTangentSpeedLinear"=0x63333,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0x999a,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xe666,"HIDAccelTangentSpeedLinear"=0x66666,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0xe666,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinear"=0xd99a,$ + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "SensorPropertySupported" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CountryCode" = 0x0 + | | | | | "IOProbeScore" = 0x898 + | | | | | "PrimaryUsage" = 0x2 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o AppleMultitouchDevice + | | | | | { + | | | | | "Sensor Surface Descriptor" = + | | | | | "HIDPointerAccelerationTable" = <000080005553422a00070000000000020004000000040000001000000010000000002000000d00008000000080000001400000018000000200000002e000000300000004e000000400000007400000050000000a000000060000000d40000008000000160000000ac00000230000000d0000002f0000000ec0000038c00000104000004100000011c0000048c00000005000000f0000800000008000000100000001400000018000000240000002000000038000000280000004e000000300000006600000040000000a000000050000000e4000000600000013400000080000001ec000000ac000002ec000000d000000$ + | | | | | "Multitouch ID" = 0x7000000000000aa + | | | | | "HIDAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x76666,"HIDAccelTangentSpeedParabolicRoot"=0x150000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xfd71,"HIDAccelTangentSpeedLinear"=0x74ccd,"HIDAccelGainCubic"=0x147b,"HIDAccelGainParabolic"=0x8000,"HIDAccelTangentSpeedParabolicRoot"=0x140000,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xfae1,"HIDAccelTangentSpeedLinear"=0x73333,"HIDAccelGainCubic"=0x199a,"HIDAccelGainParabolic"=0xa8f6,"HIDAccelTangentSpeedParabolicRoot"=0x130000,$ + | | | | | "HIDScrollResolution" = 0x1900000 + | | | | | "Sensor Surface Height" = 0x1cf0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "parser-options" = 0x27 + | | | | | "TrackpadThreeFingerDrag" = Yes + | | | | | "HIDScrollResolutionY" = 0x1900000 + | | | | | "SupportsSilentClick" = No + | | | | | "VersionNumber" = 0x0 + | | | | | "Sensor Region Descriptor" = <0201001001001a00021002010c0200> + | | | | | "HSTouchHIDService" = Yes + | | | | | "Sensor Surface Width" = 0x2fa2 + | | | | | "IOClass" = "AppleMultitouchDevice" + | | | | | "Critical Errors" = 0x0 + | | | | | "SupportsGestureScrolling" = Yes + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Multitouch","IOReportChannels"=((0x4672616d44726f70,0x100080001,"Frames dropped")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Drop packets"}) + | | | | | "IOUserClientClass" = "AppleMultitouchDeviceUserClient" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "bcdVersion" = 0x760 + | | | | | "parser-type" = 0x3e8 + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "TrackpadSecondaryClickCorners" = Yes + | | | | | "ForceSupported" = Yes + | | | | | "MultitouchPreferences" = {"TrackpadHandResting"=Yes,"TrackpadPinch"=0x1,"TrackpadFourFingerVertSwipeGesture"=0x2,"USBMouseStopsTrackpad"=0x0,"ActuateDetents"=0x1,"FirstClickThreshold"=0x1,"SecondClickThreshold"=0x1,"TrackpadFourFingerPinchGesture"=0x2,"TrackpadHorizScroll"=0x1,"TrackpadMomentumScroll"=Yes,"TrackpadRotate"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"Clicking"=Yes,"TrackpadTwoFingerDoubleTapGesture"=0x1,"UserPreferences"=Yes,"TrackpadScroll"=Yes,"DragLock"=0x0,"TrackpadFiveFingerPinchGestur$ + | | | | | "Max Packet Size" = 0x1000 + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ResetCount" = 0x0 + | | | | | "VendorID" = 0x0 + | | | | | "EnumerationReason" = 0x1 + | | | | | "TrackpadFourFingerGestures" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "Endianness" = 0x1 + | | | | | "ProductID" = 0x0 + | | | | | "Sensor Rows" = 0x12 + | | | | | "HIDScrollResolutionX" = 0x1900000 + | | | | | "HIDPointerResolution" = 0x1900000 + | | | | | "HIDScrollResolutionZ" = 0x1900000 + | | | | | "Critical Errors Accumulator" = 0x0 + | | | | | "Family ID" = 0x6e + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x2},{"DeviceUsagePage"=0x1,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xd,"DeviceUsage"=0x5},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0xc}) + | | | | | "MT Built-In" = Yes + | | | | | "Sensor Region Param" = <000004000002> + | | | | | "EnumerationReasonString" = "Build at start" + | | | | | "HIDScrollAccelCurves" = ({"HIDAccelGainLinear"=0x10000,"HIDAccelTangentSpeedLinear"=0x60000,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelIndex"=0x0},{"HIDAccelGainLinear"=0xf333,"HIDAccelTangentSpeedLinear"=0x63333,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0x999a,"HIDAccelIndex"=0x2000},{"HIDAccelGainLinear"=0xe666,"HIDAccelTangentSpeedLinear"=0x66666,"HIDAccelTangentSpeedParabolicRoot"=0xc0000,"HIDAccelGainParabolic"=0xe666,"HIDAccelIndex"=0x8000},{"HIDAccelGainLinear"=0xd99$ + | | | | | "DisablerPresent" = No + | | | | | "HIDScrollAccelerationTable" = <000080005553422a000700000000000100010000000100000000200000100000713b00004ce300030000000760000004c000000e80000006f14a0017e95e000957820023105a000b67a1002c117b000d8dd40034dd3a000f7e9a003bd0b8001258a000465d3500150000004ed9d80017c0000055caed001ab3e5005b6150001d9000005ed2aa0020bef9006120cb00242d7b006275ef0027b0000063465f0000800000130000713b0000567f000100000002e000000200000009600000030000001200000004c0000020c000000680000030800000086a790041fdb6000aedb50057866e000d01d8006b3d39000efd7f008$ + | | | | | "TrackpadMomentumScroll" = Yes + | | | | | "ActuationSupported" = Yes + | | | | | "HIDScrollAccelerationType" = "HIDTrackpadScrollAcceleration" + | | | | | "MTPowerStatsDisable" = Yes + | | | | | "Transport" = "FIFO" + | | | | | "Sensor Columns" = 0x1a + | | | | | "MTHIDDevice" = Yes + | | | | | "VendorIDSource" = 0x0 + | | | | | "HIDPointerReportRate" = 0x78 + | | | | | "Manufacturer" = "Apple" + | | | | | "HIDPointerAccelerationType" = "HIDTrackpadAcceleration" + | | | | | "UseProviderWorkLoop" = Yes + | | | | | "CountryCode" = 0x0 + | | | | | "LocationID" = 0xaa + | | | | | } + | | | | | + | | | | +-o AppleMultitouchDeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o stm + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "hid-merge-personality" = <49504400> + | | | | | "NotifyPowerStateChange" = Yes + | | | | | "image-tag" = <66647069> + | | | | | "AAPL,phandle" = + | | | | | "PowerState" = 0x0 + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "ExternalResources" = {"stm-reset"=0xa8} + | | | | | "NotifyAllResets" = No + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerMethod" = 0x2 + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "name" = <73746d00> + | | | | | "HIDDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "bootloader-type" = <48494444657669636500> + | | | | | "function-stm-reset" = <9f00000034574b703831506700000100> + | | | | | "reset-sequence" = <66756e6374696f6e2d73746d2d72657365740032000100> + | | | | | "bInterfaceNumber" = 0x3 + | | | | | "LocationId" = 0xaa + | | | | | "AsyncRegistration" = No + | | | | | "aud-early-boot-critical" = <> + | | | | | "device_type" = <73746d00> + | | | | | "InterfaceName" = "stm" + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportBootloaderHIDDevice + | | | | | { + | | | | | "Config" = {"MTP"=Yes} + | | | | | "hid-merge-personality" = "IPD" + | | | | | "AHTBootloadLoadImageResult" = 0x0 + | | | | | "image-tag" = 0x69706466 + | | | | | "IOUserClientClass" = "AppleHIDTransportBootloaderUserClient" + | | | | | "AHTBootloadLoadImageStart" = 0x1f43 + | | | | | "AHTBootloadLoadImageEnd" = 0x1f43 + | | | | | "Supports Memory Dump" = No + | | | | | "AHTBootloadLoadImageTimeMs" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x5 + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x20,"Min"=0x0,"Flags"=0x22,"ReportID"=0xe0,"Usage"=0xb,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x20,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0xb},{"VariableSize"=0x0,"UnitE$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "ExtendedData" = (0x30109a1,0x30209a1,0x30309a1,0x30409a1,0x33409a1,0x3b009a1,0x3b109a1,0x3b209a1,0x3b309a1,0x3b609a1,0x3bd09a1,0x3d409a1) + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xe0,0x100020001,"Report 224")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xe0,"ElementCookie"=0x7,"Size"=0x28,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x28,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <0600ff090ba1010600ff090b150026ff00750896040085e081227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x5 + | | | | | } + | | | | | + | | | | +-o AppleDeviceManagementHIDEventService + | | | | | { + | | | | | "IOClass" = "AppleDeviceManagementHIDEventService" + | | | | | "HardwareID" = 0x1 + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "WakeReason" = "Host (0x01)" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xb}) + | | | | | "IOProbeScore" = 0x898 + | | | | | "VendorIDSource" = 0x0 + | | | | | "HIDServiceSupport" = Yes + | | | | | "CountryCode" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "VendorID" = 0x0 + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTopCaseHIDEventDriver" + | | | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"Notific$ + | | | | | "PrimaryUsage" = 0xb + | | | | | "LocationID" = 0xaa + | | | | | "ProductID" = 0x357 + | | | | | "BootLoaderFW Version" = 0x100 + | | | | | "SerialNumber" = "FM7HDK0ATYF0000F96+AYTN" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "STFW Version" = 0x460 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ColorID" = 0x8 + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x0,"NotificationForce"=0x0,"NotificationCount"=0x0,"head"=0x0}} + | | | | } + | | | | + | | | +-o keyboard + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "AAPL,phandle" = + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "device_type" = <6b6579626f61726400> + | | | | | "LocationId" = 0xaa + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "InterfaceName" = "keyboard" + | | | | | "kblang-calibration" = <010531d7a82800000000000000000000> + | | | | | "bInterfaceNumber" = 0x2 + | | | | | "name" = <6b6579626f61726400> + | | | | | "HIDDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxInputReportSize" = 0x41 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "ReportDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "RequiresTCCAuthorization" = Yes + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Transport" = "FIFO" + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0xe},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"Usag$ + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "Manufacturer" = "Apple" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0x12b,"Size"=0x50,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x50,"Usage"=0x0},{"ReportID"=0x52,"ElementCookie"=0x12c,"Size"=0x10,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x10,"Usage"=0x0},{"ReportID"=0x9,"ElementCookie"=0x12d,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x3f,"ElementCookie"=0x12e,"Size"=0x208,"ReportCou$ + | | | | | "ReportInterval" = 0x1f40 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "IOReportLegendPublic" = Yes + | | | | | "LocationID" = 0xaa + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x6 + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x52,0x100020001,"Report 82"),(0x9,0x100020001,"Report 9"),(0x3f,0x100020001,"Report 63")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "FirstInputReceived" = Yes + | | | | | "IOProbeScore" = 0x0 + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | | { + | | | | | "MaxOutputReportSize" = 0x2 + | | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | | "DeviceOpenedByEventSystem" = Yes + | | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PrimaryUsage" = 0x6 + | | | | | "LocationID" = 0xaa + | | | | | "IODEXTMatchCount" = 0x1 + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "Transport" = "FIFO" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "ReportDescriptor" = <05010906a1018501050719e029e71500250175019508810295017508810195057501050819012905910295017503910195067508150026ff000507190029ff8100050c7501950109b815002501810205ff0903750795018102c0050c0901a1018552150025017501950109cd810209b3810209b4810209b5810209b68102810181018101850915002501750895010601ff090bb10275089502b101c00600ff0906a1010600ff0906150026ff0075089540853f81227600409502b101c0> + | | | | | "Built-In" = Yes + | | | | | "Manufacturer" = "Apple" + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "MaxInputReportSize" = 0x41 + | | | | | } + | | | | | + | | | | +-o AppleHIDKeyboardEventDriverV2 + | | | | | { + | | | | | "LocationID" = 0xaa + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | | "Keyboard" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0xe0,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0xe},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x7,"Max"=0x1,"IsArray"=No,"Type"=0x2,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"$ + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CapsLockLanguageSwitch" = No + | | | | | "HIDServiceSupport" = Yes + | | | | | "FnKeyboardUsageMap" = "0x00070050,0x0007004a,0x00070052,0x0007004b,0x0007002a,0x0007004c,0x0007004f,0x0007004d,0x00070051,0x0007004e,0x00070028,0x00070058" + | | | | | "VersionNumber" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Built-In" = Yes + | | | | | "IOProbeScore" = 0x898 + | | | | | "FnFunctionUsageMap" = "0x0007003a,0x00ff0005,0x0007003b,0x00ff0004,0x0007003c,0xff010010,0x0007003d,0x000c0221,0x0007003e,0x000c00cf,0x0007003f,0x0001009b,0x00070040,0x000c00b4,0x00070041,0x000c00cd,0x00070042,0x000c00b3,0x00070043,0x000c00e2,0x00070044,0x000c00ea,0x00070045,0x000c00e9" + | | | | | "IOClass" = "AppleHIDKeyboardEventDriverV2" + | | | | | "FnFunctionTable" = {"no-fn-cl"=<1616>,"fn"=<010602070311041905180617070a080c090b0a0d0b0e0c0f>,"fn-cl"=<010602070311041905180617070a080c090b0a0d0b0e0c0f1616>,"fn-right-to-left"=<010702060311041905180617070a080c090b0a0f0b0e0c0d>} + | | | | | "GameControllerPointer" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x123},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Fl$ + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | | | "KBLanguageTable" = ({"StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x2},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x0},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn-cl","StandardType"=0x0},{"fn-type"="fn","StandardType"=0x1},{"fn-type"="fn","StandardType"=0x1},{"fn$ + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDKeyboard" + | | | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "FnModifierUsage" = 0x3 + | | | | | "AppleVendorSupported" = Yes + | | | | | "ReportInterval" = 0x1f40 + | | | | | "VendorID" = 0x0 + | | | | | "StandardType" = 0x0 + | | | | | "KeyboardEnabled" = Yes + | | | | | "PrimaryUsagePage" = 0x1 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDKeyboard" + | | | | | "SupportsGlobeKey" = Yes + | | | | | "SensorProperties" = {} + | | | | | "ProductID" = 0x0 + | | | | | "alt_handler_id" = 0x5b + | | | | | "HIDKeyboardSupportedModifiers" = 0x19e20ff + | | | | | "HandlerIDTable" = (0x5b,0x5c,0x5d) + | | | | | "SupportsSiriKey" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0x1,"DeviceUsage"=0x6},{"DeviceUsagePage"=0xc,"DeviceUsage"=0x1},{"DeviceUsagePage"=0xff00,"DeviceUsage"=0x6}) + | | | | | "FnModifierUsagePage" = 0xff + | | | | | "HIDEventServiceProperties" = {"HIDCapsLockStateCache"=No,"HIDStickyKeysOn"=0x0,"HIDKeyRepeat"=0x4f790d5,"TrackpadHorizScroll"=0x1,"LogLevel"=0x6,"HIDMouseKeysOptionToggles"=0x0,"MouseTwoFingerHorizSwipeGesture"=0x2,"JitterNoClick"=0x1,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MouseMomentumScroll"=Yes,"PreserveTimestamp"=Yes,"HIDDefaultParameters"=Yes,"UnifiedKeyMapping"=No,"HIDPointerButtonMode"=0x2,"HIDScrollZoomModifierMask"=0x0,"HIDMouseKeysOn"=0x0,"TrackpadFourFingerVertSwipeGesture"=0x2,"Tra$ + | | | | | "KeyboardLanguage" = "U.S." + | | | | | "GameControllerType" = 0x0 + | | | | | "IOProviderClass" = "IOHIDInterface" + | | | | | "LED" = {"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x1,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0x1,"ElementCookie"=0x123},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0x8,"Max"=0x1,"IsArray"=No,"Type"=0x81,"Size"=0x1,"Min"=0x0,"Flags"=0x8000002,"Re$ + | | | | | "PrimaryUsage" = 0x6 + | | | | | "HIDKeyboardKeysDefined" = Yes + | | | | | "NumLockKeyboardUsageMap" = "0x00070029,0x00070029,0x0007002a,0x0007002a,0x0007002b,0x0007002b,0x0007003a,0x0007003a,0x0007003b,0x0007003b,0x0007003c,0x0007003c,0x0007003d,0x0007003d,0x0007003e,0x0007003e,0x0007003f,0x0007003f,0x00070040,0x00070040,0x00070041,0x00070041,0x00070042,0x00070042,0x00070043,0x00070043,0x00070044,0x00070044,0x00070045,0x00070045,0x0007004a,0x0007004a,0x0007004b,0x0007004b,0x0007004c,0x0007004c,0x0007004d,0x0007004d,0x0007004e,0x0007004e,0x0007004f,0x0007004f,0x00070050,0x00070050,0x00$ + | | | | | "HIDKeyboardSupportsDoNotDisturbKey" = No + | | | | | "HIDKeyboardSupportsEscKey" = Yes + | | | | | "Transport" = "FIFO" + | | | | | "kblang-calibration-valid" = Yes + | | | | | "HIDRestoreKBDState" = 0x1 + | | | | | "VendorIDSource" = 0x0 + | | | | | "Manufacturer" = "Apple" + | | | | | "SensorPropertySupported" = 0x0 + | | | | | "CountryCode" = 0x0 + | | | | | "DebugState" = {"LastReportTime"=0x966974fe3} + | | | | | } + | | | | | + | | | | +-o IOHIDEventServiceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = No + | | | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x3e80,"NotificationForce"=0x0,"NotificationCount"=0x10d94,"head"=0x3e80},"EnqueueEventCount"=0x10efa,"LastEventType"=0x3,"LastEventTime"=0x966bfd56c} + | | | | } + | | | | + | | | +-o tp-accel + | | | | | { + | | | | | "InterfaceType" = "HID" + | | | | | "AAPL,phandle" = + | | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "PowerState" = 0x0 + | | | | | "AsyncRegistration" = No + | | | | | "device_type" = <74702d616363656c00> + | | | | | "LocationId" = 0xaa + | | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | | "InterfaceName" = "tp-accel" + | | | | | "bInterfaceNumber" = 0x5 + | | | | | "name" = <74702d616363656c00> + | | | | | "HIDDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | | } + | | | | | + | | | | +-o AppleHIDTransportHIDDevice + | | | | | { + | | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | | "Transport" = "FIFO" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOReportLegendPublic" = Yes + | | | | | "MaxInputReportSize" = 0x6c + | | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | | "Manufacturer" = "Apple" + | | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | | "Built-In" = Yes + | | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | | "IOProbeScore" = 0x0 + | | | | | "ReportDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | | "MaxOutputReportSize" = 0x1 + | | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | | "PrimaryUsage" = 0x3 + | | | | | "LocationID" = 0xaa + | | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x358,"Min"=0x0,"Flags"=0x2,"ReportID"=0xc0,"Usage"=0x3,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x358,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x6}),"UsagePage"=0xff00,"Usage"=0x3},{"VariableSize"=0x0,"Uni$ + | | | | | "ModelNumber" = "Mac15,12" + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "ReportInterval" = 0x1f40 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0xc0,0x100020001,"Report 192")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | | "PrimaryUsagePage" = 0xff00 + | | | | | "MaxFeatureReportSize" = 0x1001 + | | | | | "InputReportElements" = ({"ReportID"=0xc0,"ElementCookie"=0x7,"Size"=0x360,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x360,"Usage"=0x0}) + | | | | | } + | | | | | + | | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x1 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0x3 + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x3}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff0903a1010600ff0903150026ff0085c0966b00750881027600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x6c + | | | | } + | | | | + | | | +-o actuator + | | | | { + | | | | "InterfaceType" = "HID" + | | | | "AAPL,phandle" = + | | | | "IOUserClientClass" = "AppleHIDTransportInterfaceUserClient" + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PowerState" = 0x0 + | | | | "AsyncRegistration" = No + | | | | "device_type" = <6163747561746f7200> + | | | | "LocationId" = 0xaa + | | | | "device-name" = <4849445f4445564943455f4e414d4500> + | | | | "InterfaceName" = "actuator" + | | | | "bInterfaceNumber" = 0x4 + | | | | "name" = <6163747561746f7200> + | | | | "HIDDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | } + | | | | + | | | +-o AppleHIDTransportHIDDevice + | | | | { + | | | | "IOClass" = "AppleHIDTransportHIDDevice" + | | | | "Transport" = "FIFO" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHIDTransport" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "MaxInputReportSize" = 0x10 + | | | | "IOProviderClass" = "AppleHIDTransportInterface" + | | | | "Manufacturer" = "Apple" + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "Built-In" = Yes + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "IOProbeScore" = 0x0 + | | | | "ReportDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | "MaxOutputReportSize" = 0x40 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IOPropertyMatch" = {"InterfaceType"="HID"} + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHIDTransport" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHIDTransport" + | | | | "PrimaryUsage" = 0xd + | | | | "LocationID" = 0xaa + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff00,"Max"=0xff,"IsArray"=No,"Type"=0x1,"Size"=0x78,"Min"=0x0,"Flags"=0x2,"ReportID"=0x3f,"Usage"=0xd,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x78,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,"ScaledMax"=0xff,"ElementCookie"=0x8},{"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"Usa$ + | | | | "ModelNumber" = "Mac15,12" + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x3f,0x100020001,"Report 63"),(0x53,0x100020001,"Report 83")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "InputReportElements" = ({"ReportID"=0x3f,"ElementCookie"=0xa,"Size"=0x80,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x80,"Usage"=0x0},{"ReportID"=0x53,"ElementCookie"=0xb,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | | { + | | | | "MaxOutputReportSize" = 0x40 + | | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | | "Product" = "Apple Internal Keyboard / Trackpad" + | | | | "PrimaryUsage" = 0xd + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "Transport" = "FIFO" + | | | | "ReportInterval" = 0x1f40 + | | | | "ReportDescriptor" = <0600ff090da1010600ff090d150026ff007508853f960f008102090d8553963f0091027600409502b101c0> + | | | | "Built-In" = Yes + | | | | "Manufacturer" = "Apple" + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "MaxFeatureReportSize" = 0x1001 + | | | | "MaxInputReportSize" = 0x10 + | | | | } + | | | | + | | | +-o AppleActuatorHIDEventDriver + | | | | { + | | | | "IOClass" = "AppleActuatorHIDEventDriver" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleActuatorDriver" + | | | | "IOProviderClass" = "IOHIDInterface" + | | | | "DefaultActuatorProperties" = {"ActuatorRevision"=0xc} + | | | | "IOProbeScore" = 0x898 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "LocationID" = 0xaa + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xd}) + | | | | "ModelNumber" = "Mac15,12" + | | | | "SupportReportInfo" = No + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTopCaseDriverV2" + | | | | "Transport" = "FIFO" + | | | | "InterfaceAvailableOnPowerTreeWake" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleActuatorDriver" + | | | | } + | | | | + | | | +-o AppleActuatorDevice + | | | | { + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "ActuatorLimits" = {"DurationMax"=0x8,"AmplitudeMin"=0x0,"DurationMin"=0x4,"AmplitudeMax"=0x46} + | | | | "ActuatorRevision" = 0xc + | | | | "IOUserClientClass" = "AppleActuatorDeviceUserClient" + | | | | "Transport" = "FIFO" + | | | | "LocationID" = 0xaa + | | | | "Multitouch Actuator ID" = 0x7000000000000aa + | | | | } + | | | | + | | | +-o AppleActuatorDeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mtp@EA400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<47030000>,<46030000>,<49030000>,<48030000>) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2fa400000,"length"=0x6c000}),({"address"=0x2fa050000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f4700> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6d747000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <47030000460300004903000048030000> + | | | | "clock-ids" = <> + | | | | "role" = <4d545000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <6d747000> + | | | | "power-gates" = <> + | | | | "reg" = <000040ea0000000000c0060000000000000005ea000000000040000000000000> + | | | | "segment-ranges" = <0000c0fa0200000000000001000000000000c0fa0200000000c005000300000000c0c5fa0200000000c005010000000000c0c5fa0200000000a00600020000000080d70a0001000000600c01000000000080d70a00010000002000000a000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "MTP" + | | | | } + | | | | + | | | +-o iop-mtp-nub + | | | | { + | | | | "sleep-on-hibernate" = <> + | | | | "uuid" = <31364144434546422d443746312d333035312d383636352d44424345413337353545453900> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f4700> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "KDebugCoreID" = 0x11 + | | | | "no-firmware-service" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0000c0fa0200000000000001000000000000c0fa0200000000c005000300000000c0c5fa0200000000c005010000000000c0c5fa0200000000a00600020000000080d70a0001000000600c01000000000080d70a00010000002000000a000000> + | | | | "name" = <696f702d6d74702d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(MTP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8002,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | | "FirmwareUUID" = "16adcefb-d7f1-3051-8665-dbcea3755ee9" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "AppleMTPFirmwareMac-4340.1~568" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "MTP" + | | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "MTP" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | { + | | | "IOReportLegend" = ({"IOReportGroupName"="MTP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="MTP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="MTP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | "IOReportLegendPublic" = Yes + | | | } + | | | + | | +-o dart-mtp@EA808000 + | | | | { + | | | | "dart-id" = <09000000> + | | | | "IOInterruptSpecifiers" = (<36030000>) + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2fa808000,"length"=0x4000}),({"address"=0x2fa80c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000046504144000000004441504600000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "remap" = <020100000301000004010000> + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6d747000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <01000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <36030000> + | | | | "dapf-instance-0" = <00c028e4020000005fc028e40200000002000000000000000000000000000000000000000000000000000000000000000003010000c729e402000000a7c829e4020000000200000000000000000000000000000000000000000000000000000000000000000301006c001fe4020000007b001fe40200000002000000000000000000000000000000000000000000000000000000000000000003010000012de40200000013012de40200000002000000000000000000000000000000000000000000000000000000000000000003010020c02be40200000023c02be4020000000200000000000000000000000000000000000000000000000000000000000000$ + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b7010080000000001802000004000000fcffff3f00000000d4402e000000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <008080ea00000000004000000000000000c080ea000000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000B2" = <> + | | | | } + | | | | + | | | +-o mapper-mtp@1 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "name" = <6d61707065722d6d747000> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o mtp-aop-mux + | | | { + | | | "device_type" = <6d74702d616f702d6d757800> + | | | "name" = <6d74702d616f702d6d757800> + | | | "AAPL,phandle" = + | | | "compatible" = <6869642d7472616e73706f72742c6d757800> + | | | } + | | | + | | +-o qspi@91118000 + | | | | { + | | | | "compatible" = <717370692c717370696d6300> + | | | | "clock-ids" = <88010000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <03030000> + | | | | "reg" = <0080119100000000004000000000000000881191000000000040000000000000> + | | | | "AAPL,phandle" = + | | | | "clock-gates" = <49000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <7173706900> + | | | | "#size-cells" = <07000000> + | | | | "IOInterruptSpecifiers" = (<03030000>) + | | | | "IODeviceMemory" = (({"address"=0x2a1118000,"length"=0x4000}),({"address"=0x2a1118800,"length"=0x4000})) + | | | | "#address-cells" = <01000000> + | | | | "spi-version" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <7173706900> + | | | | } + | | | | + | | | +-o AppleQSPIMCController + | | | | { + | | | | "IOClass" = "AppleQSPIMCController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleQSPIMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "qspi,qspimc" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "dma-capable" = Yes + | | | | "IONameMatched" = "qspi,qspimc" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleQSPIMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleQSPIMC" + | | | | } + | | | | + | | | +-o spinor@0 + | | | | { + | | | | "ranges" = <000000000000000000001000> + | | | | "compatible" = <6e6f722d666c6173682c73706900> + | | | | "reg" = <0000000019000000000001080000000014000000000000000000000000000000> + | | | | "name" = <7370696e6f7200> + | | | | "IOUserClientClass" = "AppleARMQuadSPIDeviceUserClient" + | | | | "#address-cells" = <01000000> + | | | | "device_type" = <7370696e6f7200> + | | | | "AAPL,phandle" = + | | | | "#size-cells" = <01000000> + | | | | } + | | | | + | | | +-o AppleARMSPIFlashController + | | | | { + | | | | "IOClass" = "AppleARMSPIFlashController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | | "IOProviderClass" = "AppleARMSPIDevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "nor-flash,spi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "block-erase-supported" = Yes + | | | | "JEDEC-ID" = "0xef6517" + | | | | "IONameMatched" = "nor-flash,spi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | | } + | | | | + | | | +-o firmware@0 + | | | | | { + | | | | | "device_type" = <6669726d7761726500> + | | | | | "reg" = <00000000000002000000020000002c0000002e0000002c00> + | | | | | "IODeviceMemory" = () + | | | | | "name" = <6669726d7761726500> + | | | | | "AAPL,phandle" = + | | | | | "compatible" = <69626f6f742c626f6f7400> + | | | | | } + | | | | | + | | | | +-o AppleEmbeddedSimpleSPINORFlasherDriver + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | | "IOClass" = "AppleEmbeddedSimpleSPINORFlasherDriver" + | | | | "IOPersonalityPublisher" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "CFBundleIdentifierKernel" = "com.apple.AppleEmbeddedSimpleSPINORFlasher" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "iboot,boot" + | | | | "IOUserClientClass" = "AppleEmbeddedSimpleSPINORFlasherDriverUC" + | | | | "IONameMatched" = "iboot,boot" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o anvram@700000 + | | | | | { + | | | | | "device_type" = <616e7672616d00> + | | | | | "reg" = <0000700000001000> + | | | | | "IODeviceMemory" = () + | | | | | "name" = <616e7672616d00> + | | | | | "AAPL,phandle" = + | | | | | "compatible" = <6e7672616d2c6e6f7200> + | | | | | } + | | | | | + | | | | +-o AppleARMNORNVRAM + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | | "IOClass" = "AppleARMNORNVRAM" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = "nvram,nor" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "nvram,nor" + | | | | } + | | | | + | | | +-o syscfg@5A0000 + | | | | { + | | | | "device_type" = <73797363666700> + | | | | "reg" = <00005a000020000000405a0000000200> + | | | | "IODeviceMemory" = () + | | | | "name" = <73797363666700> + | | | | "AAPL,phandle" = + | | | | "compatible" = <646961676e6f737469632d646174612c666f726d61743100> + | | | | } + | | | | + | | | +-o AppleDiagnosticDataAccessReadOnly + | | | { + | | | "IOClass" = "AppleDiagnosticDataAccessReadOnly" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDiagnosticDataAccessReadOnly" + | | | "IOProviderClass" = "AppleARMNORFlashDevice" + | | | "IOProbeScore" = 0x63 + | | | "IONameMatch" = "diagnostic-data,format1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "AppleDiagnosticDataSysCfg" = + | | | | { + | | | | "trigger-level-tunable" = <0000ffff00003346> + | | | | "IOInterruptSpecifiers" = (<0e030000>) + | | | | "gpio-iic_scl" = <380000000201010041500000> + | | | | "gpio-iic_sda" = <370000000201010041500000> + | | | | "clock-gates" = <38000000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2a1018000,"length"=0x4000})) + | | | | "filter-tunable" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "tbuf-tunable" = <0000ffff00003446> + | | | | "name" = <6932633200> + | | | | "function-device_reset" = <820000005453524138000000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6932632c7438313031006932632c73356c3839343078006969632c736f667400> + | | | | "interrupts" = <0e030000> + | | | | "clock-ids" = <04000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <69326300> + | | | | "#address-cels" = <01000000> + | | | | "reg" = <00800191000000000040000000000000> + | | | | "#size-cells" = <03000000> + | | | | } + | | | | + | | | +-o AppleS5L8940XI2CController + | | | | { + | | | | "IOClass" = "AppleS5L8940XI2CController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x3e8 + | | | | "IONameMatch" = "i2c,s5l8940x" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "i2c,s5l8940x" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleS5L8940XI2C" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleS5L8940XI2C" + | | | | } + | | | | + | | | +-o atcrt0@18 + | | | | | { + | | | | | "compatible" = <617463727400> + | | | | | "C Count" = 0x0 + | | | | | "atcrt-fw-personality" = <300000000000000022810007> + | | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | | "reg" = <18000000102700000000000000000000> + | | | | | "name" = <61746372743000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o AppleTypeCRetimer + | | | | { + | | | | "IOClass" = "AppleTypeCRetimer" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleTypeCRetimer" + | | | | "IOProviderClass" = "AppleARMIICDevice" + | | | | "IOUserClientClass" = "AppleTypeCRetimerUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "atcrt" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "atcrt-name" = "atcrt0" + | | | | "IONameMatched" = "atcrt" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTypeCRetimer" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTypeCRetimer" + | | | | } + | | | | + | | | +-o atcrt1@19 + | | | | { + | | | | "compatible" = <617463727400> + | | | | "C Count" = 0x0 + | | | | "atcrt-fw-personality" = <300000000000000022810107> + | | | | "IOUserClientClass" = "AppleARMIICUserClient" + | | | | "reg" = <19000000102700000000000000000000> + | | | | "name" = <61746372743100> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleTypeCRetimer + | | | { + | | | "IOClass" = "AppleTypeCRetimer" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleTypeCRetimer" + | | | "IOProviderClass" = "AppleARMIICDevice" + | | | "IOUserClientClass" = "AppleTypeCRetimerUserClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "atcrt" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "atcrt-name" = "atcrt1" + | | | "IONameMatched" = "atcrt" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleTypeCRetimer" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleTypeCRetimer" + | | | } + | | | + | | +-o admac-sio@93200000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0b030000>) + | | | | "#dma-channels" = <0c000000> + | | | | "clock-gates" = <5200000041000000> + | | | | "irq-destination-index" = <01000000> + | | | | "channel-buffer-allocation" = <0040000000000000> + | | | | "channels-offset" = <28000000> + | | | | "AAPL,phandle" = + | | | | "irq-destinations" = <555043532043494144534e554b4c4353> + | | | | "IODeviceMemory" = (({"address"=0x2a3200000,"length"=0x34000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <99000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61646d61632d73696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <61646d61632c743831323200> + | | | | "interrupts" = <0b030000> + | | | | "clock-ids" = <9201000055010000> + | | | | "role" = <204f4953> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61646d616300> + | | | | "power-gates" = <5200000041000000> + | | | | "reg" = <0000209300000000004003000000000000802ad4000000000800000000000000> + | | | | } + | | | | + | | | +-o IODMAController000000BD + | | | | { + | | | | "IOClass" = "AudioDMAController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AudioDMAController-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("admac,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x4144414749525143,0x100040001,"Aggregate Count"),(0x4144434f49525143,0x100040001,"Controller Count"),(0x4144434849525143,0x100040001,"Channel Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Interrupts"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x4144435442445020,0x2f00080003,"Timebase Offset (Positive)")),"IOReportChannelInfo"={"IOReportChannelConfig"= + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AudioDMAController-T8122" + | | | | "Critical LLT" = Yes + | | | | } + | | | | + | | | +-o SIO0TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO1TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO2TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543032,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543032,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO3TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO4TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o SIO5TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO6TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO7TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO8TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO9TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOATX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOBTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO0RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO1RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO2RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523032,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523032,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO3RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO4RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO5RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523035,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523035,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o SIO6RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO7RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO8RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIO9RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOARX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o SIOBRX + | | | { + | | | "IOClass" = "AudioDMAChannel" + | | | "IOProviderClass" = "AudioDMAController" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | "Direction" = "RX" + | | | "State" = "Uninitialized" + | | | } + | | | + | | +-o admac-aop-audio@E4980000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<9c010000>) + | | | | "#dma-channels" = <10000000> + | | | | "irq-destination-index" = <02000000> + | | | | "AAPL,phandle" = + | | | | "channel-buffer-allocation" = <0030000000000000> + | | | | "channels-offset" = <00000000> + | | | | "irq-destinations" = <5550434155504353204349414b4c4353> + | | | | "IODeviceMemory" = (({"address"=0x2f4980000,"length"=0x34000}),({"address"=0x2e42a8000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = <80000000> + | | | | "external-power" = <> + | | | | "light-my-fire" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <61646d61632d616f702d617564696f00> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <61646d61632c743831323200> + | | | | "interrupts" = <9c010000> + | | | | "clock-ids" = <0e010000> + | | | | "night-on-fire" = + | | | | "role" = <20415041> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61646d616300> + | | | | "reg" = <000098e400000000004003000000000000802ad4000000000800000000000000> + | | | | } + | | | | + | | | +-o IODMAController000000BE + | | | | { + | | | | "IOClass" = "AudioDMAController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AudioDMAController-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("admac,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="SIO","IOReportChannels"=((0x4144414749525143,0x100040001,"Aggregate Count"),(0x4144434f49525143,0x100040001,"Controller Count"),(0x4144434849525143,0x100040001,"Channel Count")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Interrupts"},{"IOReportGroupName"="SIO","IOReportChannels"=((0x4144435442445020,0x2f00080003,"Timebase Offset (Positive)")),"IOReportChannelInfo"={"IOReportChannelConfig"= + | | | | } + | | | | + | | | +-o APA0TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA1TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA2TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA3TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA4TX + | | | | { + | | | | "Direction" = "TX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Tx","IOReportChannels"=((0x414453534d543034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Tx","IOReportChannels"=((0x4144444350543034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Tx","IORe$ + | | | | } + | | | | + | | | +-o APA5TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA6TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA7TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA8TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA9TX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAATX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APABTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APACTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APADTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAETX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAFTX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "TX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA0RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523030,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523030,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o APA1RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA2RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA3RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA4RX + | | | | { + | | | | "Direction" = "RX" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOClass" = "AudioDMAChannel" + | | | | "State" = "Sleeping" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "IOReportLegend" = ({"IOReportGroupName"="Rx","IOReportChannels"=((0x414453534d523034,0xb81000002,"ChannelState")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="CSM"},{"IOReportGroupName"="Rx","IOReportChannels"=((0x4144444350523034,0x1400080003,"DMA C2P")),"IOReportChannelInfo"={"IOReportChannelConfig"=,"IOReportChannelUnit"=0x100007600000000},"IOReportSubGroupName"="DMACMPLHistogram"},{"IOReportGroupName"="Rx","IORe$ + | | | | } + | | | | + | | | +-o APA5RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA6RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA7RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA8RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APA9RX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAARX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APABRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APACRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APADRX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAERX + | | | | { + | | | | "IOClass" = "AudioDMAChannel" + | | | | "IOProviderClass" = "AudioDMAController" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "Direction" = "RX" + | | | | "State" = "Uninitialized" + | | | | } + | | | | + | | | +-o APAFRX + | | | { + | | | "IOClass" = "AudioDMAChannel" + | | | "IOProviderClass" = "AudioDMAController" + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | "Direction" = "RX" + | | | "State" = "Uninitialized" + | | | } + | | | + | | +-o atc-phy0@2A90000 + | | | | { + | | | | "tunable_LN1_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_CLKMON_CFG" = <0c000020ff03000000020000> + | | | | "tunable_CIO3PLL_TOP" = <940000200001000000010000a0000020ff01000014010000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "tunable_LN0_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | "tunable_LN1_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_LN0_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "tunable_ATC0AXI2AF" = <0000002003020000010200000c000020ffff0f000068010010000020ffff0f0000b400003c000020ffffffffffff000040000020ffffffffffff0000080100203300ffff310010000c010020ffff0f000068010010010020ffff0f0000b40000000200207f00008040000080040200207f007f8008001280080200207f007f80080012800c0200207f007f8008001280100200207f007f8002001280140200207f007f8002001280180200207f007f80080012801c0200207f007f8008001280400200207f00008050000080440200207f007f8008002080480200207f007f80080020804c0200207f007f8008002080500200207f007f800800208054020$ + | | | | "IODeviceMemory" = (({"address"=0x702a90000,"length"=0x4000}),({"address"=0x702800000,"length"=0x4000}),({"address"=0x703044000,"length"=0x4000}),({"address"=0x703000000,"length"=0x4000}),({"address"=0x703000800,"length"=0x4000}),({"address"=0x703000a00,"length"=0x4000}),({"address"=0x703001000,"length"=0x4000}),({"address"=0x703002000,"length"=0x4000}),({"address"=0x703002200,"length"=0x4000}),({"address"=0x703002600,"length"=0x4000}),({"address"=0x703002800,"length"=0x4000}),({"address"=0x703002a00,"length"=0x4000}),({"addres$ + | | | | "tunable_LN0_RX_TOP_CIO_DFLT" = + | | | | "port-number" = <01000000> + | | | | "reg" = <0000a90207000000004000000000000000008002070000000040000000000000004004030700000000400000000000000000000307000000004000000000000000080003070000000040000000000000000a00030700000000400000000000000010000307000000004000000000000000200003070000000040000000000000002200030700000000400000000000000026000307000000004000000000000000280003070000000040000000000000002a00030700000000400000000000000040000307000000004000000000000000500003070000000010000000000000007000030700000000400000000000000090000307000000004000000000000000a000030700$ + | | | | "tunable_LN1_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_LN1_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "port-type" = <02000000> + | | | | "tunable_LN0_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_AUSCMN_SHM" = <040000207c0000004c000000> + | | | | "tunable_AUSPLL_CORE" = <24000020000c000000080000300000201f0000000f000000400000207f00180029000000b00000200000700800003000e40000200100060001000400340100200000800f000080074800002000ff010000280100> + | | | | "tunable_LN1_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable_LN1_RX_TOP_USB_EQA" = <> + | | | | "tunable_LN0_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "tunable_USB2PHY_HOST" = <080000200070000000000000> + | | | | "tunable_LN0_RX_TOP_USB_EQA" = <> + | | | | "tunable_USB2PHY_DEV" = <080000200070000000700000> + | | | | "tunable_ACIOPHY_LANE_USBC0" = <040000200000007c00000044> + | | | | "tunable_ACIOPHY_PLL_TOP" = <300000200080000000800000> + | | | | "tunable_LN0_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable_LN0_TX_TOP_USB_EQA" = <> + | | | | "tunable_LN1_TX_TOP_USB_EQA" = <> + | | | | "name" = <6174632d7068793000> + | | | | "AAPL,phandle" = + | | | | "tunable_LN1_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "compatible" = <6174632d7068792c743831323200> + | | | | "clock-gates" = <0002000070000000> + | | | | "tunable_LN0_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_ACIOPHY_TOP" = <0c0100200000040000000000> + | | | | "tunable_LN1_RX_TOP_CIO_DFLT" = + | | | | "tunable_LN0_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ACIOPHY_LANE_USBC1" = <040000200000007c00000044> + | | | | "tunable_AUX_TOP" = <0800002038000000080000000c0000201f00000000000000> + | | | | "tunable_LN1_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ATC_FABRIC" = <040000203f003f00200020000c000020f1000000a1000000100000201f80000004000000180000203f003f002000200020000020f1000000a1000000240000201f800000040000002c0000207f007f005200520034000020f1000000710000003800002001000000010000003c0000200100000001000000400000201f80000004000000480000201f00000010000000500000201f80000004000000580000207f007f004500450060000020f100000051000000640000201f800000040000006c0000203f00000020000000740000201f800000040000007c0000200100000001000000800000201f80000004000000880000203f003f00300030008c000$ + | | | | "tunable_LN0_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_CIO_SHIM" = <000000200007f0000000b000> + | | | | "device_type" = <6174632d70687900> + | | | | "tunable_CIO3PLL_CORE" = <0000002088080000880800000800002000001f000000030024000020000c00000008000028000020000f0000000b0000300000201f0000000f0000004c00002000fe7f00003e2500b00000200000700000003000e40000200000060000000200fc000020ff0f0000d8000000> + | | | | "tunable_AUSCMN_DIG" = <0000002000003f0000002300> + | | | | "tunable_LN1_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable-device" = <00000000080000000070000000000000> + | | | | "instance" = <00000000> + | | | | "tunable_LN0_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable-host" = <00000000080000000070000000700000> + | | | | "tunable_AUX_SHM" = <> + | | | | "tunable_LN1_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | } + | | | | + | | | +-o AppleT8122TypeCPhy@0 + | | | { + | | | "IOClass" = "AppleT8122TypeCPhy" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "AppleTypeCPhyDisplayPortPclk" = {} + | | | "IOProbeScore" = 0x2710 + | | | "IONameMatch" = "atc-phy,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-phy,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyLane" = {"Lane 1"={},"Lane 0"={}} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyDisplayPortTunnel" = {} + | | | "AppleTypeCPhyUSB2" = {} + | | | "AppleTypeCPhyID" = 0x0 + | | | } + | | | + | | +-o dart-usb0@2F00000 + | | | | { + | | | | "dart-id" = <0a000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "clock-gates" = <1002000010020000> + | | | | "AAPL,phandle" = + | | | | "protection-granularity" = <10000000> + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b00> + | | | | "IODeviceMemory" = (({"address"=0x702f00000,"length"=0x4000}),({"address"=0x702f80000,"length"=0x4000})) + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <00010000> + | | | | "dart-options" = <27000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7573623000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <010000000e000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000f0020700000000400000000000000000f802070000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000C0" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-usb0@1 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <01000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d7573623000> + | | | | "AAPL,phandle" = + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o usb-drd0@2280000 + | | | | { + | | | | "host-mac-address" = + | | | | "usb-tier-limit" = <06000000> + | | | | "function-dock_parent" = <2201000050636361> + | | | | "tunable_DRD_USB31_CFG_HOST" = <20000020ff0000001b000000> + | | | | "atc-phy-parent" = + | | | | "tunable_setting" = <000700000000000007000000000000000500000000000000> + | | | | "usb-repeater" = <7761636d03000000> + | | | | "interrupt-parent" = <69000000> + | | | | "ncm-self-name-unit" = <00000000> + | | | | "interrupts" = + | | | | "tunable_DRD_USB31_DEV" = <> + | | | | "ncm-interrupt-ep-disabled" = <01000000> + | | | | "iommu-parent" = + | | | | "usb-port-current-sleep-limit" = + | | | | "tunable_CTLREG_DEFAULT" = + | | | | "tunable_PIPE_HANDLER_DEFAULT" = <2c0000200400000004000000> + | | | | "bus-number" = <00000000> + | | | | "clock-gates" = <0e0100008c010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "ncm-control-ecid-mac" = <01000000> + | | | | "acio-parent" = <52000000> + | | | | "built-in" = <> + | | | | "IODeviceMemory" = (({"address"=0x702280000,"length"=0x11800}),({"address"=0x702200000,"length"=0x4000}),({"address"=0x70228c000,"length"=0x5800}),({"address"=0x702a84000,"length"=0x4000}),({"address"=0x702800000,"length"=0x4000}),({"address"=0x702a80000,"length"=0x4000}),({"address"=0x702000000,"length"=0x4000}),({"address"=0x702080000,"length"=0x4000}),({"address"=0x70228d000,"length"=0x4000})) + | | | | "tunable_BULK_FABRIC_DEFAULT" = <040000203f00000020000000080000201f80000004000000100000200100010001000100140000201f800000040000001c0000203f003f0020002000200000201f800000040000002800002001000000010000002c0000200100000001000000300000201f80000004000000> + | | | | "AAPL,phandle" = + | | | | "name" = <7573622d6472643000> + | | | | "configuration-string" = <6e636d4175784272696e67757000> + | | | | "tunable_LINK_REGS_DEFAULT" = <200000200000f07f0000904e2400002000801f0000800b0060000020ffff030000060000> + | | | | "tunable_DRD_USB31_GBL_DEFAULT" = <640000200200000000000000> + | | | | "device-mac-address" = <000000000000> + | | | | "device_type" = <7573622d64726400> + | | | | "compatible" = <7573622d6472642c743831323200> + | | | | "port-type" = <02000000> + | | | | "tunable_AUSBC_USB2DEV" = <080000201e0000000e0000000c000020083c000000240000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000028020700000000180100000000000000200207000000004000000000000000c028020700000000580000000000000040a802070000000040000000000000000080020700000000400000000000000000a802070000000040000000000000000000020700000000400000000000000000080207000000004000000000000000d02802070000000040000000000000> + | | | | "tunable_DRD_USB31_DBG_DEFAULT" = <000000200800000008000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "tunable_DRD_USB31_GBL_HOST" = <0400002000ef0100002f00001c00002000010000000000002c000020ff070a00c8000a0000010020000100020001000204050020001000000000000028050020ff0000ff0800000638050020000800000008000080050020ffffffff0600006f> + | | | | "usb-port-current-wake-limit" = + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | } + | | | | + | | | +-o AppleT8122USBXHCI@00000000 + | | | | | { + | | | | | "IOClass" = "AppleT8122USBXHCI" + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "UsbHostControllerSoftRetryPolicy" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOProbeScore" = 0x2711 + | | | | | "locationID" = 0x0 + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IONameMatch" = "usb-drd,t8122" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "UsbHostControllerDeferRegisterService" = Yes + | | | | | "IOMatchCategory" = "usb-host" + | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "Revision" = <0103> + | | | | | "IONameMatched" = "usb-drd,t8122" + | | | | | "UsbHostControllerUSB4LPMPolicy" = 0x1 + | | | | | "UsbHostControllerTierLimit" = 0x6 + | | | | | "controller-statistics" = {"kControllerStatIOCount"=0x2118aa,"kControllerStatPowerStateTime"={"kPowerStateInitialize"="0ms (0%)","kPowerStateOff"="184211389ms (70%)","kPowerStateSleep"="4549ms (0%)","kPowerStateOn"="75787441ms (29%)","kPowerStateSuspended"="15892ms (0%)"},"kControllerStatSpuriousInterruptCount"=0x0} + | | | | | "kUSBSleepSupported" = Yes + | | | | | } + | | | | | + | | | | +-o usb-drd0-port-hs@00100000 + | | | | | { + | | | | | "usb-c-port-number" = <01000000> + | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="182197620ms (70%)","kPowerStateSleep"="12873ms (0%)","kPowerStateOn"="75774722ms (29%)","kPowerStateSuspended"="16855ms (0%)"},"kPortStatConnectCount"=0xd,"kPortStatRemoteWakeCount"=0x2,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x2,"kPortStatOverCurrentCo$ + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "AAPL,phandle" = + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "locationID" = 0x100000 + | | | | | "device_type" = <7573622d647264302d706f72742d687300> + | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | "port-type" = <04000000> + | | | | | "port-status" = 0x0 + | | | | | "kUSBBusCurrentAllocation" = 0x0 + | | | | | "UsbCPortNumber" = 0x1 + | | | | | "dock-remote-wake" = <> + | | | | | "name" = <7573622d647264302d706f72742d687300> + | | | | | "port" = <01000000> + | | | | | } + | | | | | + | | | | +-o usb-drd0-port-ss@00200000 + | | | | { + | | | | "usb-c-port-number" = <01000000> + | | | | "link-error-count" = 0x0 + | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | "AAPL,phandle" = + | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "locationID" = 0x200000 + | | | | "device_type" = <7573622d647264302d706f72742d737300> + | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | "port-type" = <04000000> + | | | | "port-status" = 0x0 + | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | "UsbCPortNumber" = 0x1 + | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="182195262ms (70%)","kPowerStateSleep"="19418ms (0%)","kPowerStateOn"="75725664ms (29%)","kPowerStateSuspended"="61980ms (0%)"},"kPortStatConnectCount"=0x12,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x1,"kPortStatOverCurrentC$ + | | | | "name" = <7573622d647264302d706f72742d737300> + | | | | "port" = <02000000> + | | | | } + | | | | + | | | +-o AppleT8122USBXDCI@0 + | | | | { + | | | | "IOClass" = "AppleT8122USBXDCI" + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ConfigurationType" = "ncmAuxBringup" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "DeviceDescription" = {"MaxPower"=0xffffffffffffffff,"deviceProtocol"=0x0,"productID"=0x1905,"vendorID"=0x5ac,"DefaultBcdUSBVersion"=0x210,"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0}),"deviceClass"=0x0,"manufacturerString"="Apple Inc.","BcdUSBVersion"=0x210,"productString"="Mac","Attributes"=0xc0,"MPS0"=0x40,"deviceID"=0x1512,"deviceSubClass"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "CreatedTimestamp" = 0x6668633 + | | | | "CurrentState" = {"DeviceAddress"=0x0,"DeviceState"="Disconnected","DefaultPreferredConfiguration"=0x1,"ConnectionSpeed"=0x0,"SoftwareLinkState"="L0 (Normal)","OnBus"=No,"PreferredConfiguration"=0x1,"RemoteWakeEnabled"=No,"ConnectionSpeedDescription"="Unknown","SelectedConfiguration"=0x0} + | | | | "IONameMatch" = "usb-drd,t8122" + | | | | "FinalizedDurationMS" = 0x1 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "ScatterGatherSupport" = Yes + | | | | "IOMatchCategory" = "usb-device" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IONameMatched" = "usb-drd,t8122" + | | | | "DefaultDeviceDescription" = {"productString"="Mac","deviceClass"=0x0,"manufacturerString"="Apple Inc.","deviceID"=0x1512,"productID"=0x1905,"vendorID"=0x5ac,"deviceSubClass"=0x0,"Attributes"=0xc0,"deviceProtocol"=0x0,"MaxPower"=0xffffffffffffffff,"DefaultBcdUSBVersion"=0x210} + | | | | "MapperPageSize" = 0x4000 + | | | | "FinalizedTimestamp" = 0x666e621 + | | | | } + | | | | + | | | +-o IOUSBDeviceConfigurator + | | | | { + | | | | "IOPropertyMatch" = {"ConfigurationType"="ncmAuxBringup"} + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProviderClass" = "IOUSBDeviceController" + | | | | "IOClass" = "IOUSBDeviceConfigurator" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProbeScore" = 0x0 + | | | | "DeviceDescription" = {"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0})} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMControl@0 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x6668014 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControl" + | | | | | "FinalizedTimestamp" = 0x6669e69 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@0 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControl"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMData@1 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x66681d8 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMData" + | | | | | "FinalizedTimestamp" = 0x666c9e6 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMData + | | | | | { + | | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | | "IOActiveMedium" = "00000022" + | | | | | "waitControlStart" = 0x117a + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMinPacketSize" = 0x40 + | | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | | "IOLinkStatus" = 0x1 + | | | | | "waitControlFinish" = 0x117a + | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMData"} + | | | | | "AVBControllerState" = 0x1 + | | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMACAddress" = <12c34f9668ab> + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMaxPacketSize" = 0x3e92 + | | | | | "IOSelectedMedium" = "00000022" + | | | | | "IOLinkSpeed" = 0x0 + | | | | | "HiddenConfiguration" = Yes + | | | | | "IOFeatures" = 0x0 + | | | | | } + | | | | | + | | | | +-o en3 + | | | | | { + | | | | | "IOLocation" = "" + | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOLinkActiveCount" = 0x0 + | | | | | "BSD Name" = "en3" + | | | | | "IOMulticastAddressList" = <0180c2000003> + | | | | | "IOInterfaceType" = 0x6 + | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | "IOInterfaceFlags" = 0x8863 + | | | | | "IOInterfaceState" = 0x3 + | | | | | "IOMediaAddressLength" = 0x6 + | | | | | "IOMediaHeaderLength" = 0xe + | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | "IOPrimaryInterface" = No + | | | | | "IOControllerEnabled" = Yes + | | | | | "IOInterfaceUnit" = 0x3 + | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | "IOBuiltin" = No + | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | } + | | | | | + | | | | +-o IONetworkStack + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | "IOClass" = "IONetworkStack" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOProviderClass" = "IOResources" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IONetworkStackUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleUSBNCMControlAux@2 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x66683b5 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControlAux" + | | | | | "FinalizedTimestamp" = 0x666b4f6 + | | | | | "FinalizedDurationMS" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@2 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControlAux"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "NetworkInterfaceFlags" = 0x20000000 + | | | | "ncm-control-use-aux" = <01000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMDataAux@3 + | | | | { + | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | "IsActive" = No + | | | | "StartedTimestamp" = 0x6668513 + | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | "USBDeviceFunction" = "AppleUSBNCMDataAux" + | | | | "FinalizedTimestamp" = 0x666e470 + | | | | "FinalizedDurationMS" = 0x1 + | | | | } + | | | | + | | | +-o AppleUSBDeviceNCMData + | | | | { + | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | "IOActiveMedium" = "00000022" + | | | | "waitControlStart" = 0x117a + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMinPacketSize" = 0x40 + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOLinkStatus" = 0x1 + | | | | "waitControlFinish" = 0x117b + | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "HiddenInterface" = Yes + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMDataAux"} + | | | | "AVBControllerState" = 0x1 + | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMACAddress" = <12c34f9668cb> + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMaxPacketSize" = 0x3e92 + | | | | "IOSelectedMedium" = "00000022" + | | | | "SelfNamed" = Yes + | | | | "IOLinkSpeed" = 0x0 + | | | | "HiddenConfiguration" = Yes + | | | | "IOFeatures" = 0x0 + | | | | } + | | | | + | | | +-o anpi0 + | | | | { + | | | | "IOLocation" = "" + | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOLinkActiveCount" = 0x0 + | | | | "BSD Name" = "anpi0" + | | | | "IOMaxTransferUnit" = 0x5dc + | | | | "IOInterfaceType" = 0x6 + | | | | "IOInterfaceFlags" = 0x8863 + | | | | "IOMediaAddressLength" = 0x6 + | | | | "IOInterfaceState" = 0x3 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMediaHeaderLength" = 0xe + | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | "IOPrimaryInterface" = No + | | | | "IOControllerEnabled" = Yes + | | | | "IOInterfaceUnit" = 0x0 + | | | | "IOInterfaceNamePrefix" = "anpi" + | | | | "IOBuiltin" = No + | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | } + | | | | + | | | +-o IONetworkStack + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchCategory" = "IONetworkStack" + | | | | "IOClass" = "IONetworkStack" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOProviderClass" = "IOResources" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IONetworkStackUserClient + | | | { + | | | "IOUserClientCreator" = "pid 386, configd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o atc-phy1@2A90000 + | | | | { + | | | | "tunable_LN1_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_CLKMON_CFG" = <0c000020ff03000000020000> + | | | | "tunable_CIO3PLL_TOP" = <940000200001000000010000a0000020ff01000014010000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "tunable_LN0_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | "tunable_LN1_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_LN0_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "tunable_ATC0AXI2AF" = <0000002003020000010200000c000020ffff0f000068010010000020ffff0f0000b400003c000020ffffffffffff000040000020ffffffffffff0000080100203300ffff310010000c010020ffff0f000068010010010020ffff0f0000b40000000200207f00008040000080040200207f007f8008001280080200207f007f80080012800c0200207f007f8008001280100200207f007f8002001280140200207f007f8002001280180200207f007f80080012801c0200207f007f8008001280400200207f00008050000080440200207f007f8008002080480200207f007f80080020804c0200207f007f8008002080500200207f007f800800208054020$ + | | | | "IODeviceMemory" = (({"address"=0xb02a90000,"length"=0x4000}),({"address"=0xb02800000,"length"=0x4000}),({"address"=0xb03044000,"length"=0x4000}),({"address"=0xb03000000,"length"=0x4000}),({"address"=0xb03000800,"length"=0x4000}),({"address"=0xb03000a00,"length"=0x4000}),({"address"=0xb03001000,"length"=0x4000}),({"address"=0xb03002000,"length"=0x4000}),({"address"=0xb03002200,"length"=0x4000}),({"address"=0xb03002600,"length"=0x4000}),({"address"=0xb03002800,"length"=0x4000}),({"address"=0xb03002a00,"length"=0x4000}),({"addres$ + | | | | "tunable_LN0_RX_TOP_CIO_DFLT" = + | | | | "port-number" = <02000000> + | | | | "reg" = <0000a9020b0000000040000000000000000080020b0000000040000000000000004004030b0000000040000000000000000000030b0000000040000000000000000800030b0000000040000000000000000a00030b0000000040000000000000001000030b0000000040000000000000002000030b0000000040000000000000002200030b0000000040000000000000002600030b0000000040000000000000002800030b0000000040000000000000002a00030b0000000040000000000000004000030b0000000040000000000000005000030b0000000010000000000000007000030b0000000040000000000000009000030b000000004000000000000000a000030b00$ + | | | | "tunable_LN1_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_LN1_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "port-type" = <02000000> + | | | | "tunable_LN0_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_AUSCMN_SHM" = <040000207c0000004c000000> + | | | | "tunable_AUSPLL_CORE" = <24000020000c000000080000300000201f0000000f000000400000207f00180029000000b00000200000700800003000e40000200100060001000400340100200000800f000080074800002000ff010000280100> + | | | | "tunable_LN1_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable_LN1_RX_TOP_USB_EQA" = <> + | | | | "tunable_LN0_RX_EQ_USB_EQA" = <000000200f00000009000000040000200f0000000a000000080000200f000000090000000c0000200f00000009000000100000200f00000009000000140000200f0000000900000038000020ffff00003801000084000020ffffffff20a1471f88000020ff0f0000ff0f00009c0000200000000f00000005c4000020ffff000077770000e000002000000018000000080c010020ffffff3f20a10700100100200180000001800000b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000e800002000f01f0000200000b0010020ffffffff24000000b401002000ff030000020000b8010020ffffffff249800$ + | | | | "tunable_USB2PHY_HOST" = <080000200070000000000000> + | | | | "tunable_LN0_RX_TOP_USB_EQA" = <> + | | | | "tunable_USB2PHY_DEV" = <080000200070000000700000> + | | | | "tunable_ACIOPHY_LANE_USBC0" = <040000200000007c00000044> + | | | | "tunable_ACIOPHY_PLL_TOP" = <300000200080000000800000> + | | | | "tunable_LN0_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable_LN0_TX_TOP_USB_EQA" = <> + | | | | "tunable_LN1_TX_TOP_USB_EQA" = <> + | | | | "name" = <6174632d7068793100> + | | | | "AAPL,phandle" = + | | | | "tunable_LN1_TX_TOP_USB_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800ec0000200100000000000000> + | | | | "compatible" = <6174632d7068792c743831323200> + | | | | "clock-gates" = <0102000071000000> + | | | | "tunable_LN0_TX_SHM_USB_DFLT" = <44000020c03f0003003b0003> + | | | | "tunable_ACIOPHY_TOP" = <0c0100200000040000000000> + | | | | "tunable_LN1_RX_TOP_CIO_DFLT" = + | | | | "tunable_LN0_RX_SHM_CIO_DFLT" = <20000020ff070000f60600003000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ACIOPHY_LANE_USBC1" = <040000200000007c00000044> + | | | | "tunable_AUX_TOP" = <0800002038000000080000000c0000201f00000000000000> + | | | | "tunable_LN1_RX_SHM_USB_DFLT" = <3000002007000000070000002c00002000001f00000018009800002000e0030000800200> + | | | | "tunable_ATC_FABRIC" = <040000203f003f00200020000c000020f1000000a1000000100000201f80000004000000180000203f003f002000200020000020f1000000a1000000240000201f800000040000002c0000207f007f005200520034000020f1000000710000003800002001000000010000003c0000200100000001000000400000201f80000004000000480000201f00000010000000500000201f80000004000000580000207f007f004500450060000020f100000051000000640000201f800000040000006c0000203f00000020000000740000201f800000040000007c0000200100000001000000800000201f80000004000000880000203f003f00300030008c000$ + | | | | "tunable_LN0_RX_TOP_USB_DFLT" = <0000002000000040000000008c010020ffffff00a3c42800880200203300300333002002> + | | | | "tunable_CIO_SHIM" = <000000200007f0000000b000> + | | | | "device_type" = <6174632d70687900> + | | | | "tunable_CIO3PLL_CORE" = <0000002088080000880800000800002000001f000000030024000020000c00000008000028000020000f0000000b0000300000201f0000000f0000004c00002000fe7f00003e2400b00000200000700000003000e40000200000060000000200fc000020ff0f0000d8000000> + | | | | "tunable_AUSCMN_DIG" = <0000002000003f0000002300> + | | | | "tunable_LN1_TX_TOP_CIO_DFLT" = <1c000020e0000000a0000000a00000200000f80100001800a8000020ffffffff01000000ec0000200100000000000000> + | | | | "tunable-device" = <00000000080000000070000000000000> + | | | | "instance" = <01000000> + | | | | "tunable_LN0_TX_SHM_CIO_DFLT" = <4c0000200000000400000000> + | | | | "tunable-host" = <00000000080000000070000000700000> + | | | | "tunable_AUX_SHM" = <> + | | | | "tunable_LN1_RX_EQ_CIO_EQA" = <88000020ff0f0000ff0f00009c0000200000000f00000005b800002000e003ff00e003aabc000020ff0f0604aa0f0404c00000200000f80000005000c4000020ffff000077770000e00000200000001800000008a40100200100000000000000c40100200100000001000000d4010020010000000100000038000020ffff0000a903000084000020ffffffff20a1471fe800002000f01f00004000000c010020ffffff3f20a10700100100200180010001800000b0010020ffffffff24298909b401002000ff030000540000b8010020ffffffff24298909bc01002000ff030000540000c00100200100000001000000cc01002001000000010000$ + | | | | } + | | | | + | | | +-o AppleT8122TypeCPhy@1 + | | | { + | | | "IOClass" = "AppleT8122TypeCPhy" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "AppleTypeCPhyDisplayPortPclk" = {} + | | | "IOProbeScore" = 0x2710 + | | | "IONameMatch" = "atc-phy,t8122" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "atc-phy,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyLane" = {"Lane 1"={},"Lane 0"={}} + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8122TypeCPhy" + | | | "AppleTypeCPhyDisplayPortTunnel" = {} + | | | "AppleTypeCPhyUSB2" = {} + | | | "AppleTypeCPhyID" = 0x1 + | | | } + | | | + | | +-o dart-usb1@2F00000 + | | | | { + | | | | "dart-id" = <0b000000> + | | | | "IOInterruptSpecifiers" = (<0a040000>) + | | | | "clock-gates" = <1102000011020000> + | | | | "AAPL,phandle" = + | | | | "protection-granularity" = <10000000> + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b00> + | | | | "IODeviceMemory" = (({"address"=0xb02f00000,"length"=0x4000}),({"address"=0xb02f80000,"length"=0x4000})) + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <00010000> + | | | | "dart-options" = <27000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7573623100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <010000000e000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <0a040000> + | | | | "vm-base" = <0040000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000f0020b00000000400000000000000000f8020b0000000040000000000000> + | | | | "vm-size" = <0000ffff00000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000C7" = <> + | | | | } + | | | | + | | | +-o mapper-usb1@1 + | | | | { + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "reg" = <01000000> + | | | | "allow-subpage-mapping" = <> + | | | | "name" = <6d61707065722d7573623100> + | | | | "AAPL,phandle" = + | | | | "device_type" = <646172742d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o usb-drd1@2280000 + | | | | { + | | | | "host-mac-address" = + | | | | "usb-tier-limit" = <06000000> + | | | | "function-dock_parent" = <2301000050636361> + | | | | "tunable_DRD_USB31_CFG_HOST" = <20000020ff0000001b000000> + | | | | "atc-phy-parent" = + | | | | "tunable_setting" = <000700000000000007000000000000000500000000000000> + | | | | "usb-repeater" = <7761636d03000000> + | | | | "interrupt-parent" = <69000000> + | | | | "ncm-self-name-unit" = <01000000> + | | | | "interrupts" = <06040000070400000804000009040000f9030000> + | | | | "tunable_DRD_USB31_DEV" = <> + | | | | "ncm-interrupt-ep-disabled" = <01000000> + | | | | "iommu-parent" = + | | | | "usb-port-current-sleep-limit" = + | | | | "tunable_CTLREG_DEFAULT" = + | | | | "tunable_PIPE_HANDLER_DEFAULT" = <2c0000200400000004000000> + | | | | "bus-number" = <01000000> + | | | | "clock-gates" = <0f0100008d010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "ncm-control-ecid-mac" = <02000000> + | | | | "acio-parent" = <60000000> + | | | | "built-in" = <> + | | | | "IODeviceMemory" = (({"address"=0xb02280000,"length"=0x11800}),({"address"=0xb02200000,"length"=0x4000}),({"address"=0xb0228c000,"length"=0x5800}),({"address"=0xb02a84000,"length"=0x4000}),({"address"=0xb02800000,"length"=0x4000}),({"address"=0xb02a80000,"length"=0x4000}),({"address"=0xb02000000,"length"=0x4000}),({"address"=0xb02080000,"length"=0x4000}),({"address"=0xb0228d000,"length"=0x4000})) + | | | | "tunable_BULK_FABRIC_DEFAULT" = <040000203f00000020000000080000201f80000004000000100000200100010001000100140000201f800000040000001c0000203f003f0020002000200000201f800000040000002800002001000000010000002c0000200100000001000000300000201f80000004000000> + | | | | "AAPL,phandle" = + | | | | "name" = <7573622d6472643100> + | | | | "configuration-string" = <6e636d4175784272696e67757000> + | | | | "tunable_LINK_REGS_DEFAULT" = <200000200000f07f0000904e2400002000801f0000800b0060000020ffff030000060000> + | | | | "tunable_DRD_USB31_GBL_DEFAULT" = <640000200200000000000000> + | | | | "device-mac-address" = <000000000000> + | | | | "device_type" = <7573622d64726400> + | | | | "compatible" = <7573622d6472642c743831323200> + | | | | "port-type" = <02000000> + | | | | "tunable_AUSBC_USB2DEV" = <080000201e0000000e0000000c000020083c000000240000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <000028020b0000000018010000000000000020020b000000004000000000000000c028020b00000000580000000000000040a8020b0000000040000000000000000080020b00000000400000000000000000a8020b0000000040000000000000000000020b0000000040000000000000000008020b000000004000000000000000d028020b0000000040000000000000> + | | | | "tunable_DRD_USB31_DBG_DEFAULT" = <000000200800000008000000> + | | | | "port-number" = <02000000> + | | | | "usb-restore-disable" = <> + | | | | "tunable_DRD_USB31_GBL_HOST" = <0400002000ef0100002f00001c00002000010000000000002c000020ff070a00c8000a0000010020000100020001000204050020001000000000000028050020ff0000ff0800000638050020000800000008000080050020ffffffff0600006f> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "usb-port-current-wake-limit" = + | | | | "IOInterruptSpecifiers" = (<06040000>,<07040000>,<08040000>,<09040000>,) + | | | | } + | | | | + | | | +-o AppleT8122USBXHCI@01000000 + | | | | | { + | | | | | "IOClass" = "AppleT8122USBXHCI" + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "UsbHostControllerSoftRetryPolicy" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | | "IOProbeScore" = 0x2711 + | | | | | "locationID" = 0x1000000 + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IONameMatch" = "usb-drd,t8122" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "UsbHostControllerDeferRegisterService" = Yes + | | | | | "IOMatchCategory" = "usb-host" + | | | | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleSynopsysUSB40XHCI" + | | | | | "Revision" = <0103> + | | | | | "IONameMatched" = "usb-drd,t8122" + | | | | | "UsbHostControllerUSB4LPMPolicy" = 0x1 + | | | | | "UsbHostControllerTierLimit" = 0x6 + | | | | | "controller-statistics" = {"kControllerStatIOCount"=0x0,"kControllerStatPowerStateTime"={"kPowerStateInitialize"="0ms (0%)","kPowerStateOff"="260019393ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="3ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kControllerStatSpuriousInterruptCount"=0x0} + | | | | | "kUSBSleepSupported" = Yes + | | | | | } + | | | | | + | | | | +-o usb-drd1-port-hs@01100000 + | | | | | { + | | | | | "usb-c-port-number" = <02000000> + | | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="164065769ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kPort$ + | | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | | "AAPL,phandle" = + | | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "locationID" = 0x1100000 + | | | | | "device_type" = <7573622d647264312d706f72742d687300> + | | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | | "port-type" = <04000000> + | | | | | "port-status" = 0x0 + | | | | | "kUSBBusCurrentAllocation" = 0x0 + | | | | | "UsbCPortNumber" = 0x2 + | | | | | "dock-remote-wake" = <> + | | | | | "name" = <7573622d647264312d706f72742d687300> + | | | | | "port" = <01000000> + | | | | | } + | | | | | + | | | | +-o usb-drd1-port-ss@01200000 + | | | | { + | | | | "usb-c-port-number" = <02000000> + | | | | "link-error-count" = 0x0 + | | | | "kUSBSleepPortCurrentLimit" = 0xbb8 + | | | | "AAPL,phandle" = + | | | | "kUSBWakePortCurrentLimit" = 0xbb8 + | | | | "IOPowerManagement" = {"PowerOverrideOn"=Yes,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x3,"DriverPowerState"=0x0} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "locationID" = 0x1200000 + | | | | "device_type" = <7573622d647264312d706f72742d737300> + | | | | "kUSBBusCurrentSleepAllocation" = 0x0 + | | | | "port-type" = <04000000> + | | | | "port-status" = 0x0 + | | | | "kUSBBusCurrentAllocation" = 0x96 + | | | | "UsbCPortNumber" = 0x2 + | | | | "port-statistics" = {"kPortStatEOF2ViolationCurrentConnectCount"=0x0,"kPortStatEOF2ViolationDuringResetCount"=0x0,"kPortStatPowerStateTime"={"kPowerStateOff"="164065768ms (100%)","kPowerStateSleep"="0ms (0%)","kPowerStateOn"="0ms (0%)","kPowerStateSuspended"="0ms (0%)"},"kPortStatConnectCount"=0x0,"kPortStatRemoteWakeCount"=0x0,"kPortStatEOF2ViolationRecoveryDuringResetCount"=0x0,"kPortStatAddressFailureCount"=0x0,"kPortStatEOF2ViolationCount"=0x0,"kPortStatEnumerationFailureCount"=0x0,"kPortStatOverCurrentCount"=0x0,"kPort$ + | | | | "name" = <7573622d647264312d706f72742d737300> + | | | | "port" = <02000000> + | | | | } + | | | | + | | | +-o AppleT8122USBXDCI@1 + | | | | { + | | | | "IOClass" = "AppleT8122USBXDCI" + | | | | "IOPlatformPanicAction" = 0x3e8 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "ConfigurationType" = "ncmAuxBringup" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "DeviceDescription" = {"MaxPower"=0xffffffffffffffff,"deviceProtocol"=0x0,"productID"=0x1905,"vendorID"=0x5ac,"DefaultBcdUSBVersion"=0x210,"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0}),"deviceClass"=0x0,"manufacturerString"="Apple Inc.","BcdUSBVersion"=0x210,"productString"="Mac","Attributes"=0xc0,"MPS0"=0x40,"deviceID"=0x1512,"deviceSubClass"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "CreatedTimestamp" = 0x665aa52 + | | | | "CurrentState" = {"DeviceAddress"=0x0,"DeviceState"="Disconnected","DefaultPreferredConfiguration"=0x1,"ConnectionSpeed"=0x0,"SoftwareLinkState"="L0 (Normal)","OnBus"=No,"PreferredConfiguration"=0x1,"RemoteWakeEnabled"=No,"ConnectionSpeedDescription"="Unknown","SelectedConfiguration"=0x0} + | | | | "IONameMatch" = "usb-drd,t8122" + | | | | "FinalizedDurationMS" = 0x2 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "ScatterGatherSupport" = Yes + | | | | "IOMatchCategory" = "usb-device" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBXDCIARM" + | | | | "IONameMatched" = "usb-drd,t8122" + | | | | "DefaultDeviceDescription" = {"productString"="Mac","deviceClass"=0x0,"manufacturerString"="Apple Inc.","deviceID"=0x1512,"productID"=0x1905,"vendorID"=0x5ac,"deviceSubClass"=0x0,"Attributes"=0xc0,"deviceProtocol"=0x0,"MaxPower"=0xffffffffffffffff,"DefaultBcdUSBVersion"=0x210} + | | | | "MapperPageSize" = 0x4000 + | | | | "FinalizedTimestamp" = 0x666927b + | | | | } + | | | | + | | | +-o IOUSBDeviceConfigurator + | | | | { + | | | | "IOPropertyMatch" = {"ConfigurationType"="ncmAuxBringup"} + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProviderClass" = "IOUSBDeviceController" + | | | | "IOClass" = "IOUSBDeviceConfigurator" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBDeviceFamily" + | | | | "IOProbeScore" = 0x0 + | | | | "DeviceDescription" = {"ConfigurationDescriptors"=({"Attributes"=0xc0,"Interfaces"=("AppleUSBNCMControl","AppleUSBNCMData","AppleUSBNCMControlAux","AppleUSBNCMDataAux"),"MaxPower"=0x0})} + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMControl@0 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a89c + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControl" + | | | | | "FinalizedTimestamp" = 0x66645f5 + | | | | | "FinalizedDurationMS" = 0x1 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@0 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControl"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMData@1 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a919 + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMData" + | | | | | "FinalizedTimestamp" = 0x666912e + | | | | | "FinalizedDurationMS" = 0x2 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMData + | | | | | { + | | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | | "IOActiveMedium" = "00000022" + | | | | | "waitControlStart" = 0x1179 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMinPacketSize" = 0x40 + | | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | | "IOLinkStatus" = 0x1 + | | | | | "waitControlFinish" = 0x117a + | | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMData"} + | | | | | "AVBControllerState" = 0x1 + | | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMACAddress" = <12c34f9668ac> + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | | "IOMaxPacketSize" = 0x3e92 + | | | | | "IOSelectedMedium" = "00000022" + | | | | | "IOLinkSpeed" = 0x0 + | | | | | "HiddenConfiguration" = Yes + | | | | | "IOFeatures" = 0x0 + | | | | | } + | | | | | + | | | | +-o en4 + | | | | | { + | | | | | "IOLocation" = "" + | | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOLinkActiveCount" = 0x0 + | | | | | "BSD Name" = "en4" + | | | | | "IOMulticastAddressList" = <0180c2000003> + | | | | | "IOInterfaceType" = 0x6 + | | | | | "IOMaxTransferUnit" = 0x5dc + | | | | | "IOInterfaceFlags" = 0x8863 + | | | | | "IOInterfaceState" = 0x3 + | | | | | "IOMediaAddressLength" = 0x6 + | | | | | "IOMediaHeaderLength" = 0xe + | | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x13,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | | "IOPrimaryInterface" = No + | | | | | "IOControllerEnabled" = Yes + | | | | | "IOInterfaceUnit" = 0x4 + | | | | | "IOInterfaceNamePrefix" = "en" + | | | | | "IOBuiltin" = No + | | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | } + | | | | | + | | | | +-o IONetworkStack + | | | | | { + | | | | | "IOProbeScore" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchCategory" = "IONetworkStack" + | | | | | "IOClass" = "IONetworkStack" + | | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOProviderClass" = "IOResources" + | | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | | "IOResourceMatch" = "IOBSD" + | | | | | } + | | | | | + | | | | +-o IONetworkStackUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 386, configd" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o AppleUSBNCMControlAux@2 + | | | | | { + | | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | | "IsActive" = No + | | | | | "StartedTimestamp" = 0x665a97b + | | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | | "USBDeviceFunction" = "AppleUSBNCMControlAux" + | | | | | "FinalizedTimestamp" = 0x6664bae + | | | | | "FinalizedDurationMS" = 0x1 + | | | | | } + | | | | | + | | | | +-o AppleUSBDeviceNCMControl@2 + | | | | { + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMControlAux"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOClass" = "AppleUSBDeviceNCMControl" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "NetworkInterfaceFlags" = 0x20000000 + | | | | "ncm-control-use-aux" = <01000000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | } + | | | | + | | | +-o AppleUSBNCMDataAux@3 + | | | | { + | | | | "IOCFPlugInTypes" = {"9E72217E-8A60-11DB-BF57-000D936D06D2"="IOUSBDeviceFamily.kext/Contents/PlugIns/IOUSBDeviceLib.plugin"} + | | | | "IsActive" = No + | | | | "StartedTimestamp" = 0x665a9d4 + | | | | "IOUserClientClass" = "IOUSBDeviceInterfaceUserClient" + | | | | "USBDeviceFunction" = "AppleUSBNCMDataAux" + | | | | "FinalizedTimestamp" = 0x6668ae0 + | | | | "FinalizedDurationMS" = 0x2 + | | | | } + | | | | + | | | +-o AppleUSBDeviceNCMData + | | | | { + | | | | "IOClass" = "AppleUSBDeviceNCMData" + | | | | "IOActiveMedium" = "00000022" + | | | | "waitControlStart" = 0x1179 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMinPacketSize" = 0x40 + | | | | "IOProviderClass" = "IOUSBDeviceInterface" + | | | | "IOLinkStatus" = 0x1 + | | | | "waitControlFinish" = 0x117a + | | | | "IOPacketFilters" = {"IONetworkFilterGroup"=0x133,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "HiddenInterface" = Yes + | | | | "IOPropertyMatch" = {"USBDeviceFunction"="AppleUSBNCMDataAux"} + | | | | "AVBControllerState" = 0x1 + | | | | "IOMediumDictionary" = {"00100026"={"Index"=0x1,"Type"=0x100026,"Flags"=0x0,"Speed"=0x64},"00000022"={"Index"=0x0,"Type"=0x22,"Flags"=0x0,"Speed"=0x0}} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMACAddress" = <12c34f9668cc> + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleUSBDeviceNCM" + | | | | "IOMaxPacketSize" = 0x3e92 + | | | | "IOSelectedMedium" = "00000022" + | | | | "SelfNamed" = Yes + | | | | "IOLinkSpeed" = 0x0 + | | | | "HiddenConfiguration" = Yes + | | | | "IOFeatures" = 0x0 + | | | | } + | | | | + | | | +-o anpi1 + | | | | { + | | | | "IOLocation" = "" + | | | | "IORequiredPacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOLinkActiveCount" = 0x0 + | | | | "BSD Name" = "anpi1" + | | | | "IOMaxTransferUnit" = 0x5dc + | | | | "IOInterfaceType" = 0x6 + | | | | "IOInterfaceFlags" = 0x8863 + | | | | "IOMediaAddressLength" = 0x6 + | | | | "IOInterfaceState" = 0x3 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMediaHeaderLength" = 0xe + | | | | "IOActivePacketFilters" = {"IONetworkFilterGroup"=0x3,"IOEthernetWakeOnLANFilterGroup"=0x0} + | | | | "IOInterfaceExtraFlags" = 0x41000080 + | | | | "IOPrimaryInterface" = No + | | | | "IOControllerEnabled" = Yes + | | | | "IOInterfaceUnit" = 0x1 + | | | | "IOInterfaceNamePrefix" = "anpi" + | | | | "IOBuiltin" = No + | | | | "IONetworkData" = {"IONetworkStatsKey"={"Size"=0x14,"Data"=<0000000000000000000000000000000000000000>,"Access Types"=0x9},"IOEthernetStatsKey"={"Size"=0xd8,"Data"=<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | | } + | | | | + | | | +-o IONetworkStack + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchCategory" = "IONetworkStack" + | | | | "IOClass" = "IONetworkStack" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOProviderClass" = "IOResources" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IONetworkStackUserClient + | | | { + | | | "IOUserClientCreator" = "pid 386, configd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o nub-spmi0@D4714000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4714000,"length"=0x4000}),({"address"=0x2e4704000,"length"=0x4000}),({"address"=0x2e4700000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000CC" + | | | | "IOInterruptControllers" = ("IOInterruptController000000CC","IOInterruptController00000069","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000000CC","IOInterruptController000$ + | | | | "name" = <6e75622d73706d693000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000b501000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004071d4000000000040000000000000004070d4000000000040000000000000000070d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000CC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o pmu-main@E + | | | | | { + | | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | | "info-scrpad" = <0080000000280000> + | | | | | "info-fault_name-3" = <7273742c7273745f76646472746300> + | | | | | "info-fault_name-35" = <74696d656f75742c77646f675f66775f74696d656f757400> + | | | | | "info-rtc_alarm_ctrl_en_mask" = <40000000> + | | | | | "info-fault_log" = <00fa000005000000> + | | | | | "info-fault_name-33" = <63726173682c6879705f68775f637261736800> + | | | | | "ptmu-region-13-data" = <0066000000020000> + | | | | | "function-suspend_helper" = <8200000054523253> + | | | | | "info-fault_name-31" = <63726173682c6663726173685f696e00> + | | | | | "ptmu-region-10-data" = <0063000080000000> + | | | | | "info-scrpad_lpm_ctrl" = + | | | | | "interrupt-parent" = + | | | | | "is-primary" = <01000000> + | | | | | "hw-name" = <73746f776500> + | | | | | "ptmu-region-2-data" = <8060000040000000> + | | | | | "info-fault_name-18" = <74696d656f75742c64626c636c69636b5f74696d656f757400> + | | | | | "info-fault_name-16" = <73706d692c73706d695f6661756c7400> + | | | | | "info-fault_name-8" = <62746e5f7273742c74776f5f66696e6765725f72737400> + | | | | | "info-fault_name-4" = <6f742c6f76657274656d7000> + | | | | | "info-fault_name-14" = <736f63686f742c72657365745f696e5f3300> + | | | | | "ptmu-region-5-data" = <4061000040000000> + | | | | | "info-fault_name-0" = <706f7200> + | | | | | "info-rtc_alarm_event" = <0cf80000> + | | | | | "info-fault_name-12" = <77646f672c72657365745f696e5f3100> + | | | | | "compatible" = <706d752c73706d6900706d752c73746f776500> + | | | | | "info-fault_shadow" = <7b84000010000000> + | | | | | "info-fault_name-10" = <62746e5f7273742c62746e5f7365715f726573657400> + | | | | | "has-fw" = <01000000> + | | | | | "name" = <706d752d6d61696e00> + | | | | | "AAPL,phandle" = + | | | | | "ptmu-region-8-data" = <0062000080000000> + | | | | | "info-fault_name-28" = <75762c6273746c715f75766c6f00> + | | | | | "interrupts" = <02000000> + | | | | | "ptmu-region-15-data" = <006c000000040000> + | | | | | "info-fault_name-26" = <6f742c74656d705f6162735f6275636b3000> + | | | | | "info-fault_name-24" = <6f74705f63726300> + | | | | | "ptmu-region-12-data" = <0064000000020000> + | | | | | "info-fault_name-22" = <7373746174652c627574746f6e5f6466755f7265636f76657200> + | | | | | "info-rtc_scrpad" = <00f90000> + | | | | | "info-rtc_irq_mask_offset" = <0ef80000> + | | | | | "info-rtc_alarm_offset" = <08f80000> + | | | | | "info-fault_name-20" = <75762c7664646d61696e5f75766c6f5f686f6c6400> + | | | | | "info-fault_name-9" = <63726173682c63726173685f696e00> + | | | | | "ptmu-region-0-data" = <0060000040000000> + | | | | | "info-fault_name-5" = <75762c706f725f7761726e00> + | | | | | "info-rtc" = <02f80000> + | | | | | "info-fault_name-1" = <72737400> + | | | | | "info-fault_name-34" = <75762c7664645f626f6f73745f75766c6f00> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000CC") + | | | | | "ptmu-region-3-data" = + | | | | | "info-fault_name-32" = <63726173682c6879705f66775f637261736800> + | | | | | "info-scrpad_lpm_log" = <80a70000> + | | | | | "info-pm_setting" = <01f80000> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "info-fault_name-30" = <62746e5f7368646e00> + | | | | | "info-rtc_alarm_monitor_mask" = <01000000> + | | | | | "ptmu-region-6-data" = <8061000040000000> + | | | | | "ptmu-region-9-data" = <8062000080000000> + | | | | | "info-fault_name-19" = <7373746174652c77616c6c65745f63726173685f73657100> + | | | | | "ptmu-region-14-data" = <0068000000040000> + | | | | | "info-fault_name-17" = <6e74635f7368646e00> + | | | | | "info-has_slpsmc" = <01000000> + | | | | | "info-id" = <000000000a000000> + | | | | | "info-fault_name-15" = <7273745f696e2c72657365745f696e5f305f646561737365727400> + | | | | | "ptmu-region-11-data" = <8063000080000000> + | | | | | "info-has_phra" = <01000000> + | | | | | "upo-shutdown-delay" = <00000000> + | | | | | "info-fault_name-2" = <706f722c706f725f76646472746300> + | | | | | "info-fault_name-6" = <75762c7664646d61696e5f75766c6f00> + | | | | | "info-fault_name-13" = <6462675f7273742c72657365745f696e5f3200> + | | | | | "info-fault_name-11" = <7273745f696e2c72657365745f696e5f3000> + | | | | | "function-external_standby" = <9f0000005779656b4553424d> + | | | | | "info-fault_name-29" = <6f762c6273746c715f6f766c6f00> + | | | | | "info-rtc_alarm_mask" = <01000000> + | | | | | "info-rtc_alarm_ctrl" = <00f80000> + | | | | | "ptmu-region-1-data" = <4060000040000000> + | | | | | "info-fault_name-27" = <6f742c74656d705f6162735f6275636b3100> + | | | | | "info-leg_scrpad" = <00f70000> + | | | | | "IOInterruptSpecifiers" = (<02000000>) + | | | | | "info-fault_name-25" = <736770696f00> + | | | | | "info-fault_name-23" = <63726173682c7363726173685f696e00> + | | | | | "ptmu-region-4-data" = <0061000040000000> + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "info-fault_name-21" = <74696d656f75742c7761746368646f675f74696d656f757400> + | | | | | "info-clock_offset" = <00f9000006000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "ptmu-region-7-data" = + | | | | | "info-scrpad_socd" = <008b000000180000> + | | | | | "info-fault_name-7" = <6f762c7664646d61696e5f6f766c6f00> + | | | | | } + | | | | | + | | | | +-o AppleDialogSPMIPMU + | | | | | { + | | | | | "IOPMUBootUPOState" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOPMUBootErrorAppName" = 0x0 + | | | | | "IOPMUBootLPMLog" = {"CAPA"=0x0,"BTLC"=0x0,"TMSc"=0x0,"PDDc"=0x0,"CCCs"=0x0,"STAT"=0x0,"TMS0"=0x0,"PDD0"=0x0,"CCCn"=0x0,"GGTm"=0x0,"VOLT"=0x0,"CCCu"=0x0} + | | | | | "IOPMUBootErrorStage" = 0x0 + | | | | | "IOPMUSPMITimeoutCount" = 0x0 + | | | | | "IOPMUBootErrorFaults" = () + | | | | | "IOFunctionParent000000CD" = <> + | | | | | "IONameMatched" = "pmu,spmi" + | | | | | "IOPMUBootReasonLPMSU" = 0x0 + | | | | | "IOPMUBootOff2WakeSource" = () + | | | | | "IOPMUBootFaultInfo" = ("wdog,reset_in_1") + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | | "IOPlatformActiveAction" = 0xbb8 + | | | | | "IOPMUPrimary" = 0x1 + | | | | | "IOPlatformSleepAction" = 0x190 + | | | | | "IOPMUBootDebug" = 0x20 + | | | | | "IOPlatformQuiesceAction" = 0x17ed0 + | | | | | "IOPMUBootAppName" = 0x0 + | | | | | "IOPMUBootErrorFailCount" = 0x0 + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPMUBootErrorClear" = 0x0 + | | | | | "IOPMUBootErrorPanicCount" = 0x0 + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOPMUBootLPMFWSCC" = 0x0 + | | | | | "IOPMUBootSOCDClear" = 0x0 + | | | | | "IONameMatch" = "pmu,spmi" + | | | | | "IOClass" = "AppleDialogSPMIPMU" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | | | "IOPlatformWakeAction" = 0x190 + | | | | | "IOPMUBootLPMState" = 0x0 + | | | | | "IOPMUSPMIParityErrCount" = 0x0 + | | | | | "IOMatchCategory" = "AppleSPMIPMU" + | | | | | "IOPMUBootStage" = 0xff + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOPMUBootUPOCounter" = 0x0 + | | | | | "IOPMUSPMINakCount" = 0x0 + | | | | | } + | | | | | + | | | | +-o AppleDialogSPMIPMURTC + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOMatchCategory" = "AppleSPMIPMURTC" + | | | | "IOClass" = "AppleDialogSPMIPMURTC" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOProviderClass" = "AppleDialogSPMIPMU" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOPlatformSleepAction" = 0x0 + | | | | } + | | | | + | | | +-o btm@E + | | | | { + | | | | "btm-pmu-type" = <09000000> + | | | | "compatible" = <62746d00> + | | | | "interrupt-parent" = + | | | | "interrupts" = <0c000000> + | | | | "AAPL,phandle" = + | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | "IOInterruptSpecifiers" = (<0c000000>) + | | | | "IOInterruptControllers" = ("IOInterruptController000000CC") + | | | | "device_type" = <62746d00> + | | | | "function-suspend_helper" = <8200000054523253> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "IOReportLegendPublic" = Yes + | | | | "#num-spmi-interrupts" = <01000000> + | | | | "name" = <62746d00> + | | | | } + | | | | + | | | +-o AppleBTM + | | | | { + | | | | "IOClass" = "AppleBTM" + | | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0xd,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x2,"ElementCookie"=0xe,"Size"=0x3ea0,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x3ea0,"Usage"=0x0}) + | | | | "Transport" = "SPMI" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleBTM" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "MaxInputReportSize" = 0x7d4 + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "Manufacturer" = "APPL" + | | | | "IOFunctionParent000000CE" = <> + | | | | "Product" = "BTM" + | | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x48}) + | | | | "IOProbeScore" = 0x0 + | | | | "ReportDescriptor" = <0600ff0a4800a1010629ff8501257f950175080901b1020902b1020925a10385022476983e090381220904761804b102c0c0> + | | | | "MaxOutputReportSize" = 0x1 + | | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | | "IONameMatch" = "btm" + | | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBTM" + | | | | "IOMatchCategory" = "AppleBTM" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleBTM" + | | | | "IONameMatched" = "btm" + | | | | "PrimaryUsage" = 0x48 + | | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"ReportID"=0x0,"ElementCookie"=0x2,"CollectionType"=0x3,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0x0,"IsRelative"=No,"UsagePage"=0xff29,"Max"=0x0,"IsArray"=No,"Type"=0x1,"Size"=0x3e98,"Min"=0x0,"Flags"=0x22,"ReportID"=0x2,"Usage"=0x3,"ReportCount"=0x1,"Unit"=0x0,"HasNullState"=No,"ReportSize"=0x3e98,"HasPreferredState"=No,"IsNonLinear"=No,"ScaledMin"=0x0,"IsWrapping"=No,$ + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ReportInterval" = 0x1f40 + | | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x2,0x100020001,"Report 2")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | | "PrimaryUsagePage" = 0xff00 + | | | | "IOKitDebug" = 0xffff + | | | | "MaxFeatureReportSize" = 0x84 + | | | | } + | | | | + | | | +-o IOHIDInterface + | | | { + | | | "MaxOutputReportSize" = 0x1 + | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | "IOServiceDEXTEntitlements" = ("com.apple.developer.driverkit.transport.hid") + | | | "Product" = "BTM" + | | | "PrimaryUsage" = 0x48 + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0x48}) + | | | "Transport" = "SPMI" + | | | "ReportInterval" = 0x1f40 + | | | "ReportDescriptor" = <0600ff0a4800a1010629ff8501257f950175080901b1020902b1020925a10385022476983e090381220904761804b102c0c0> + | | | "Manufacturer" = "APPL" + | | | "PrimaryUsagePage" = 0xff00 + | | | "MaxFeatureReportSize" = 0x84 + | | | "MaxInputReportSize" = 0x7d4 + | | | } + | | | + | | +-o nub-spmi1@D4794000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4794000,"length"=0x4000}),({"address"=0x2e4784000,"length"=0x4000}),({"address"=0x2e4780000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000CF" + | | | | "IOInterruptControllers" = ("IOInterruptController000000CF","IOInterruptController00000069","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000000CF","IOInterruptController000$ + | | | | "name" = <6e75622d73706d693100> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000bf01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004079d4000000000040000000000000004078d4000000000040000000000000000078d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi1","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000CF" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o pmu-aux@E + | | | | { + | | | | "ptmu-region-1-data" = <4080000040000000> + | | | | "info-fault_log" = <0018000003000000> + | | | | "info-fault_name-12" = <73706d692c73706d695f6661756c7400> + | | | | "ptmu-region-12-data" = <0084000000020000> + | | | | "ptmu-region-13-data" = <0086000000020000> + | | | | "ptmu-region-4-data" = <0081000040000000> + | | | | "info-fault_name-5" = <7273745f696e2c72657365745f696e5f7269736500> + | | | | "ptmu-region-11-data" = <8083000080000000> + | | | | "ptmu-region-7-data" = + | | | | "ptmu-region-10-data" = <0083000080000000> + | | | | "IOInterruptSpecifiers" = (<02000000>) + | | | | "interrupt-parent" = + | | | | "hw-name" = <76616c6500> + | | | | "info-fault_name-6" = <7273745f696e2c72657365745f696e5f66616c6c00> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "interrupts" = <02000000> + | | | | "info-fault_name-13" = <75762c6273746c715f75766c6f00> + | | | | "info-fault_name-7" = <63726173682c7363726173685f696e00> + | | | | "ptmu-region-2-data" = <8080000040000000> + | | | | "ptmu-region-5-data" = <4081000040000000> + | | | | "ptmu-region-8-data" = <0082000080000000> + | | | | "info-fault_name-8" = <6e74635f7368646e00> + | | | | "info-fault_name-14" = <6f762c6273746c715f6f766c6f00> + | | | | "has-fw" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController000000CF") + | | | | "info-fault_name-9" = <74696d656f75742c7761746368646f675f746f00> + | | | | "AAPL,phandle" = + | | | | "info-scrpad" = <00a0000000080000> + | | | | "name" = <706d752d61757800> + | | | | "info-fault_name-0" = <706f7200> + | | | | "info-fault_name-10" = <6f74705f63726300> + | | | | "ptmu-region-0-data" = <0080000040000000> + | | | | "compatible" = <706d752c73706d6900706d752c76616c6500> + | | | | "info-fault_name-1" = <72737400> + | | | | "ptmu-region-3-data" = + | | | | "ptmu-region-6-data" = <8081000040000000> + | | | | "ptmu-region-9-data" = <8082000080000000> + | | | | "info-fault_name-16" = <63726173682c6879705f66775f637261736800> + | | | | "info-fault_name-2" = <6f742c6f76657274656d7000> + | | | | "info-leg_scrpad" = <00bb0000> + | | | | "IOReportLegendPublic" = Yes + | | | | "info-fault_name-11" = <736770696f00> + | | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | | "function-suspend_helper" = <8200000054523253> + | | | | "info-fault_name-3" = <75762c7664646d61696e5f75766c6f00> + | | | | "ptmu-region-15-data" = <008c000000040000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "info-fault_name-17" = <63726173682c6879705f68775f637261736800> + | | | | "info-id" = <000000000a000000> + | | | | "ptmu-region-14-data" = <0088000000040000> + | | | | "info-fault_name-4" = <6f762c7664646d61696e5f6f766c6f00> + | | | | } + | | | | + | | | +-o AppleDialogSPMIPMU + | | | { + | | | "IOPMUBootUPOState" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOPMUBootErrorAppName" = 0x0 + | | | "IOPMUBootErrorStage" = 0x0 + | | | "IOPMUSPMITimeoutCount" = 0x0 + | | | "IOFunctionParent000000D0" = <> + | | | "IOPMUBootErrorFaults" = () + | | | "IONameMatched" = "pmu,spmi" + | | | "IOPMUBootReasonLPMSU" = 0x0 + | | | "IOPMUBootOff2WakeSource" = () + | | | "IOPMUBootFaultInfo" = ("rst_in,reset_in_rise","rst_in,reset_in_fall") + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOPlatformActiveAction" = 0xbb8 + | | | "IOPlatformSleepAction" = 0x190 + | | | "IOPMUBootDebug" = 0x0 + | | | "IOPlatformQuiesceAction" = 0x17ed0 + | | | "IOPMUBootAppName" = 0x0 + | | | "IOPMUBootErrorFailCount" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPMUBootErrorClear" = 0x0 + | | | "IOPMUBootErrorPanicCount" = 0x0 + | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | "IOPMUBootLPMFWSCC" = 0x0 + | | | "IOPMUBootSOCDClear" = 0x0 + | | | "IONameMatch" = "pmu,spmi" + | | | "IOClass" = "AppleDialogSPMIPMU" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMIPMU" + | | | "IOPlatformWakeAction" = 0x190 + | | | "IOPMUBootLPMState" = 0x0 + | | | "IOPMUSPMIParityErrCount" = 0x0 + | | | "IOMatchCategory" = "AppleSPMIPMU" + | | | "IOPMUBootStage" = 0x30 + | | | "IOProbeScore" = 0x0 + | | | "IOPMUBootUPOCounter" = 0x0 + | | | "IOPMUSPMINakCount" = 0x0 + | | | } + | | | + | | +-o nub-spmi-a0@D4908000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2e4908000,"length"=0x4000}),({"address"=0x2e4904000,"length"=0x4000}),({"address"=0x2e4900000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D1" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController00000069","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000$ + | | | | "name" = <6e75622d73706d692d613000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <00010000cd01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <008090d4000000000040000000000000004090d4000000000040000000000000000090d4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="nub-spmi-a0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c74303$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D1" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o hpm0@C + | | | | | { + | | | | | "dock" = <22010000> + | | | | | "reg" = <0c0000000300000000000000040000000000000000000000> + | | | | | "port-location" = <6c6566742d6261636b00> + | | | | | "IOInterruptSpecifiers" = (<0b000000>,<11000000>,<13000000>) + | | | | | "AAPL,phandle" = + | | | | | "IOReportLegendPublic" = Yes + | | | | | "uart-hpm-rids" = <01000000> + | | | | | "feature-ldcm-arch-version" = <04000000> + | | | | | "acio-parent" = <52000000> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "transports-supported" = <0100000002000000030000000400000005000000> + | | | | | "features-supported" = <010000000200000003000000> + | | | | | "interrupt-parent" = + | | | | | "port-type" = <02000000> + | | | | | "name" = <68706d3000> + | | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | | "interrupts" = <0b0000001100000013000000> + | | | | | "interrupt-type" = <000000000200000003000000> + | | | | | "hpm-class-type" = <0a000000> + | | | | | "tag-number" = <01000000> + | | | | | "port-number" = <01000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "usbc-update-protocol" = <01000000> + | | | | | "rid" = <00000000> + | | | | | "feature-ldcm-hw-version" = <01000000> + | | | | | } + | | | | | + | | | | +-o AppleHPMARMSPMI + | | | | | { + | | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HPM RTPC Enabled" = Yes + | | | | | "RID" = 0x0 + | | | | | "HPM In RTPC" = Yes + | | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | } + | | | | | + | | | | +-o AppleHPMDeviceHALType3@C + | | | | | | { + | | | | | | "I2C Read Failed" = No + | | | | | | "HPM Mode Register on Boot" = <41505020> + | | | | | | "Status Reg" = 0x10000000 + | | | | | | "Version" = 0x306300 + | | | | | | "Revision" = 0x22 + | | | | | | "Data Status Reg" = 0x0 + | | | | | | "CF VID Status Reg" = <00000000000000000000000000000000000000034000> + | | | | | | "RID" = 0x0 + | | | | | | "UUID" = "15459D1C-4D0F-E74C-F6AB-2269C93CC921" + | | | | | | "Address" = 0xc + | | | | | | "Device ID" = 0x2012025 + | | | | | | "Revision ID" = 0xa2 + | | | | | | "Vendor ID" = 0x28 + | | | | | | } + | | | | | | + | | | | | +-o Port-USB-C@1 + | | | | | | { + | | | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | | | "PortTypeDescription" = "USB-C" + | | | | | | "FeaturesEnabled" = ("TRM","LDCM","Power In") + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | | "FW Version" = <00633000> + | | | | | | "ActiveCable" = No + | | | | | | "IOAccessoryPowerMode" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "ConnectionCount" = 0x9 + | | | | | | "LDCM_StateDescription" = "Idle" + | | | | | | "IOAccessoryUSBConnectType" = 0x0 + | | | | | | "Pin Configuration" = {"sbu1"=0x2,"tx1"=0x6,"rx2"=0x4,"tx2"=0x3,"sbu2"=0x1,"rx1"=0x5} + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOProbeScore" = 0x6e + | | | | | | "IOClass" = "AppleHPMInterfaceType10" + | | | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | | | "LDCM_State" = 0x1 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOUserClientClass" = "IOPortUserClient" + | | | | | | "IOAccessoryPrimaryDevicePort" = 0x1 + | | | | | | "Boot Flags" = <610310000160041e00000000> + | | | | | | "OpticalCable" = No + | | | | | | "Description" = "Port-USB-C@1" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | | "BuiltIn" = Yes + | | | | | | "LDCM_UserOverrideActive" = No + | | | | | | "AppLoaded Count" = 0x1 + | | | | | | "IOAccessoryManagerType" = 0x3 + | | | | | | "TransportsProvisioned" = ("CC") + | | | | | | "Overcurrent Count" = 0x0 + | | | | | | "LDCMPin" = 0x1 + | | | | | | "IOAccessoryUSBSuperSpeedActive" = No + | | | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | | | "AuthorizationRequired" = No + | | | | | | "Metadata" = {} + | | | | | | "IOAccessoryUSBConnectString" = "None" + | | | | | | "TransportsSupported" = ("CC","USB2","USB3","CIO","DisplayPort") + | | | | | | "IOAccessoryUSBConnectTypePublished" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | | "IOAccessoryUSBActive" = Yes + | | | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | | | "UserAuthorizationStatusDescription" = "Not Required" + | | | | | | "HPDAsserted" = No + | | | | | | "PortDescription" = "Port-USB-C@1" + | | | | | | "TransportsUnauthorized" = () + | | | | | | "ConnectionActive" = No + | | | | | | "DisplayPortPinAssignment" = No + | | | | | | "IOFunctionParent00000122" = <> + | | | | | | "PortType" = 0x2 + | | | | | | "AutoMatched" = No + | | | | | | "PlugOrientation" = 0x0 + | | | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | | | "IOAccessoryID" = 0x64 + | | | | | | "LDCMPinDescription" = "Reference" + | | | | | | "IOAccessoryUSBModeType" = 0x4 + | | | | | | "FeaturesSupported" = ("TRM","LDCM","Power In") + | | | | | | "LDCM_LiquidDetected" = No + | | | | | | "IOAccessoryManagerSleepPower" = No + | | | | | | "HChk" = <630000000000> + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | | "LDCM_MeasurementStatusDescription" = "No Error" + | | | | | | "PortNumber" = 0x1 + | | | | | | "TransportsActive" = () + | | | | | | "LDCM_MitigationsEnabled" = No + | | | | | | "Plug Event Count" = 0x13 + | | | | | | "UserAuthorizationStatus" = 0x0 + | | | | | | "AccessoryMode" = 0x0 + | | | | | | "SOP UVDM Update Count" = 0x0 + | | | | | | "LDCM_MeasurementStatus" = 0x0 + | | | | | | "IOAccessoryDetect" = No + | | | | | | } + | | | | | | + | | | | | +-o CC + | | | | | | { + | | | | | | "TRM_TransportSupervised" = No + | | | | | | "ParentPortType" = 0x2 + | | | | | | "ParentPortBuiltIn" = Yes + | | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | | "AuthenticationStatus" = 0x0 + | | | | | | "HashStatus" = 0x0 + | | | | | | "HashStatusDescription" = "Not Set" + | | | | | | "Index" = 0x0 + | | | | | | "Tunneled" = No + | | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | | "TransportType" = 0x1 + | | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | | "ParentPortNumber" = 0x1 + | | | | | | "DriverStatusDescription" = "Not Monitored" + | | | | | | "AuthorizationRequired" = No + | | | | | | "Metadata" = {} + | | | | | | "AuthenticationRequired" = No + | | | | | | "TransportTypeDescription" = "CC" + | | | | | | "AuthorizationStatus" = 0x0 + | | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | | "TransportDescription" = "Port-USB-C@1/CC" + | | | | | | "DriverStatus" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Active" = No + | | | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | | | } + | | | | | | + | | | | | +-o LDCM + | | | | | | { + | | | | | | "ParentPortType" = 0x2 + | | | | | | "StateDescription" = "Hardware Controlled" + | | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | | "ArchitectureVersion" = 0x4 + | | | | | | "FeatureTypeDescription" = "LDCM" + | | | | | | "MitigationsEnabled" = No + | | | | | | "FeatureType" = 0x2 + | | | | | | "LiquidDetected" = No + | | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | | "MitigationsStatus" = 0x0 + | | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | | "IOUserClientClass" = "IOPortFeatureLDCMUserClient" + | | | | | | "ParentPortNumber" = 0x1 + | | | | | | "UserOverrideActive" = No + | | | | | | "State" = 0x0 + | | | | | | "Metadata" = {} + | | | | | | "FirmwareVersion" = "003.0063" + | | | | | | "MeasurementStatus" = 0x0 + | | | | | | "Description" = "Port-USB-C@1/LDCM" + | | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | | "HardwareVersion" = 0x1 + | | | | | | "Data" = <0000eadf730150f5c9f9c89514fa3900000000004b274b270a00641c771c914e954e0a200b20e03d9a1960f598199ba343ff00000017e2> + | | | | | | "MeasurementStatusDescription" = "No Error" + | | | | | | } + | | | | | | + | | | | | +-o Power In + | | | | | { + | | | | | "Active" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "Metadata" = {} + | | | | | "Description" = "Port-USB-C@1/Power In" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | | | "FeatureTypeDescription" = "Power In" + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ParentPortNumber" = 0x1 + | | | | | "FeatureType" = 0x3 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | } + | | | | | + | | | | +-o AppleHPMUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 24257, UARPUpdaterServi" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o hpm1@A + | | | | | { + | | | | | "rid" = <01000000> + | | | | | "feature-ldcm-hw-version" = <01000000> + | | | | | "IOInterruptSpecifiers" = (<25000000>,<2b000000>,<2d000000>) + | | | | | "AAPL,phandle" = + | | | | | "IOReportLegendPublic" = Yes + | | | | | "feature-ldcm-arch-version" = <04000000> + | | | | | "acio-parent" = <60000000> + | | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | | "transports-supported" = <0100000002000000030000000400000005000000> + | | | | | "features-supported" = <010000000200000003000000> + | | | | | "interrupt-parent" = + | | | | | "port-type" = <02000000> + | | | | | "name" = <68706d3100> + | | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | | "interrupts" = <250000002b0000002d000000> + | | | | | "interrupt-type" = <000000000200000003000000> + | | | | | "hpm-class-type" = <0a000000> + | | | | | "port-number" = <02000000> + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | | "dock" = <23010000> + | | | | | "reg" = <0a0000000300000000000000040000000000000000000000> + | | | | | "port-location" = <6c6566742d66726f6e7400> + | | | | | } + | | | | | + | | | | +-o AppleHPMARMSPMI + | | | | | { + | | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "HPM RTPC Enabled" = Yes + | | | | | "RID" = 0x1 + | | | | | "HPM In RTPC" = Yes + | | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | } + | | | | | + | | | | +-o AppleHPMDeviceHALType3@A + | | | | | | { + | | | | | | "I2C Read Failed" = No + | | | | | | "HPM Mode Register on Boot" = <41505020> + | | | | | | "Status Reg" = 0x10000000 + | | | | | | "Version" = 0x306300 + | | | | | | "Revision" = 0x22 + | | | | | | "Data Status Reg" = 0x0 + | | | | | | "CF VID Status Reg" = <00000000000000000000000000000000000000000000> + | | | | | | "RID" = 0x1 + | | | | | | "UUID" = "EAE59D1C-DB31-CD73-2891-735AEE721C03" + | | | | | | "Address" = 0xa + | | | | | | "Device ID" = 0x2012025 + | | | | | | "Revision ID" = 0xa2 + | | | | | | "Vendor ID" = 0x28 + | | | | | | } + | | | | | | + | | | | | +-o Port-USB-C@2 + | | | | | | { + | | | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | | | "PortTypeDescription" = "USB-C" + | | | | | | "FeaturesEnabled" = ("TRM","LDCM","Power In") + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | | "FW Version" = <00633000> + | | | | | | "ActiveCable" = No + | | | | | | "IOAccessoryPowerMode" = 0x1 + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "ConnectionCount" = 0x0 + | | | | | | "LDCM_StateDescription" = "Idle" + | | | | | | "IOAccessoryUSBConnectType" = 0x0 + | | | | | | "Pin Configuration" = {"sbu1"=0x0,"tx1"=0x0,"rx2"=0x0,"tx2"=0x0,"sbu2"=0x0,"rx1"=0x0} + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "IOProbeScore" = 0x6e + | | | | | | "IOClass" = "AppleHPMInterfaceType10" + | | | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | | | "LDCM_State" = 0x1 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "IOAccessoryPrimaryDevicePort" = 0x102 + | | | | | | "Boot Flags" = <810400000100101e00000000> + | | | | | | "OpticalCable" = No + | | | | | | "Description" = "Port-USB-C@2" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | | "BuiltIn" = Yes + | | | | | | "LDCM_UserOverrideActive" = No + | | | | | | "AppLoaded Count" = 0x1 + | | | | | | "IOAccessoryManagerType" = 0x3 + | | | | | | "TransportsProvisioned" = ("CC") + | | | | | | "Overcurrent Count" = 0x0 + | | | | | | "LDCMPin" = 0x1 + | | | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | | | "AuthorizationRequired" = No + | | | | | | "Metadata" = {} + | | | | | | "TransportsSupported" = ("CC","USB2","USB3","CIO","DisplayPort") + | | | | | | "IOAccessoryUSBConnectTypePublished" = 0x0 + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | | "IOAccessoryUSBActive" = Yes + | | | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | | | "UserAuthorizationStatusDescription" = "Not Required" + | | | | | | "HPDAsserted" = No + | | | | | | "PortDescription" = "Port-USB-C@2" + | | | | | | "ConnectionActive" = No + | | | | | | "DisplayPortPinAssignment" = 0x0 + | | | | | | "PortType" = 0x2 + | | | | | | "AutoMatched" = No + | | | | | | "PlugOrientation" = 0x0 + | | | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | | | "IOFunctionParent00000123" = <> + | | | | | | "IOAccessoryID" = 0x64 + | | | | | | "LDCMPinDescription" = "Reference" + | | | | | | "IOAccessoryUSBModeType" = 0x4 + | | | | | | "FeaturesSupported" = ("TRM","LDCM","Power In") + | | | | | | "LDCM_LiquidDetected" = No + | | | | | | "IOAccessoryManagerSleepPower" = No + | | | | | | "HChk" = <000000000000> + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | | "LDCM_MeasurementStatusDescription" = "No Error" + | | | | | | "PortNumber" = 0x2 + | | | | | | "TransportsActive" = () + | | | | | | "LDCM_MitigationsEnabled" = No + | | | | | | "Plug Event Count" = 0x1 + | | | | | | "UserAuthorizationStatus" = 0x0 + | | | | | | "AccessoryMode" = 0x0 + | | | | | | "SOP UVDM Update Count" = 0x0 + | | | | | | "LDCM_MeasurementStatus" = 0x0 + | | | | | | "IOAccessoryDetect" = No + | | | | | | } + | | | | | | + | | | | | +-o CC + | | | | | | { + | | | | | | "TRM_TransportSupervised" = No + | | | | | | "ParentPortType" = 0x2 + | | | | | | "ParentPortBuiltIn" = Yes + | | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | | "AuthenticationStatus" = 0x0 + | | | | | | "HashStatus" = 0x0 + | | | | | | "HashStatusDescription" = "Not Set" + | | | | | | "Index" = 0x0 + | | | | | | "Tunneled" = No + | | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | | "TransportType" = 0x1 + | | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | | "ParentPortNumber" = 0x2 + | | | | | | "DriverStatusDescription" = "Not Monitored" + | | | | | | "AuthorizationRequired" = No + | | | | | | "Metadata" = {} + | | | | | | "AuthenticationRequired" = No + | | | | | | "TransportTypeDescription" = "CC" + | | | | | | "AuthorizationStatus" = 0x0 + | | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | | "TransportDescription" = "Port-USB-C@2/CC" + | | | | | | "DriverStatus" = 0x0 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "Active" = No + | | | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | | | } + | | | | | | + | | | | | +-o LDCM + | | | | | | { + | | | | | | "ParentPortType" = 0x2 + | | | | | | "StateDescription" = "Hardware Controlled" + | | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | | "ArchitectureVersion" = 0x4 + | | | | | | "FeatureTypeDescription" = "LDCM" + | | | | | | "MitigationsEnabled" = No + | | | | | | "FeatureType" = 0x2 + | | | | | | "LiquidDetected" = No + | | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | | "MitigationsStatus" = 0x0 + | | | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | | | "IOUserClientClass" = "IOPortFeatureLDCMUserClient" + | | | | | | "ParentPortNumber" = 0x2 + | | | | | | "UserOverrideActive" = No + | | | | | | "State" = 0x0 + | | | | | | "Metadata" = {} + | | | | | | "FirmwareVersion" = "003.0063" + | | | | | | "MeasurementStatus" = 0x0 + | | | | | | "Description" = "Port-USB-C@2/LDCM" + | | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | | "HardwareVersion" = 0x1 + | | | | | | "Data" = <0000684854038965dd0070587003faffffff0000572754270400731c6e1c974e9f4efb1ffd1fa0cf9a19e063981922f942ff0000002fe5> + | | | | | | "MeasurementStatusDescription" = "No Error" + | | | | | | } + | | | | | | + | | | | | +-o Power In + | | | | | { + | | | | | "Active" = No + | | | | | "ParentPortTypeDescription" = "USB-C" + | | | | | "Metadata" = {} + | | | | | "Description" = "Port-USB-C@2/Power In" + | | | | | "ParentBuiltInPortNumber" = 0x2 + | | | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | | | "FeatureTypeDescription" = "Power In" + | | | | | "ParentPortType" = 0x2 + | | | | | "ParentBuiltInPortType" = 0x2 + | | | | | "ParentPortNumber" = 0x2 + | | | | | "FeatureType" = 0x3 + | | | | | "ParentBuiltInPortTypeDescription" = "USB-C" + | | | | | } + | | | | | + | | | | +-o AppleHPMUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 24257, UARPUpdaterServi" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o hpm5@8 + | | | | { + | | | | "dock" = <24010000> + | | | | "IOInterruptSpecifiers" = (<3f000000>,<45000000>,<47000000>) + | | | | "AAPL,phandle" = + | | | | "IOReportLegendPublic" = Yes + | | | | "IOInterruptControllers" = ("IOInterruptController000000D1","IOInterruptController000000D1","IOInterruptController000000D1") + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "transports-supported" = <> + | | | | "features-supported" = <03000000> + | | | | "interrupt-parent" = + | | | | "port-type" = <11000000> + | | | | "name" = <68706d3500> + | | | | "compatible" = <757362632c736e323031323032782c73706d6900> + | | | | "interrupts" = <3f0000004500000047000000> + | | | | "interrupt-type" = <000000000200000003000000> + | | | | "hpm-class-type" = <0b000000> + | | | | "tag-number" = <02000000> + | | | | "port-number" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200010000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200010001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200010002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200010003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200010004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "usbc-update-protocol" = <01000000> + | | | | "reg" = <080000000300000000000000040000000000000000000000> + | | | | "rid" = <05000000> + | | | | } + | | | | + | | | +-o AppleHPMARMSPMI + | | | | { + | | | | "IOClass" = "AppleHPMARMSPMI" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "IOCFPlugInTypes" = {"12A1DCCF-CF7A-4775-BEE5-9C4319F4CD2B"="AppleHPM.kext/Contents/PlugIns/AppleHPMLib.plugin"} + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "IOUserClientClass" = "AppleHPMUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "usbc,sn201202x,spmi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "HPM RTPC Enabled" = Yes + | | | | "RID" = 0x5 + | | | | "HPM In RTPC" = Yes + | | | | "IONameMatched" = "usbc,sn201202x,spmi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | } + | | | | + | | | +-o AppleHPMDeviceHALType3@8 + | | | | | { + | | | | | "I2C Read Failed" = No + | | | | | "HPM Mode Register on Boot" = <41505020> + | | | | | "Status Reg" = 0x10000000 + | | | | | "Version" = 0x306300 + | | | | | "Revision" = 0x22 + | | | | | "Data Status Reg" = 0x0 + | | | | | "CF VID Status Reg" = <00000000000000000000000000000000000000034000> + | | | | | "RID" = 0x5 + | | | | | "UUID" = "EB299E1C-6709-9672-C5F8-AD5AC6637C57" + | | | | | "Address" = 0x8 + | | | | | "Device ID" = 0x2012025 + | | | | | "Revision ID" = 0xa2 + | | | | | "Vendor ID" = 0x28 + | | | | | } + | | | | | + | | | | +-o Port-MagSafe 3@1 + | | | | | { + | | | | | "IOAccessoryActivePowerMode" = 0x1 + | | | | | "PortTypeDescription" = "MagSafe 3" + | | | | | "FeaturesEnabled" = ("Power In") + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleHPM" + | | | | | "FW Version" = <00633000> + | | | | | "ActiveCable" = No + | | | | | "IOAccessoryPowerMode" = 0x1 + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "ConnectionCount" = 0x11 + | | | | | "IOAccessoryUSBConnectType" = 0x0 + | | | | | "Pin Configuration" = {"sbu1"=0x0,"tx1"=0x0,"rx2"=0x0,"tx2"=0x0,"sbu2"=0x0,"rx1"=0x0} + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOProbeScore" = 0x6e + | | | | | "IOClass" = "AppleHPMInterfaceType11" + | | | | | "IOAccessoryPowerCurrentLimits" = (0x0,0x0,0x0,0x0,0x0) + | | | | | "IOAccessoryPrimaryDevicePort" = 0x105 + | | | | | "Boot Flags" = <610310000160041e00000000> + | | | | | "OpticalCable" = No + | | | | | "Description" = "Port-MagSafe 3@1" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleHPM" + | | | | | "BuiltIn" = Yes + | | | | | "AppLoaded Count" = 0x1 + | | | | | "IOAccessoryManagerType" = 0x3 + | | | | | "TransportsProvisioned" = ("CC") + | | | | | "Overcurrent Count" = 0x0 + | | | | | "IOAccessorySleepPowerCurrentLimit" = 0x0 + | | | | | "AuthorizationRequired" = No + | | | | | "Metadata" = {} + | | | | | "TransportsSupported" = () + | | | | | "IOAccessoryUSBConnectTypePublished" = 0x0 + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleHPM" + | | | | | "IOAccessoryUSBActive" = Yes + | | | | | "IOAccessorySupportedPowerModes" = (0x1,0x3) + | | | | | "UserAuthorizationStatusDescription" = "Not Required" + | | | | | "HPDAsserted" = No + | | | | | "PortDescription" = "Port-MagSafe 3@1" + | | | | | "ConnectionActive" = No + | | | | | "DisplayPortPinAssignment" = 0x0 + | | | | | "PortType" = 0x11 + | | | | | "AutoMatched" = No + | | | | | "PlugOrientation" = 0x0 + | | | | | "IOProviderClass" = "AppleHPMDeviceHAL" + | | | | | "IOAccessoryID" = 0x64 + | | | | | "IOAccessoryUSBModeType" = 0x4 + | | | | | "FeaturesSupported" = ("Power In") + | | | | | "IOFunctionParent00000124" = <> + | | | | | "IOAccessoryManagerSleepPower" = No + | | | | | "HChk" = <630000000000> + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "PortNumber" = 0x1 + | | | | | "TransportsActive" = () + | | | | | "Plug Event Count" = 0x23 + | | | | | "UserAuthorizationStatus" = 0x0 + | | | | | "AccessoryMode" = 0x0 + | | | | | "SOP UVDM Update Count" = 0x0 + | | | | | "IOAccessoryDetect" = No + | | | | | } + | | | | | + | | | | +-o CC + | | | | | { + | | | | | "TRM_TransportSupervised" = No + | | | | | "ParentPortType" = 0x11 + | | | | | "ParentPortBuiltIn" = Yes + | | | | | "ParentBuiltInPortType" = 0x11 + | | | | | "AuthenticationStatus" = 0x0 + | | | | | "HashStatus" = 0x0 + | | | | | "HashStatusDescription" = "Not Set" + | | | | | "Index" = 0x0 + | | | | | "Tunneled" = No + | | | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | | | "TransportType" = 0x1 + | | | | | "AuthenticationStatusDescription" = "Idle" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "IOUserClientClass" = "IOPortTransportUserClient" + | | | | | "ParentPortNumber" = 0x1 + | | | | | "DriverStatusDescription" = "Not Monitored" + | | | | | "AuthorizationRequired" = No + | | | | | "Metadata" = {} + | | | | | "AuthenticationRequired" = No + | | | | | "TransportTypeDescription" = "CC" + | | | | | "AuthorizationStatus" = 0x0 + | | | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | | | "TransportDescription" = "Port-MagSafe 3@1/CC" + | | | | | "DriverStatus" = 0x0 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Active" = No + | | | | | "AuthorizationStatusDescription" = "Not Required" + | | | | | } + | | | | | + | | | | +-o Power In + | | | | | { + | | | | | "Active" = No + | | | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | | | "Metadata" = {} + | | | | | "Description" = "Port-MagSafe 3@1/Power In" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "IOUserClientClass" = "IOPortFeatureUserClient" + | | | | | "FeatureTypeDescription" = "Power In" + | | | | | "ParentPortType" = 0x11 + | | | | | "ParentBuiltInPortType" = 0x11 + | | | | | "ParentPortNumber" = 0x1 + | | | | | "FeatureType" = 0x3 + | | | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | | | } + | | | | | + | | | | +-o USB-PD [*] + | | | | | { + | | | | | "PowerSourceType" = 0x2 + | | | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | | | "Metadata" = {} + | | | | | "Description" = "Port-MagSafe 3@1/Power In/USB-PD" + | | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | | "Priority" = 0x3e8 + | | | | | "ParentFeatureType" = 0x3 + | | | | | "PowerSourceOptions" = [{"Max Current (mA)"=0x7c6,"Max Power (mW)"=0x749a,"UUID"="F3CBB308-777E-4A4D-A03E-E914495F7F57","Voltage (mV)"=0x3a98,"Class"="IOPortFeaturePowerSourceOptionFixed"},{"Max Current (mA)"=0x5d2,"Max Power (mW)"=0x7468,"UUID"="FDB13C19-B4CE-4004-ABA8-641C3BB98494","Voltage (mV)"=0x4e20,"Class"="IOPortFeaturePowerSourceOptionFixed"},{"Max Current (mA)"=0xb90,"Max Power (mW)"=0x39d0,"UUID"="A8C3578C-D73D-4F2E-903A-92E1C277E793","Voltage (mV)"=0x1388,"Class"="IOPortFeaturePowerSourceOptionFixed"},$ + | | | | | "PowerSourceName" = "USB-PD" + | | | | | "Owner" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/smc@DC400000/AppleASCWrapV6/iop-smc-nub/RTBuddy(SMC)/SMCEndpoint1/AppleSMCKeysEndpoint/smc-charger-util/AppleSMCChargerUtil" + | | | | | "WinningPowerSourceOption" = {"Max Current (mA)"=0x5d2,"Max Power (mW)"=0x7468,"UUID"="FDB13C19-B4CE-4004-ABA8-641C3BB98494","Voltage (mV)"=0x4e20,"Class"="IOPortFeaturePowerSourceOptionFixed"} + | | | | | "ParentPortType" = 0x11 + | | | | | "ParentBuiltInPortType" = 0x11 + | | | | | "ParentPortNumber" = 0x1 + | | | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | | | } + | | | | | + | | | | +-o Brick ID + | | | | { + | | | | "PowerSourceType" = 0x0 + | | | | "ParentPortTypeDescription" = "MagSafe 3" + | | | | "Metadata" = {} + | | | | "Description" = "Port-MagSafe 3@1/Power In/Brick ID" + | | | | "ParentBuiltInPortNumber" = 0x1 + | | | | "Priority" = 0xfffffffffffffe0c + | | | | "ParentFeatureType" = 0x3 + | | | | "PowerSourceOptions" = [{"Max Current (mA)"=0x1f4,"Max Power (mW)"=0x9c4,"UUID"="128DBB29-21E7-4DFD-A848-95157D83CDDD","Voltage (mV)"=0x1388,"Class"="IOPortFeaturePowerSourceOptionFixed"}] + | | | | "PowerSourceName" = "Brick ID" + | | | | "Owner" = "IOService:/AppleARMPE/arm-io@10F00000/AppleH15IO/smc@DC400000/AppleASCWrapV6/iop-smc-nub/RTBuddy(SMC)/SMCEndpoint1/AppleSMCKeysEndpoint/smc-charger-util/AppleSMCChargerUtil" + | | | | "ParentPortType" = 0x11 + | | | | "ParentBuiltInPortType" = 0x11 + | | | | "ParentPortNumber" = 0x1 + | | | | "ParentBuiltInPortTypeDescription" = "MagSafe 3" + | | | | } + | | | | + | | | +-o AppleHPMUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24257, UARPUpdaterServi" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o aop-spmi0@E4894000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,<96010000>,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2f4894000,"length"=0x4000}),({"address"=0x2f4884000,"length"=0x4000}),({"address"=0x2f4880000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D5" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D5","IOInterruptController00000069","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000000D5","IOInterruptController000$ + | | | | "name" = <616f702d73706d693000> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <000100009601000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <004089e4000000000040000000000000004088e4000000000040000000000000000088e4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="aop-spmi0","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D5" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o spmi-wifibt@E + | | | { + | | | "reg" = <0e0000000300000000000000040000000000000000000000> + | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | "interrupt-parent" = + | | | "name" = <73706d692d77696669627400> + | | | "AAPL,phandle" = + | | | } + | | | + | | +-o aop-spmi1@E48D4000 + | | | | { + | | | | "queue-depth" = <0001000000010000> + | | | | "IOInterruptSpecifiers" = (<00010000>,<9a010000>,<19010000>,<04010000>,<05010000>,<08010000>,<09010000>,<0a010000>,<0c010000>,<0d010000>,<17010000>,<18010000>,<1a010000>,<1b010000>,<1c010000>,<1d010000>,<10010000>,<11010000>,<06010000>,<07010000>,<0b010000>) + | | | | "other-interrupts" = <06010000070100000b010000> + | | | | "#address-cells" = <00000000> + | | | | "fatal-interrupts" = <19010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x2f48d4000,"length"=0x4000}),({"address"=0x2f48c4000,"length"=0x4000}),({"address"=0x2f48c0000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "InterruptControllerName" = "IOInterruptController000000D7" + | | | | "IOInterruptControllers" = ("IOInterruptController000000D7","IOInterruptController00000069","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000$ + | | | | "name" = <616f702d73706d693100> + | | | | "interrupt-parent" = + | | | | "error-interrupts" = <040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d0100001001000011010000> + | | | | "interrupt-controller" = <> + | | | | "compatible" = <73706d692c67656e3300> + | | | | "interrupts" = <000100009a01000019010000040100000501000008010000090100000a0100000c0100000d01000017010000180100001a0100001b0100001c0100001d010000100100001101000006010000070100000b010000> + | | | | "#interrupt-cells" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <696e746572727570742d636f6e74726f6c6c657200> + | | | | "reg" = <00408de400000000004000000000000000408ce400000000004000000000000000008ce4000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleGen3SPMIController + | | | | { + | | | | "IOClass" = "AppleGen3SPMIController" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSPMI" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "IOUserClientClass" = "AppleARMSPMIControllerUserClient" + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "spmi,gen3" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="aop-spmi1","IOReportChannels"=((0x4661756c74303032,0x180000001,"SOC-TxFltr Count"),(0x4661756c74303033,0x180000001,"ExtOp-WR Count"),(0x4661756c74303034,0x180000001,"ExtOp-RD Count"),(0x4661756c74303035,0x180000001,"BusPr-CmdPrty-BOM Count"),(0x4661756c74303036,0x180000001,"BusPr-CmdPrty-NoBOM Count"),(0x4661756c74303037,0x180000001,"BusPr-AdrPrty Count"),(0x4661756c74303038,0x180000001,"BusPr-CmdUnrecog Count"),(0x4661756c74303039,0x180000001,"BusPr-ExtColl Count"),(0x4661756c7430313$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IONameMatched" = "spmi,gen3" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSPMI" + | | | | "InterruptControllerName" = "IOInterruptController000000D7" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSPMI" + | | | | } + | | | | + | | | +-o stockholm-spmi@9 + | | | | { + | | | | "nfccModel" = <60000000> + | | | | "compatible" = <6e66632c7072696d6172792c73706d6900> + | | | | "interrupt-parent" = + | | | | "AAPL,phandle" = + | | | | "interrupts" = + | | | | "reg" = <090000000300000000000000040000000000000000000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "IOInterruptControllers" = ("IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7","IOInterruptController000000D7") + | | | | "device_type" = <73746f636b686f6c6d2d73706d6900> + | | | | "IOUserClientClass" = "AppleARMSPMIDeviceUserClient" + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200050000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200050001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200050002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200050003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200050004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IO$ + | | | | "IOReportLegendPublic" = Yes + | | | | "required-functions" = <737570706f72745f646174615f6f7665725f73706d6900737570706f72745f686f73745f77616b655f73706d6900> + | | | | "#num-spmi-interrupts" = <07000000> + | | | | "name" = <73746f636b686f6c6d2d73706d6900> + | | | | "hw-config-tlvs" = <4131393330313030413139343031303200> + | | | | } + | | | | + | | | +-o AppleStockholmSPMI + | | | | { + | | | | "IOClass" = "AppleStockholmSPMI" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleStockholmControl" + | | | | "IOProviderClass" = "AppleARMSPMIDevice" + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOPlatformWakeAction" = 0x1f4 + | | | | "nfc.log" = Yes + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "nfc,primary,spmi" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "AppleStockholmControl" + | | | | "stockholm-spmi-data-socket" = Yes + | | | | "IOPlatformSleepAction" = 0x1f4 + | | | | "IONameMatched" = "nfc,primary,spmi" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleStockholmControl" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleStockholmControl" + | | | | } + | | | | + | | | +-o stockholm + | | | | { + | | | | "device_type" = <73746f636b686f6c6d00> + | | | | "required-gpios" = <737570706f72745f76656e61626c6500737570706f72745f7669727475616c5f6770696f00> + | | | | "function-enable" = <9f00000034574b706630506700008000> + | | | | "name" = <73746f636b686f6c6d00> + | | | | "AAPL,phandle" = + | | | | "compatible" = <6e66632c7072696d6172792c6770696f00> + | | | | } + | | | | + | | | +-o AppleStockholmControl + | | | { + | | | "IOClass" = "AppleStockholmControl" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleStockholmControl" + | | | "IOProviderClass" = "IOService" + | | | "IOPowerManagement" = {"DesiredPowerState"=0x1,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | "IOUserClientClass" = "AppleStockholmControlUserClient" + | | | "nfc.log" = Yes + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "nfc,primary,gpio" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleStockholmControl" + | | | "IONameMatched" = "nfc,primary,gpio" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleStockholmControl" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleStockholmControl" + | | | } + | | | + | | +-o lcd0-sac + | | | { + | | | "device_type" = <6c7064702d73616300> + | | | "function-saca_cdi0" = <260100004143415330696463> + | | | "function-saca_edp0" = <260100004143415330706465> + | | | "AAPL,phandle" = + | | | "name" = <6c6364302d73616300> + | | | } + | | | + | | +-o disp0@7C000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<24020000>,<37020000>,<27020000>,<26020000>,<25020000>,<2c020000>,<22020000>,<30020000>,<2b020000>) + | | | | "aot-power" = <01000000> + | | | | "clock-gates" = <91010000910100009201000093010000> + | | | | "dot-pitch" = + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28c000000,"length"=0x690000}),({"address"=0x28c800000,"length"=0x690000}),({"address"=0x28d320000,"length"=0x4000}),({"address"=0x28d344000,"length"=0x4000}),({"address"=0x28e800000,"length"=0x800000}),({"address"=0x2d03d0000,"length"=0x4000})) + | | | | "display-default-color" = <00000000> + | | | | "function-bw_req_interrupt0" = <82000000515249422b0000002200000001000000> + | | | | "temperature-compensation" = <00000000> + | | | | "display-timing-info" = <0004000032000000330000003200000058020000da0000000600000032000000> + | | | | "function-pmu_ram_access" = <9f000000556d61724c41434401004000> + | | | | "max-scaling-ratio" = <00000400> + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <646973703000> + | | | | "interrupt-parent" = <69000000> + | | | | "function-pcc_update" = <2501000055434350> + | | | | "compatible" = <64697370302c743831323200> + | | | | "clock-ids" = <59010000a0010000> + | | | | "interrupts" = <24020000370200002702000026020000250200002c02000022020000300200002b020000> + | | | | "bics-param-set" = <85000000> + | | | | "color-accuracy-index" = <85000000> + | | | | "device_type" = <646973706c61792d73756273797374656d00> + | | | | "KSF_version" = <01000000> + | | | | "power-gates" = <91010000910100009201000093010000> + | | | | "reg" = <0000007c0000000000006900000000000000807c0000000000006900000000000000327d0000000000400000000000000040347d0000000000400000000000000000807e00000000000080000000000000003dc0000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleCLCD2 + | | | | { + | | | | "IOMFBScalingLimits" = {"YUVLayer_MaxScale"=0x4,"YUVLayer_MinScaleFraction"=0x2,"RGBLayer_MinScaleFraction"=0x2,"RGBLayer_MaxScale"=0x4} + | | | | "GPBandwidth" = 0x0 + | | | | "TemperatureStructVersion2D" = 0x1 + | | | | "AOTEnableOf" = 0x251d36d5e1f7 + | | | | "IOMFBBrightnessCompensationEnable" = Yes + | | | | "PanelLayout" = 0x0 + | | | | "displayOnContinuousTimestamp" = 0x251d37cbaa2f + | | | | "IOMFBSupportsGPLite" = Yes + | | | | "PCCStabilityThresholdAOT" = 0xc350 + | | | | "IOMFBNumLayers" = {"FullFrameRequired"=0x0,"MaxNumLayers"=0x3} + | | | | "IOMFBDigitalDimmingLevel" = 0x1fec9 + | | | | "DispPerfState" = 0x0 + | | | | "IOMFB_KTRACE_API_VERSION" = "3.1" + | | | | "APTDefaultGrayValue" = 0xff + | | | | "IOMFBStatsTapPoint" = 0x1 + | | | | "enableAmbientLightSensorStatistics" = No + | | | | "APTPDCTemperature" = 0x17cccc + | | | | "IONameMatch" = ("disp0,t8122","dispext0,t8122") + | | | | "enable2DTemperatureCorrection" = No + | | | | "IOClass" = "AppleCLCD2" + | | | | "DebugUInt32" = 0x0 + | | | | "IOMFBBrightnessLevelMA" = 0xffffffffffffffff + | | | | "PixelCaptureBlockMask" = 0x0 + | | | | "TimingElements" = ({"StandardType"=0x0,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0xa50,"Active"=0xa00,"PixelRepetition"=0x0,"PreciseSyncRate"=0x68f0ae,"BackPorch"=0x28,"SyncWidth"=0x20,"FrontPorch"=0x8,"SyncPolarity"=0x1,"SyncRate"=0x690000},"VerticalAttributes"={"Total"=0x6d5,"Active"=0x680,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0006,"BackPorch"=0x2c,"SyncWidth"=0x8,"FrontPorch"=0x21,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"UnsafeColo$ + | | | | "IOMFBMaxSrcPixels" = {"PixelClock"=0x2a704200,"MaxSrcRectTotal"=0x1680000,"MaxSrcBufferHeight"=0x4000,"IOMFBMaxCompressedSizeInBytes"=0x0,"IOMFBCompressionSupport"=0x1,"VideoClock"=0x841a9a8,"MaxSrcRectWidth"=0x1400,"MaxSrcBufferWidth"=0x4000,"MaxVideoSrcDownscalingWidth"=0x66cc} + | | | | "APTEnableCA" = No + | | | | "CMPixelCaptureLocation" = 0xd + | | | | "IOMFBIntDcpUsedForExtWhenLidClose" = Yes + | | | | "RuntimeProperty::frameInfoTraceEnable" = No + | | | | "APTEnableEvents" = No + | | | | "enableDBMMode" = Yes + | | | | "enableBLMSloper" = Yes + | | | | "color-accuracy-index" = 0x85 + | | | | "PreferredTimingElements" = ({"StandardType"=0x0,"DiscreteMediaRefreshRates"=(),"ElementType"=0x0,"IsSplit"=No,"IsPromoted"=No,"IsInterlaced"=No,"HorizontalAttributes"={"Total"=0xa50,"Active"=0xa00,"PixelRepetition"=0x0,"PreciseSyncRate"=0x68f0ae,"BackPorch"=0x28,"SyncWidth"=0x20,"FrontPorch"=0x8,"SyncPolarity"=0x1,"SyncRate"=0x690000},"VerticalAttributes"={"Total"=0x6d5,"Active"=0x680,"PixelRepetition"=0x0,"PreciseSyncRate"=0x3c0006,"BackPorch"=0x2c,"SyncWidth"=0x8,"FrontPorch"=0x21,"SyncPolarity"=0x1,"SyncRate"=0x3c0000},"U$ + | | | | "IOMFBWPASupported" = 0x1 + | | | | "enablePixelCapture" = No + | | | | "APTEnableCDFD" = No + | | | | "PDCSaveRepeatUnstablePCC" = Yes + | | | | "IOMFBSupportsICC" = Yes + | | | | "NormalModeActive" = Yes + | | | | "BLMPowergateEnable" = Yes + | | | | "AmbientBrightness" = 0x3790e98 + | | | | "DisableBConBoot" = 0x0 + | | | | "DisplayPipeStrideRequirements" = {"StrideLinearHorizontal"=0x40,"StrideLinearVertical"=0x1} + | | | | "requestPixelBacklightModulation" = No + | | | | "set0DTempSensorValue" = 0xffffffffffffffff + | | | | "GP0PixelCaptureLocation" = 0x9 + | | | | "CMDegammaMethod" = 0x0 + | | | | "CECorrectionFactor" = 0x10000 + | | | | "MaxVideoSrcDownscalingWidth" = 0x66cc + | | | | "IOMFBTemperatureCompensationEnable" = Yes + | | | | "PCCCabalEnable" = Yes + | | | | "DisableTempComp" = No + | | | | "IOMFBIndicatorNitsCap" = 0x20caf5c + | | | | "enableLinearToPanel" = Yes + | | | | "enableDefaultTemperatureCorrection" = No + | | | | "PDCSettleCount" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "BLMStandbyEnable" = No + | | | | "ALSSSumsPrecision" = 0x24 + | | | | "IdleCachingMethod" = 0x2 + | | | | "APTResetCA" = No + | | | | "BLMAHMode" = 0x2 + | | | | "IOMFBContrastEnhancerStrength" = 0xf5a + | | | | "AODFixedRR" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "QMSVRREnableConfig" = 0x0 + | | | | "IOMFBSupportsYFlip" = Yes + | | | | "overdriveCompCutoff" = 0x0 + | | | | "displayOnTimestamp" = 0x5ab93c1de23 + | | | | "DisplayPipePlaneBaseAlignment" = {"DefaultStride"=0x0,"LinearX_Alignment"=0x40,"LinearY_Alignment"=0x1,"PlaneBaseAlignmentLinear"=0x40} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "BacklightMatching" = {"IOPropertyMatch"={"backlight-control"=Yes}} + | | | | "maxPeakBpp" = 0x0 + | | | | "GPLiteMaxSrcSz" = 0x0 + | | | | "maxAverageBpp" = 0x0 + | | | | "IOMFBBrightnessLevelIDAC" = 0xffffffffffffffff + | | | | "IOMFBIndicatorBrightnessNits" = 0x10000 + | | | | "PCC2DEnable" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "ean-mode-caching" = 0x0 + | | | | "PDCGlobalTemp" = 0x0 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "APTPDCEnable" = Yes + | | | | "APTEnableConfigExpired" = Yes + | | | | "AODWaitForWalkdown" = 0x1 + | | | | "APTPDCEnablePM" = 0x1 + | | | | "enableGPAlphaDiv" = Yes + | | | | "use0DSensorFor2DTemp" = No + | | | | "IOMFB Debug Info" = {} + | | | | "IOMFBSupportsXFlip" = Yes + | | | | "edrScaleinGP" = Yes + | | | | "PCCEnable" = Yes + | | | | "darkBoot" = No + | | | | "APTPanicOnStuckPolarity" = No + | | | | "AOTEnable" = No + | | | | "ADP is generic pipe" = Yes + | | | | "BLMPLimitCfg" = 0x1 + | | | | "ALSSRGBCoeffsPrecision" = 0x8 + | | | | "BLMVLEDManual" = 0xdc + | | | | "ACSSSupported" = No + | | | | "Brightness_Scale" = 0x10e17 + | | | | "ALSSChannelCount" = 0x4 + | | | | "IOMFBTestBacklightDimValue" = 0xb5b5 + | | | | "DisplayClock" = 0xabbc2f0 + | | | | "PDCDataVersion" = 0x1b5c + | | | | "BLNitsCap" = 0x174a570 + | | | | "APTPanicOnChargeParity" = No + | | | | "IOMFBBICSType" = 0x0 + | | | | "BlendPixelCaptureLocation" = 0x1 + | | | | "PCCTrinityEnable" = Yes + | | | | "M3TimingParameters" = {"subframe-interrupt-time-lines"=0x66c,"subframe-duration-nclks"=0x61a7f,"display-lead-time-nclks"=0x6443,"initial-vbi-advance-lines"=0x2,"initial-subframe-irq-time-lines"=0x66c,"vbi-advance-lines"=0x2} + | | | | "GP1PixelCaptureLocation" = 0x9 + | | | | "APTFixedRR" = 0x0 + | | | | "SPLCSupported" = No + | | | | "ChargeValuesPublish" = No + | | | | "PixelClock" = 0x2a704200 + | | | | "FFR_table_index" = 0x0 + | | | | "bics_mode" = 0x0 + | | | | "PixelCaptureConfig" = 0x0 + | | | | "enableDisplayTMDpc" = Yes + | | | | "IONameMatched" = "disp0,t8122" + | | | | "ALSSWindowCount" = 0x40 + | | | | "clockRatio" = 0x523d7 + | | | | "enableDither" = Yes + | | | | "NormalModeEnable" = Yes + | | | | "SupportsAOT1HzOptimizations" = No + | | | | "enableDarkEnhancer" = Yes + | | | | "uniformity2D" = Yes + | | | | "FrameInfoForRepeats" = No + | | | | "IOMFBSecureIndicatorFactor" = 0x10000 + | | | | "BLMAHUPCount" = 0x0 + | | | | "SupportsAOTPowerSaving" = No + | | | | "DisplayAttributes" = {"TiledDisplayInfo"={},"ProductAttributes"={"ManufacturerID"="00-10-fa","ProductID"=0x333430313441,"LegacyManufacturerID"=0x610},"DisplayAllocation"={"ExtraPipes"=0x0,"MainUFP"=0x0,"UseSingleTile"=No,"PeerUFP"=0x0}} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "ColorElements" = ({"ElementData"=<0800000000000000000000001000000000000000000000000000000000000000>,"StandardType"=0x0,"Score"=0x3ad67,"IsVirtual"=No,"ID"=0x1,"PixelEncoding"=0x0,"ElementType"=0x1,"SupportsDSC"=0x0,"EOTF"=0x0,"Colorimetry"=0x10,"DynamicRange"=0x0,"Depth"=0x8}) + | | | | "ProxScanPosition" = 0x0 + | | | | "PDCSaveLongFrames" = Yes + | | | | "ALSSSupported" = No + | | | | "APTEnableDefaultGray" = Yes + | | | | "enableLAC" = Yes + | | | | "defaultTemperatureCorrectionValue" = 0xffffffffffffffff + | | | | "IOMFBSecureContentFactor" = 0x10000 + | | | | "IdleState" = 0x5 + | | | | "QoSDebug" = 0x1 + | | | | "VideoClock" = 0x841a9b0 + | | | | "ProxScanPlan" = 0xffffffffffffffff + | | | | "IOMFBBrightnessLevel" = 0x174a570 + | | | | "DCPIndex" = 0x0 + | | | | "InitialPanelTemperature" = 0x1e07ae + | | | | "forcePixelBacklightModulation" = 0x2 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "BLMAHOutputFreq" = 0x0 + | | | | "APTEnablePRC" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "SystemConsoleMode" = No + | | | | "brightnessCorrectionB" = 0x10000 + | | | | "enableGPDeringing" = Yes + | | | | "ADCLLoadAll" = No + | | | | "ForceSecureAnimation" = No + | | | | "IOMatchedAtBoot" = Yes + | | | | "APTPanicOnChargeOOB" = No + | | | | "APTEventsMask" = 0x0 + | | | | "W40a_Blending_OK" = 0x1 + | | | | "BLMAHOutputLogEnable" = No + | | | | "Panel_ID" = "FP1503305EK25YTAY+5A2D4Y0441A2HF+PROD+B451345214525+3550321650322150323A503230+Y11241112Y11541116+6861B2437GJ53700M49FT4497A5172099+S40J68AHZXS40J68AHZXS40J68AHZXS40J68AH" + | | | | "APTEnableLogs" = No + | | | | "WPCPixelCaptureLocation" = 0x2 + | | | | "BLMAHStatsLogEnable" = No + | | | | "PCCEnableLogs" = No + | | | | "APTDevice" = No + | | | | "PCCStabilityThreshold" = 0x9 + | | | | "RuntimeProperty::registerTraceEnable" = No + | | | | "IOMFBDisplayRefresh" = {"displayRefreshStepMachTime"=0x0,"displayRefreshStep"=0x0,"displayMaxRefreshInterval"=0x4443914,"displayMinRefreshInterval"=0x4443914,"displayMinRefreshIntervalMachTime"=0x61a7f,"displayMaxRefreshIntervalMachTime"=0x61a7f} + | | | | "BlendOutputCSCMethod" = 0x0 + | | | | "IOMFBSupports2DBL" = No + | | | | "APTLimitRefreshRate" = No + | | | | "brightnessCorrection" = 0x10000 + | | | | "IOFunctionParent000000DB" = <> + | | | | "ChargeValuesReset" = No + | | | | "DisableDisplayOptimize" = 0x0 + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | } + | | | + | | +-o dcp0-expert + | | | | { + | | | | "compatible" = <6463702d6578706572742d763100> + | | | | "device_type" = <6463702d65787065727400> + | | | | "join-power-plane" = <01000000> + | | | | "name" = <646370302d65787065727400> + | | | | "role" = <44435000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleDCPExpert + | | | { + | | | "IOClass" = "AppleDCPExpert" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1} + | | | "DCPExpertPowerState" = 0x1 + | | | "IOFunctionParent000000DC" = <> + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dcp-expert-v1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "DCPPowerState" = 0x4 + | | | "DCPPowerAssertionCount" = 0x1 + | | | "BootComplete" = Yes + | | | "DCPPowerRetained" = No + | | | "IONameMatched" = "dcp-expert-v1" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | "role" = "DCP" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | "DebugState" = () + | | | } + | | | + | | +-o dcp@7EC00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<1a020000>,<19020000>,<1c020000>,<1b020000>) + | | | | "hdcp-channels" = <0500000006000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <94010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28ec00000,"length"=0x6c000}),({"address"=0x28e850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-parent" = <67000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <64637000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <1a020000190200001c0200001b020000> + | | | | "clock-ids" = <> + | | | | "hdcp-parent" = <8c000000> + | | | | "audio" = + | | | | "dp-switch-ufp-endpoint" = <00000000> + | | | | "dp-switch-ufp-port" = <00000000> + | | | | "role" = <44435000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <64637000> + | | | | "power-gates" = <94010000> + | | | | "reg" = <0000c07e0000000000c00600000000000000857e000000000040000000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "DCP" + | | | | } + | | | | + | | | +-o iop-dcp-nub + | | | | { + | | | | "uuid" = <38453833323631412d354343412d334543422d413442332d33414441444645333531464200> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f473b756e6b6e6f776e3b756e6b6e6f776e3b756e6b6e6f776e3b756e6b6e6f776e00> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "pre-loaded" = <01000000> + | | | | "KDebugCoreID" = 0x10 + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0080220000010000000000000000000000409c050001000000006c000100000000408ce10301000000006c0000000000004008060001000000002a00000000000000d30a0001000000009600000000000000d30a00010000004002000a0000000080b9e503010000ffffffffffffffff000096000001000000000001020000000040b9e503010000ffffffffffffffff000099010001000000400000020000000040ade503010000ffffffffffffffff004099010001000000000c00020000000040b6e103010000ffffffffffffffff0040a501000100000000f70302000000> + | | | | "name" = <696f702d6463702d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(DCP) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCP","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IOHibernateState" = <00000000> + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCP","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="DCP","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="DCP","IOReportChannels"=((0x5254536c70436e74,0x100020001,"Sleep $ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o DCPEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint1 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o system + | | | | | { + | | | | | "reg-stream-block-size" = 0x800 + | | | | | "system-service" = Yes + | | | | | "interface-id" = 0x5 + | | | | | "role" = "DCP" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f1,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o powerlog-service + | | | | | { + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x10307e,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0xf,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "interface-id" = 0x7 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f1,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "role" = "DCP" + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKEndpointInterfaceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = "com.apple.afk.user" + | | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "DebugState" = {"dataQueue"={"queueSize"=0x3fcc,"enqueueTimestamp"=0x251e6ce12719,"SpaceAvailableCnt"=0x0,"tail"=0x1f38,"notifySpaceAvailable"=0x0,"head"=0x1f38},"EnsureDescriptorDelivery"=0x1,"SessionCount"=0x0,"EnsureCommandDelivery"=0x1,"ReportCallback"=0x1,"EnsureReportDelivery"=0x0,"CommandCallback"=0x0,"DescriptorCallback"=0x1} + | | | | } + | | | | + | | | +-o DCPEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint2 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEndpoint2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCP" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint3 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dcpexpert-service + | | | | { + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f1,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCP" + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint4 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x1,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCP" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint5 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x6,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-controller-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0xd + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x52f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-controller-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0xf + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x52f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispextE:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x11 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdp-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x13 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispextE:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x15 + | | | | | | "EPICUnit" = 0x1 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpav-controller-epic:1" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdp-controller-epic: + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x17 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "dispextE:dcpdp-controller-epic:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f2,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPControllerProxy + | | | | { + | | | | "IOClass" = "DCPDPControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint6 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-power-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXPowerControllerShared" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x1 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-power-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f3,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpav-power-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVPowerControllerProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-power-epic"} + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "DCPAVPowerControllerProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "Embedded" + | | | | "Unit" = 0x0 + | | | | } + | | | | + | | | +-o DCPEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint7 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-sac-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPDisplaySACController" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x1 + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-sac-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x378e5,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x2,"enqueued-reports"=0x1,"enqueued-commands"=0x9a,"isOpen"=0x1,"enqueued-responses"=0x2,"handled-responses"=0x9a} + | | | | | "EPICName" = "dcpav-sac-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVRemoteSACControllerProxy + | | | | { + | | | | "IOClass" = "DCPAVRemoteSACControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-sac-epic"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint8 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x14e,"termination-events"=0x14c} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-device-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x299 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-device-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e1cf,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpav-device-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVDeviceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVDeviceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-device-epic"} + | | | | | "IOUserClientClass" = "DCPAVDeviceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVDeviceUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-device-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPDPDevice" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x29b + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpdp-device-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e1c0,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | "EPICName" = "dcpdp-device-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPDeviceProxy + | | | | { + | | | | "IOClass" = "DCPDPDeviceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-device-epic"} + | | | | "IOUserClientClass" = "DCPDPDeviceProxyUserClient" + | | | | "BranchIEEEOUI" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "SinkDeviceID" = "A41043" + | | | | "SinkIEEEOUI" = 0xfa1000 + | | | | "IODPDeviceUserInterfaceSupported" = Yes + | | | | "BranchDeviceID" = "" + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint9 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x14e,"termination-events"=0x14c} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-service-epic:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPAgileCDIDPDisplay" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x299 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpav-service-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e1c0,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpav-service-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVServiceProxy + | | | | | { + | | | | | "IOClass" = "DCPAVServiceProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-service-epic"} + | | | | | "IOAVServiceUserInterfaceSupported" = Yes + | | | | | "IOUserClientClass" = "DCPAVServiceProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "Embedded" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | } + | | | | | + | | | | +-o disp0:dcpdp-service-epic:0 + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPAgileCDIDPDisplay" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x29b + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpdp-service-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e1c0,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x2,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-service-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPServiceProxy + | | | | { + | | | | "IOClass" = "DCPDPServiceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-service-epic"} + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOUserClientClass" = "DCPDPServiceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "Embedded" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPServiceUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint10 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0xa7,"termination-events"=0xa6} + | | | | | } + | | | | | + | | | | +-o disp0:dcpav-video-interface-epi + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "DCPAVSimpleVideoInterface" + | | | | | "EPICLocation" = "Embedded" + | | | | | "interface-id" = 0x14d + | | | | | "EPICUnit" = 0x0 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "disp0:dcpav-video-interface-epic:0" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x0,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e1ac,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpav-video-interface-epic" + | | | | | } + | | | | | + | | | | +-o DCPAVVideoInterfaceProxy + | | | | { + | | | | "IOClass" = "DCPAVVideoInterfaceProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpav-video-interface-epic"} + | | | | "IOUserClientClass" = "DCPAVVideoInterfaceProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOAVVideoInterfaceUserInterfaceSupported" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "Embedded" + | | | | "Unit" = 0x0 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint11 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-port-epic:0 + | | | | | | { + | | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "MaxPixelWidth" = 0x1400 + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f5,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "EPICUnit" = 0x0 + | | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | | "role" = "DCP" + | | | | | | "ResourceAvailableDefault" = No + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x9a,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x9a,"handled-responses"=0x0} + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "interface-name" = "dispextE:dcpdptx-port-epic:0" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | | { + | | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Location" = "External" + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Unit" = 0x0 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcp-nub) + | | | | | { + | | | | | "DisplayHints" = {} + | | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000491a3406000000000300000001000000>,"EventTime"=0x6341a49,"EventClass"="SetState"}) + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-port-epic:1 + | | | | | { + | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x3 + | | | | | "MaxPixelWidth" = 0x1400 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f5,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "EPICUnit" = 0x1 + | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | "role" = "DCP" + | | | | | "ResourceAvailableDefault" = No + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x9a,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x9a,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "interface-name" = "dispextE:dcpdptx-port-epic:1" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | { + | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcp-nub) + | | | | { + | | | | "DisplayHints" = {} + | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<2100000018000000d3a73406000000000300000001000000>,"EventTime"=0x634a7d3,"EventClass"="SetState"}) + | | | | } + | | | | + | | | +-o DCPEndpoint12 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint12 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x3,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0:dcpdptx-hdcp-interface:0 + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "Embedded" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "disp0:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x52f,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "Embedded" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-hdcp-interface + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x3 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCP" + | | | | | | "interface-name" = "dispextE:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispextE:dcpdptx-hdcp-interface + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXControllerShared" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x5 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCP" + | | | | | "interface-name" = "dispextE:dcpdptx-hdcp-interface:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "External" + | | | | "Unit" = 0x1 + | | | | } + | | | | + | | | +-o DCPEndpoint13 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint13 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o CBAPToDCPService + | | | | | { + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x26,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x26} + | | | | | "interface-id" = 0x1 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "role" = "DCP" + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKEndpointInterfaceUserClient + | | | | { + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | | "IOUserClientEntitlements" = "com.apple.afk.user" + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "DebugState" = {"dataQueue"={"queueSize"=0x3fcc,"enqueueTimestamp"=0x0,"SpaceAvailableCnt"=0x0,"tail"=0x0,"notifySpaceAvailable"=0x0,"head"=0x0},"EnsureDescriptorDelivery"=0x1,"SessionCount"=0x0,"EnsureCommandDelivery"=0x1,"ReportCallback"=0x0,"EnsureReportDelivery"=0x0,"CommandCallback"=0x0,"DescriptorCallback"=0x0} + | | | | } + | | | | + | | | +-o DCPEndpoint18 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEndpoint18 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCP" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o md-manager + | | | | | { + | | | | | "interface-id" = 0x1 + | | | | | "epi-is-desc-mgr" = Yes + | | | | | "role" = "DCP" + | | | | | "interface-name" = "md-manager" + | | | | | "md-allocator" = "md-al-remote" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x6,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKLocalMemoryDescriptorManager + | | | | { + | | | | "IOClass" = "AFKLocalMemoryDescriptorManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"md-allocator"="md-al-remote"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleFirmwareKit" + | | | | "role" = "DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "DebugState" = {"Descs"=[],"FreeReqs"=()} + | | | | "md-allocator" = "md-al-local" + | | | | } + | | | | + | | | +-o DCPEndpoint24 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AppleDCPLinkServiceSoC + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOClass" = "AppleDCPLinkServiceSoC" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("DCPEndpoint24","DCPEXTEndpoint24") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "DCPEndpoint24" + | | | | "IOUserClientClass" = "AppleDCPLinkService" + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | { + | | | | "IOProbeScore" = 0x3e8 + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "RTBuddyService" + | | | | "IOClass" = "RTBuddyService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "RTBuddy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "role" = "DCP" + | | | | } + | | | | + | | | +-o AFKFirmwareService + | | | { + | | | "IOPropertyMatch" = {"role"="DCP"} + | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | "IOProviderClass" = "RTBuddyService" + | | | "IOClass" = "AFKFirmwareService" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "Role" = "DCP" + | | | } + | | | + | | +-o dart-dcp@7D30C000 + | | | | { + | | | | "dart-id" = <0c000000> + | | | | "IOInterruptSpecifiers" = (<2d020000>) + | | | | "bypass-15" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x28d30c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525441534300> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "l2-tt-5" = <0040ecff030100000200000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d64637000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <050000000f000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <2d020000> + | | | | "pt-region-5" = <0040ecff030100000040f0ff03010000> + | | | | "dapf-instance-0" = <000070d002000000008071d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000004072d002000000008072d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000000d002000000808607d0020000002000000000000000000000000000000000000000000000000000000000000000000301000000000000003cd00200000000003fd002000000200000000000000000000000000000000000000000000000000000000000000000030100000000000000e0ed02000000ffffefed0200000020000000000000000000000000000000$ + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "retention-force-quiesce" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "apf-bypass-15" = <> + | | | | "reg" = <00c0307d000000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000DF" = <> + | | | | } + | | | | + | | | +-o mapper-dcp@5 + | | | | { + | | | | "name" = <6d61707065722d64637000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <05000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <0000960000010000000096010001000000009901000100000040320600010000> + | | | } + | | | + | | +-o dart-disp0@7D304000 + | | | | { + | | | | "apf-bypass-4" = <> + | | | | "page-size" = <00400000> + | | | | "l2-tt-4" = <0040ebff030100000200000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "retention" = <> + | | | | "sid" = <00000000040000000f000000> + | | | | "interrupts" = <2d020000> + | | | | "flush-by-dva" = <00000000> + | | | | "apf-bypass-0" = <> + | | | | "retention-force-quiesce" = <> + | | | | "real-time" = <> + | | | | "apf-bypass-15" = <> + | | | | "dart-id" = <0d000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "vm-size" = <0000000010000000> + | | | | "sid-count" = <10000000> + | | | | "pt-region-4" = <0040ebff030100000040ecff03010000> + | | | | "allow-pte-remap" = <> + | | | | "IODeviceMemory" = (({"address"=0x28d304000,"length"=0x4000}),({"address"=0x28d300000,"length"=0x4000})) + | | | | "AAPL,phandle" = + | | | | "name" = <646172742d646973703000> + | | | | "instance" = <54524144000000004441525400000000554d4d5300000000534d4d5500000000> + | | | | "device_type" = <6461727400> + | | | | "compatible" = <646172742c743831313000> + | | | | "dart-options" = <65000000> + | | | | "l2-tt-0" = <0040f0ff030100000200000000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "vm-base" = <0000000000010000> + | | | | "reg" = <0040307d0000000000400000000000000000307d000000000040000000000000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "bypass-15" = <> + | | | | "IOInterruptSpecifiers" = (<2d020000>) + | | | | "pt-region-0" = <0040f0ff030100000040f4ff03010000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000E1" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-disp0@0 + | | | | | { + | | | | | "name" = <6d61707065722d646973703000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | "iommu-initial-translations" = <000099010001000000409901000100000040a5010001000000409c0500010000> + | | | | } + | | | | + | | | +-o mapper-disp0-piodma@4 + | | | | { + | | | | "name" = <6d61707065722d64697370302d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <00409901000100000040a50100010000> + | | | } + | | | + | | +-o dcp-sac-controller + | | | | { + | | | | "device_type" = <6463702d7361632d636f6e74726f6c6c657200> + | | | | "sac-index-count" = <02000000> + | | | | "function-saca_lcd0" = <26010000414341533064636c> + | | | | "function-saca_lcd1" = <26010000414341533164636c> + | | | | "AAPL,phandle" = + | | | | "name" = <6463702d7361632d636f6e74726f6c6c657200> + | | | | } + | | | | + | | | +-o DCPAVSACController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "IOService" + | | | "IOClass" = "DCPAVSACController" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dcp-sac-controller","dcp0-sac-controller","dcp1-sac-controller") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dcp-sac-controller" + | | | "role" = "DCP" + | | | } + | | | + | | +-o dp-audio0 + | | | | { + | | | | "dma-channels" = <6400000002000000000000000008000000080000000000000000000000000000> + | | | | "power-gates" = <53000000> + | | | | "dma-parent" = <95000000> + | | | | "clock-gates" = <53000000> + | | | | "function-device_reset_dpa" = <820000005453524153000000> + | | | | "device_type" = <64702d617564696f3000> + | | | | "name" = <64702d617564696f3000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o DCPAVAudioDMADelegate + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "DCPAVAudioDMADelegate" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dp-audio","dp-audio0","dp-audio1","dp-audio2","dp-audio3","dp-audio4","dp-audio5","dp-audio6","dp-audio7","dp-audio8","dp-audio9") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dp-audio0" + | | | "TransferInformation" = {"TransferAttempts"=0x0,"TransferCompletions"=0x0} + | | | } + | | | + | | +-o dispext0@8000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<4e020000>,<61020000>,<51020000>,<50020000>,<4f020000>,<56020000>,<4c020000>,<55020000>) + | | | | "clock-gates" = <> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x318000000,"length"=0x690000}),({"address"=0x318800000,"length"=0x690000}),({"address"=0x319320000,"length"=0x4000}),({"address"=0x319344000,"length"=0x4000}),({"address"=0x31a800000,"length"=0x800000}),({"address"=0x2d03d0000,"length"=0x1000})) + | | | | "external" = <01000000> + | | | | "display-default-color" = <00000000> + | | | | "function-bw_req_interrupt0" = <8200000051524942720000002300000001000000> + | | | | "display-timing-info" = <0004000032000000330000003200000058020000da0000000600000032000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "clcdclk_frequency" = <820000004342475201000000> + | | | | "name" = <646973706578743000> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <64697370657874302c743831323200> + | | | | "clock-ids" = <5e010000a2010000> + | | | | "interrupts" = <4e0200006102000051020000500200004f020000560200004c02000055020000> + | | | | "framebuffer-height" = <70080000> + | | | | "framebuffer-width" = <00100000> + | | | | "device_type" = <6578742d646973706c61792d73756273797374656d00> + | | | | "power-gates" = <> + | | | | "reg" = <000000080100000000006900000000000000800801000000000069000000000000003209010000000040000000000000004034090100000000400000000000000000800a01000000000080000000000000003dc0000000000010000000000000> + | | | | } + | | | | + | | | +-o AppleCLCD2 + | | | | { + | | | | "ForceSecureAnimation" = No + | | | | "GP0PixelCaptureLocation" = 0x9 + | | | | "APTEnablePRC" = No + | | | | "APTEnableLogs" = No + | | | | "NormalModeEnable" = No + | | | | "AOTEnable" = No + | | | | "SPLCSupported" = No + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "APTEnableConfigExpired" = Yes + | | | | "brightnessCorrection" = 0x10000 + | | | | "IOMFBBrightnessLevelIDAC" = 0xffffffffffffffff + | | | | "IOClass" = "AppleCLCD2" + | | | | "IOMFB Debug Info" = {} + | | | | "external" = Yes + | | | | "IOMFBTemperatureCompensationEnable" = No + | | | | "APTEnableEvents" = No + | | | | "ProxScanPlan" = 0xffffffffffffffff + | | | | "IOMFBIntDcpUsedForExtWhenLidClose" = No + | | | | "APTResetCA" = No + | | | | "color-accuracy-index" = 0x0 + | | | | "APTFixedRR" = 0x0 + | | | | "AODWaitForWalkdown" = 0x1 + | | | | "FrameInfoForRepeats" = No + | | | | "APTLimitRefreshRate" = No + | | | | "brightnessCorrectionB" = 0x10000 + | | | | "IOMFBSupportsICC" = Yes + | | | | "PDCSaveLongFrames" = No + | | | | "IOMFBSecureIndicatorFactor" = 0x10000 + | | | | "maxPeakBpp" = 0x0 + | | | | "IOMFBStatsTapPoint" = 0x1 + | | | | "MaxVideoSrcDownscalingWidth" = 0x5ae8 + | | | | "IdleState" = 0x5 + | | | | "ChargeValuesReset" = No + | | | | "M3TimingParameters" = {"subframe-interrupt-time-lines"=0x3d3,"subframe-duration-nclks"=0x30d40,"display-lead-time-nclks"=0x66c7,"initial-vbi-advance-lines"=0x2,"initial-subframe-irq-time-lines"=0x3d3,"vbi-advance-lines"=0x2} + | | | | "GPLiteMaxSrcSz" = 0x0 + | | | | "PDCSettleCount" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMFBNumLayers" = {"FullFrameRequired"=0x0,"MaxNumLayers"=0x3} + | | | | "enableGPDeringing" = Yes + | | | | "enableDefaultTemperatureCorrection" = No + | | | | "DCPIndex" = 0x1 + | | | | "PixelClock" = 0x35a4e900 + | | | | "IOMFBSupportsYFlip" = Yes + | | | | "APTPDCEnablePM" = 0x1 + | | | | "CMPixelCaptureLocation" = 0xd + | | | | "IOMFBBrightnessLevel" = 0x10000 + | | | | "IOMFBBICSType" = 0x0 + | | | | "IOMFBBrightnessCompensationEnable" = No + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "PCCEnableLogs" = No + | | | | "maxAverageBpp" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "AODFixedRR" = 0x0 + | | | | "PixelCaptureBlockMask" = 0x0 + | | | | "QoSDebug" = 0x0 + | | | | "use0DSensorFor2DTemp" = No + | | | | "RuntimeProperty::registerTraceEnable" = No + | | | | "BlendOutputCSCMethod" = 0x0 + | | | | "enableDisplayTMDpc" = Yes + | | | | "APTPanicOnChargeOOB" = No + | | | | "darkBoot" = No + | | | | "IOMFBSupports2DBL" = No + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "set0DTempSensorValue" = 0xffffffffffffffff + | | | | "AmbientBrightness" = 0x10000 + | | | | "enableGPAlphaDiv" = Yes + | | | | "APTPanicOnStuckPolarity" = No + | | | | "DisableTempComp" = No + | | | | "edrScaleinGP" = Yes + | | | | "GP1PixelCaptureLocation" = 0x9 + | | | | "DisplayPipeStrideRequirements" = {"StrideLinearHorizontal"=0x40,"StrideLinearVertical"=0x1} + | | | | "IOMFBScalingLimits" = {"YUVLayer_MaxScale"=0x4,"YUVLayer_MinScaleFraction"=0x2,"RGBLayer_MinScaleFraction"=0x2,"RGBLayer_MaxScale"=0x4} + | | | | "IOMFBMaxSrcPixels" = {"PixelClock"=0x0,"MaxSrcRectTotal"=0x1b00000,"MaxSrcBufferHeight"=0x4000,"IOMFBMaxCompressedSizeInBytes"=0x0,"IOMFBCompressionSupport"=0x1,"VideoClock"=0x0,"MaxSrcRectWidth"=0x1800,"MaxSrcBufferWidth"=0x4000,"MaxVideoSrcDownscalingWidth"=0x0} + | | | | "ALSSSupported" = No + | | | | "clockRatio" = 0x60f83 + | | | | "IOMFBIndicatorNitsCap" = 0x28a0000 + | | | | "IOMFBIndicatorBrightnessNits" = 0x10000 + | | | | "DisableDisplayOptimize" = 0x0 + | | | | "SupportsAOTPowerSaving" = No + | | | | "ACSSSupported" = No + | | | | "ADP is generic pipe" = Yes + | | | | "enablePixelCapture" = No + | | | | "CMDegammaMethod" = 0x0 + | | | | "IOMFB_KTRACE_API_VERSION" = "3.1" + | | | | "IdleCachingMethod" = 0x2 + | | | | "IOMatchedAtBoot" = Yes + | | | | "DebugUInt32" = 0x0 + | | | | "IOMFBSupportsGPLite" = Yes + | | | | "APTDevice" = No + | | | | "IOMFBDigitalDimmingLevel" = 0x50000 + | | | | "GPBandwidth" = 0x3200 + | | | | "enableLinearToPanel" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | | "APTDefaultGrayValue" = 0xff + | | | | "ChargeValuesPublish" = No + | | | | "IOFunctionParent000000E6" = <> + | | | | "APTPDCEnable" = Yes + | | | | "APTPanicOnChargeParity" = No + | | | | "NormalModeActive" = Yes + | | | | "PixelCaptureConfig" = 0x0 + | | | | "ADCLLoadAll" = No + | | | | "FFR_table_index" = 0x0 + | | | | "VideoClock" = 0x8d9ee20 + | | | | "IOMFBWPASupported" = 0x1 + | | | | "DispPerfState" = 0x0 + | | | | "APTEnableDefaultGray" = Yes + | | | | "BacklightMatching" = {"IOPropertyMatch"={"backlight-control"=Yes}} + | | | | "QMSVRREnableConfig" = 0x0 + | | | | "IOMFBDisplayRefresh" = {"displayRefreshStepMachTime"=0x0,"displayRefreshStep"=0x0,"displayMaxRefreshInterval"=0xaaaaaaa,"displayMinRefreshInterval"=0x4444444,"displayMinRefreshIntervalMachTime"=0x61a70,"displayMaxRefreshIntervalMachTime"=0xf4230} + | | | | "DisplayClock" = 0xb81b590 + | | | | "PDCSaveRepeatUnstablePCC" = No + | | | | "defaultTemperatureCorrectionValue" = 0xffffffffffffffff + | | | | "enableDither" = Yes + | | | | "IONameMatch" = ("disp0,t8122","dispext0,t8122") + | | | | "IOMFBSupportsXFlip" = Yes + | | | | "AOTEnableOf" = 0x251d36d6cc1a + | | | | "W40a_Blending_OK" = 0x1 + | | | | "RuntimeProperty::frameInfoTraceEnable" = No + | | | | "SystemConsoleMode" = No + | | | | "SupportsAOT1HzOptimizations" = No + | | | | "PanelLayout" = 0x0 + | | | | "IOMFBBrightnessLevelMA" = 0xffffffffffffffff + | | | | "APTEnableCA" = No + | | | | "bics_mode" = 0x0 + | | | | "BlendPixelCaptureLocation" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "TemperatureStructVersion2D" = 0x1 + | | | | "APTEventsMask" = 0x0 + | | | | "DisplayPipePlaneBaseAlignment" = {"DefaultStride"=0x0,"LinearX_Alignment"=0x40,"LinearY_Alignment"=0x1,"PlaneBaseAlignmentLinear"=0x40} + | | | | "Panel_ID" = "FP1503305EK25YTAY+5A2D4Y0441A2HF+PROD+B451345214525+3550321650322150323A503230+Y11241112Y11541116+6861B2437GJ53700M49FT4497A5172099+S40J68AHZXS40J68AHZXS40J68AHZXS40J68AH" + | | | | "enable2DTemperatureCorrection" = No + | | | | "uniformity2D" = No + | | | | "IOMFBSecureContentFactor" = 0x10000 + | | | | "APTEnableCDFD" = No + | | | | "IONameMatched" = "dispext0,t8122" + | | | | "ProxScanPosition" = 0x0 + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o IOMobileFramebufferUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | } + | | | + | | +-o dcpext-expert + | | | | { + | | | | "compatible" = <6463702d6578706572742d763100> + | | | | "device_type" = <6463702d65787065727400> + | | | | "join-power-plane" = <01000000> + | | | | "name" = <6463706578742d65787065727400> + | | | | "role" = <44435045585400> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o AppleDCPExpert + | | | { + | | | "IOClass" = "AppleDCPExpert" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1} + | | | "DCPExpertPowerState" = 0x1 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "dcp-expert-v1" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "DCPPowerState" = 0x0 + | | | "DCPPowerAssertionCount" = 0x0 + | | | "IOFunctionParent000000E7" = <> + | | | "BootComplete" = Yes + | | | "IONameMatched" = "dcp-expert-v1" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | "role" = "DCPEXT" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | "DebugState" = () + | | | "DCPPowerRetained" = No + | | | } + | | | + | | +-o dcpext@AC00000 + | | | | { + | | | | "IOInterruptSpecifiers" = (<47020000>,<46020000>,<49020000>,<48020000>) + | | | | "hdcp-channels" = <0700000008000000> + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <95010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31ac00000,"length"=0x6c000}),({"address"=0x31a850000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "dp-switch-parent" = <67000000> + | | | | "iommu-parent" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <64637065787400> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = <47020000460200004902000048020000> + | | | | "clock-ids" = <> + | | | | "hdcp-parent" = <8c000000> + | | | | "audio" = + | | | | "dp-switch-ufp-endpoint" = <01000000> + | | | | "dp-switch-ufp-port" = <00000000> + | | | | "role" = <44435045585400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <64637000> + | | | | "power-gates" = <95010000> + | | | | "reg" = <0000c00a0100000000c00600000000000000850a010000000040000000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "DCPEXT" + | | | | } + | | | | + | | | +-o iop-dcpext-nub + | | | | { + | | | | "uuid" = <38453833323631412d354343412d334543422d413442332d33414441444645333531464200> + | | | | "segment-names" = <5f5f544558543b5f5f444154413b5f5f4f535f4c4f473b756e6b6e6f776e00> + | | | | "quiesced" = <> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = + | | | | "pre-loaded" = <01000000> + | | | | "KDebugCoreID" = 0x12 + | | | | "running" = <01000000> + | | | | "no-firmware-service" = <> + | | | | "external-index" = <01000000> + | | | | "cold-boot-after-hibernate" = <> + | | | | "watchdog-enable" = <> + | | | | "segment-ranges" = <0080220000010000000000000000000000409c050001000000006c0001000000004062e10301000000006c0000000000004008060001000000002a00000000000040d50a0001000000009600000000000040d50a00010000004002000a000000004062e003010000ffffffffffffffff00403206000100000000000102000000> + | | | | "name" = <696f702d6463706578742d6e756200> + | | | | "user-power-managed" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(DCPEXT) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"}) + | | | | "IOReportLegendPublic" = Yes + | | | | "IOHibernateState" = <00000000> + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "role" = "DCPEXT" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "RTBuddyRouteProviderKey" = + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKFirmwareService + | | | | { + | | | | "IOPropertyMatch" = {"role"="DCPEXT"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "IOClass" = "AFKFirmwareService" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Role" = "DCPEXT" + | | | | } + | | | | + | | | +-o RTBuddyIOReportingEndpoint + | | | | { + | | | | "IOReportLegend" = ({"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254494f75636e00,0x180000001,"update count"),(0x5254494f6c757000,0x180000001,"last update")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="IO Reporting statistics"},{"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x525444757479436c,0x100020001,"Duty cycle")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Power"},{"IOReportGroupName"="DCPEXT","IOReportChannels"=((0x5254536c70436e74,0x10002000$ + | | | | "IOReportLegendPublic" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint1 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint1 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint1" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o system + | | | | | { + | | | | | "reg-stream-block-size" = 0x800 + | | | | | "system-service" = Yes + | | | | | "interface-id" = 0x1 + | | | | | "role" = "DCPEXT" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o powerlog-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x3 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f6,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint2 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint2 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint2" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint2" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint3 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint3 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint3" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dcpexpert-service + | | | | { + | | | | "interface-id" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint4 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint4 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint4" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o disp0-service + | | | | { + | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x0,"enqueued-commands"=0x0,"isOpen"=0x0,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | "interface-id" = 0x1 + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | "role" = "DCPEXT" + | | | | "ep-has-desc-mgr" = Yes + | | | | } + | | | | + | | | +-o DCPEXTEndpoint5 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint5 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint5" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x4,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x108,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x3 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpdp-controller-epic:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f7,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x108,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPDPControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPDPControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x0 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | | } + | | | | | + | | | | +-o dispext0:dcpav-controller-epic: + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x5 + | | | | | | "EPICUnit" = 0x1 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpav-controller-epic:1" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f8,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpav-controller-epic" + | | | | | | } + | | | | | | + | | | | | +-o DCPAVControllerProxy + | | | | | { + | | | | | "IOClass" = "DCPAVControllerProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpav-controller-epic"} + | | | | | "IOUserClientClass" = "DCPAVControllerProxyUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | | | "IOAVControllerUserInterfaceSupported" = Yes + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdp-controller-epic: + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x7 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpdp-controller-epic:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2f8,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "EPICName" = "dcpdp-controller-epic" + | | | | | } + | | | | | + | | | | +-o DCPDPControllerProxy + | | | | { + | | | | "IOClass" = "DCPDPControllerProxy" + | | | | "CFBundleIdentifier" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"EPICName"="dcpdp-controller-epic"} + | | | | "IOUserClientClass" = "DCPDPControllerProxyUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "Location" = "External" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Unit" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.DCPDPFamilyProxy" + | | | | "IODPControllerUserInterfaceSupported" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPDPFamilyProxy" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint6 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint6 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint6" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint7 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint7 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint7" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint7" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint8 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint8 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint8" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint8" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x32,"termination-events"=0x32} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint9 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint9 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint9" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint9" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x32,"termination-events"=0x32} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint10 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint10 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint10" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint10" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x1c,"termination-events"=0x1c} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint11 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint11 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint11" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x2,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-port-epic:0 + | | | | | | { + | | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "MaxPixelWidth" = 0x1800 + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2fa,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "EPICUnit" = 0x0 + | | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | | "role" = "DCPEXT" + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x35b,"enqueued-reports"=0x1,"enqueued-commands"=0xb6,"isOpen"=0x1,"enqueued-responses"=0x35b,"handled-responses"=0xb6} + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "interface-name" = "dispext0:dcpdptx-port-epic:0" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | | { + | | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | | "IOPowerManagement" = {"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | | "IOProbeScore" = 0x0 + | | | | | | "IOMatchedAtBoot" = Yes + | | | | | | "Location" = "External" + | | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | | "Unit" = 0x0 + | | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcpext-nub) + | | | | | { + | | | | | "DisplayHints" = {} + | | | | | "EventLog" = ({"EventPayload"={"State"="LinkRate","Value"=0x0},"EventRaw"=<21000000180000007aae182e270400000500000000000000>,"EventTime"=0x4272e18ae7a,"EventClass"="SetState"},{"EventPayload"={"State"="Activate","Value"=0x0},"EventRaw"=<21000000180000009276192e270400000400000000000000>,"EventTime"=0x4272e197692,"EventClass"="SetState"},{"EventPayload"={"Valid"=No},"EventRaw"=<2200000098000000004a1f2e2704000000000000000000000000000000000000ffffff000000000000000000000000000000000000000000000000000000000000000000$ + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-port-epic:1 + | | | | | { + | | | | | "EPICProviderClass" = "AppleDCPDPTXRemotePort" + | | | | | "MaxActivePixelRate" = 0x4bf00000 + | | | | | "MaxTotalPixelRate" = 0x52412100 + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x3 + | | | | | "MaxPixelWidth" = 0x1800 + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2fc,"DriverPowerState"=0x0,"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "EPICUnit" = 0x1 + | | | | | "EPICName" = "dcpdptx-port-epic" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "interface-name" = "dispext0:dcpdptx-port-epic:1" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortProxy + | | | | | { + | | | | | "IOClass" = "AppleDCPDPTXRemotePortProxy" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-port-epic"} + | | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "Location" = "External" + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Unit" = 0x1 + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemotePortUFP(iop-dcpext-nub) + | | | | { + | | | | "DisplayHints" = {} + | | | | "EventLog" = ({"EventPayload"={"State"="Registered","Value"=0x1},"EventRaw"=<21000000180000007cc14506000000000300000001000000>,"EventTime"=0x645c17c,"EventClass"="SetState"}) + | | | | } + | | | | + | | | +-o DCPEXTEndpoint12 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint12 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint12" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x48,"termination-events"=0x46} + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-interface + | | | | | | { + | | | | | | "ep-has-desc-mgr" = Yes + | | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | | "EPICLocation" = "External" + | | | | | | "interface-id" = 0x1 + | | | | | | "EPICUnit" = 0x0 + | | | | | | "role" = "DCPEXT" + | | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-interface:0" + | | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2fd,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x108,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | | } + | | | | | | + | | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | | { + | | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "Location" = "External" + | | | | | "Unit" = 0x0 + | | | | | } + | | | | | + | | | | +-o dispext0:dcpdptx-hdcp-interface + | | | | | { + | | | | | "ep-has-desc-mgr" = Yes + | | | | | "EPICProviderClass" = "AppleDCPDPTXController" + | | | | | "EPICLocation" = "External" + | | | | | "interface-id" = 0x3 + | | | | | "EPICUnit" = 0x1 + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "dispext0:dcpdptx-hdcp-interface:1" + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2fd,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x1,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x1} + | | | | | "EPICName" = "dcpdptx-hdcp-interface" + | | | | | } + | | | | | + | | | | +-o AppleDCPDPTXRemoteHDCPInterfaceProxy + | | | | { + | | | | "IOPropertyMatch" = {"EPICName"="dcpdptx-hdcp-interface"} + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOClass" = "AppleDCPDPTXRemoteHDCPInterfaceProxy" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCPDPTXProxy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Location" = "External" + | | | | "Unit" = 0x1 + | | | | } + | | | | + | | | +-o DCPEXTEndpoint13 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint13 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint13" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | { + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IOProbeScore" = 0x1 + | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IdleLowPower" = Yes + | | | | "IONameMatched" = "DCPEXTEndpoint13" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | "role" = "DCPEXT" + | | | | "DebugState" = {"events"=(),"publish-events"=0x0,"termination-events"=0x0} + | | | | } + | | | | + | | | +-o DCPEXTEndpoint18 + | | | | | { + | | | | | } + | | | | | + | | | | +-o AFKDCPEXTEndpoint18 + | | | | | { + | | | | | "IOClass" = "DCPEndpointV2" + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","DC$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | } + | | | | | + | | | | +-o AFKEPInterfaceServiceKextV2 + | | | | | { + | | | | | "CFBundleIdentifier" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | | "IOProbeScore" = 0x1 + | | | | | "IONameMatch" = ("DCPEndpoint1","DCPEndpoint2","DCPEndpoint3","DCPEndpoint4","DCPEndpoint5","DCPEndpoint6","DCPEndpoint7","DCPEndpoint8","DCPEndpoint9","DCPEndpoint10","DCPEndpoint11","DCPEndpoint12","DCPEndpoint13","DCPEndpoint14","DCPEndpoint15","DCPEndpoint16","DCPEndpoint17","DCPEndpoint18","DCPEndpoint19","DCPEndpoint20","DCPEndpoint21","DCPEndpoint22","DCPEndpoint23","DCP0Endpoint1","DCP0Endpoint2","DCP0Endpoint3","DCP0Endpoint4","DCP0Endpoint5","DCP0Endpoint6","DCP0Endpoint7","DCP0Endpoint8","DCP0Endpoint9","$ + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | | "IdleLowPower" = Yes + | | | | | "IONameMatched" = "DCPEXTEndpoint18" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDCP" + | | | | | "IOProviderMergeProperties" = {"dcp-ep"=Yes} + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDCP" + | | | | | "role" = "DCPEXT" + | | | | | "DebugState" = {"events"=(),"publish-events"=0x1,"termination-events"=0x0} + | | | | | } + | | | | | + | | | | +-o md-manager + | | | | | { + | | | | | "interface-id" = 0x1 + | | | | | "epi-is-desc-mgr" = Yes + | | | | | "role" = "DCPEXT" + | | | | | "interface-name" = "md-manager" + | | | | | "md-allocator" = "md-al-remote" + | | | | | "DebugState" = {"default-power-state"=0x0,"assertion-wait-count"=0x0,"handled-reports"=0x0,"state"=0x3,"assertion-count"=0x0,"session-count"=0x0,"terminateReportRecv"=0x0,"handled-commands"=0x0,"enqueued-reports"=0x1,"enqueued-commands"=0x0,"isOpen"=0x1,"enqueued-responses"=0x0,"handled-responses"=0x0} + | | | | | "IOPowerManagement" = {"CapabilityFlags"=0x100,"MaxPowerState"=0x1,"ActivityTickles"=0x3,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x3e2fd,"DriverPowerState"=0x0,"CurrentPowerState"=0x0} + | | | | | "ep-has-desc-mgr" = Yes + | | | | | } + | | | | | + | | | | +-o AFKLocalMemoryDescriptorManager + | | | | { + | | | | "IOClass" = "AFKLocalMemoryDescriptorManager" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleFirmwareKit" + | | | | "IOProviderClass" = "AFKEndpointInterface" + | | | | "IOPropertyMatch" = {"md-allocator"="md-al-remote"} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleFirmwareKit" + | | | | "role" = "DCPEXT" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFirmwareKit" + | | | | "DebugState" = {"Descs"=[],"FreeReqs"=()} + | | | | "md-allocator" = "md-al-local" + | | | | } + | | | | + | | | +-o DCPEXTEndpoint24 + | | | | { + | | | | } + | | | | + | | | +-o AppleDCPLinkServiceSoC + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "IOProviderClass" = "RTBuddyEndpointService" + | | | "IOClass" = "AppleDCPLinkServiceSoC" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileDispH15G-DCP" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("DCPEndpoint24","DCPEXTEndpoint24") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "DCPEXTEndpoint24" + | | | "IOUserClientClass" = "AppleDCPLinkService" + | | | } + | | | + | | +-o dart-dcpext@930C000 + | | | | { + | | | | "dart-id" = <0e000000> + | | | | "IOInterruptSpecifiers" = (<57020000>) + | | | | "bypass-15" = <> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31930c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525441534300> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <65000000> + | | | | "l2-tt-5" = <0040e3ff030100000200000000000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d64637065787400> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <050000000f000000> + | | | | "retention" = <> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <57020000> + | | | | "pt-region-5" = <0040e3ff030100000040e7ff03010000> + | | | | "dapf-instance-0" = <000070d002000000008071d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000004072d002000000008072d00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000000d0020000007f8607d0020000002000000000000000000000000000000000000000000000000000000000000000000301000000000000003cd00200000000003fd00200000020000000000000000000000000000000000000000000000000000000000000000003010000000000000010c702000000004010c70200000020000000000000000000000000000000$ + | | | | "vm-base" = <0000000000010000> + | | | | "sid-count" = <10000000> + | | | | "retention-force-quiesce" = <> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "apf-bypass-15" = <> + | | | | "reg" = <00c03009010000000040000000000000> + | | | | "vm-size" = <0000000010000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "IOFunctionParent000000EA" = <> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-dcpext@5 + | | | | { + | | | | "name" = <6d61707065722d64637065787400> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <05000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | "iommu-initial-translations" = <00409c05000100000040320700010000> + | | | } + | | | + | | +-o dart-dispext0@9304000 + | | | | { + | | | | "apf-bypass-4" = <> + | | | | "page-size" = <00400000> + | | | | "l2-tt-4" = <0040e2ff030100000200000000000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "retention" = <> + | | | | "sid" = <00000000040000000f000000> + | | | | "interrupts" = <57020000> + | | | | "flush-by-dva" = <00000000> + | | | | "apf-bypass-0" = <> + | | | | "retention-force-quiesce" = <> + | | | | "real-time" = <> + | | | | "apf-bypass-15" = <> + | | | | "dart-id" = <0f000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "vm-size" = <0000000010000000> + | | | | "sid-count" = <10000000> + | | | | "pt-region-4" = <0040e2ff030100000040e3ff03010000> + | | | | "allow-pte-remap" = <> + | | | | "IODeviceMemory" = (({"address"=0x319304000,"length"=0x4000}),({"address"=0x319300000,"length"=0x4000})) + | | | | "AAPL,phandle" = + | | | | "name" = <646172742d646973706578743000> + | | | | "instance" = <54524144000000004441525400000000554d4d5300000000534d4d5500000000> + | | | | "device_type" = <6461727400> + | | | | "compatible" = <646172742c743831313000> + | | | | "dart-options" = <65000000> + | | | | "l2-tt-0" = <0040e7ff030100000200000000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "vm-base" = <0000000000010000> + | | | | "reg" = <0040300901000000004000000000000000003009010000000040000000000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "bypass-15" = <> + | | | | "IOInterruptSpecifiers" = (<57020000>) + | | | | "pt-region-0" = <0040e7ff030100000040ebff03010000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent000000EC" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-dispext0@0 + | | | | | { + | | | | | "name" = <6d61707065722d646973706578743000> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-dispext0-piodma@4 + | | | | { + | | | | "name" = <6d61707065722d64697370657874302d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <04000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o dp-audio1 + | | | | { + | | | | "dma-channels" = <6600000002000000000000000008000000080000000000000000000000000000> + | | | | "power-gates" = <5f000000> + | | | | "dma-parent" = <95000000> + | | | | "clock-gates" = <5f000000> + | | | | "function-device_reset_dpa" = <82000000545352415f000000> + | | | | "device_type" = <64702d617564696f3100> + | | | | "name" = <64702d617564696f3100> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o DCPAVAudioDMADelegate + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "DCPAVAudioDMADelegate" + | | | "IOPersonalityPublisher" = "com.apple.driver.DCPAVFamilyProxy" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DCPAVFamilyProxy" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = ("dp-audio","dp-audio0","dp-audio1","dp-audio2","dp-audio3","dp-audio4","dp-audio5","dp-audio6","dp-audio7","dp-audio8","dp-audio9") + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "dp-audio1" + | | | "TransferInformation" = {"TransferAttempts"=0x0,"TransferCompletions"=0x0} + | | | } + | | | + | | +-o scaler0@D000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,) + | | | | "perf-workloads" = + | | | | "clock-gates" = <88010000830000007f01000080010000> + | | | | "AAPL,phandle" = + | | | | "coprovider-group" = <7363616c657200> + | | | | "IODeviceMemory" = (({"address"=0x31d000000,"length"=0x30000}),({"address"=0x31d210000,"length"=0x4000}),({"address"=0x31d204000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = + | | | | "perf-clocks" = <0000000003000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <7363616c65723000> + | | | | "function-device_reset" = <820000005453524175000000> + | | | | "interrupt-parent" = <69000000> + | | | | "workload-priority" = <05000000> + | | | | "compatible" = <7363616c65722c7438313031007363616c65722c73356c383936307800> + | | | | "interrupts" = + | | | | "clock-ids" = <7f010000> + | | | | "hardware-version" = <10000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <7363616c657200> + | | | | "power-gates" = <88010000830000007f01000080010000> + | | | | "reg" = <0000000d0100000000000300000000000000210d0100000000400000000000000040200d010000000040000000000000> + | | | | } + | | | | + | | | +-o AppleM2ScalerCSCDriver + | | | | { + | | | | "hcuApiWithoutHdr" = No + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "GangedTransformSize" = 0x0 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "EnableMSRPowerDown" = Yes + | | | | "EnableStickyRegistersDump" = No + | | | | "LogVerbosity" = 0x0 + | | | | "ActiveDartStartTime_0" = 0xec4e1c2534d1 + | | | | "DisableSIMDOptimizations" = No + | | | | "EnableCacheHints" = Yes + | | | | "IOMatchedAtBoot" = Yes + | | | | "ForceDisplayFilters" = No + | | | | "PixelCapturePreSclX" = 0x0 + | | | | "IOProbeScore" = 0x0 + | | | | "TriggerOneTimeRegistersDump" = No + | | | | "ActiveDartEndTime_0" = 0x0 + | | | | "IOClass" = "AppleM2ScalerCSCDriver" + | | | | "LogModuleMask" = 0x0 + | | | | "DisableTimeoutRegisterDump" = No + | | | | "FakePowerState" = No + | | | | "IONameMatched" = "scaler,s5l8960x" + | | | | "ContextSwitchCount_0" = 0x0 + | | | | "ScalerStartTime_0" = 0xec4e1c2ad60f + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "ScalerEndTime_0" = 0xec4e1c40145f + | | | | "EnableKernelTests" = No + | | | | "ScalerUsage_0" = 0x4c84a0 + | | | | "WorkloadPriority" = 0x0 + | | | | "PixelCapturePreSclY" = 0x0 + | | | | "PixelCapturePostSclX" = 0x0 + | | | | "TransformSize_0" = 0x1fa400 + | | | | "MaxActiveWindowSize" = 0x0 + | | | | "ForceDefaultFilters" = 0x0 + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleM2ScalerCSCDriver" + | | | | "NumScalers" = 0x1 + | | | | "LogHeaderMask" = 0x0 + | | | | "EnableFiltersNoRewriteMode" = No + | | | | "IOSurfaceAcceleratorCapabilitiesDict" = {"IOSurfaceAcceleratorCapabilitiesSymmetricScaling"=0x0,"IOSurfaceAcceleratorFormatOut2Planes444"=0x1,"IOSurfaceAcceleratorCapabilities16bitYCbCr"=0x1,"IOSurfaceAcceleratorFormatInLumaOnlyL010"=0x1,"IOSurfaceAcceleratorCapabilities12bitYCbCr"=0x1,"IOSurfaceAcceleratorFormatInARGB8101010"=0x1,"IOSurfaceAcceleratorCapabilitiesInterchangeSubblockSize"=0x4,"IOSurfaceAcceleratorFormatIn1PlaneYCBCR10422"=0x1,"IOSurfaceAcceleratorFormatOutPMARGB8888"=0x1,"IOSurfaceAcceleratorCapabilitiesSourc$ + | | | | "EnablePixelCapture" = No + | | | | "ClearUsageStatistics" = 0x0 + | | | | "SymmetricScaling" = 0x0 + | | | | "TriggerPipeEnablementDump" = 0x0 + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "ForcedTimeoutModeEnable" = No + | | | | "IONameMatch" = ("scaler,s5l8960x") + | | | | "EnableCompletionRegistersDump" = No + | | | | "ScalerLoad_0" = 0x211b617c31c + | | | | "DisableMsbReplicationWorkaround" = 0x0 + | | | | "DisableDeRinging" = No + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "TransformDumpLevel" = 0x0 + | | | | "ChromaDownsamplingCositingMethod" = 0x0 + | | | | "PixelCapturePostSclY" = 0x0 + | | | | } + | | | | + | | | +-o IOSurfaceAcceleratorClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | } + | | | + | | +-o dart-scaler@D200000 + | | | | { + | | | | "dart-id" = <10000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x31d200000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d7363616c657200> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <0000000001000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "manual-availability" = <01000000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff0000000000080808000000000028020000040000003f00003f000000000a00000a000000002c02000004000000000700000000000000010000000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0000200d010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOFunctionParent000000F1" = <> + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-scaler@0 + | | | | | { + | | | | | "name" = <6d61707065722d7363616c657200> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-scaler-piodma@1 + | | | | { + | | | | "name" = <6d61707065722d7363616c65722d70696f646d6100> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o jpeg0@89000000 + | | | | { + | | | | "compatible" = <6a7065672c7438313130006a7065672c73356c383932307800> + | | | | "iommu-parent" = + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "hw-type" = <663030303800> + | | | | "reg" = <00000089000000000040000000000000> + | | | | "clock-gates" = <860100007501000076010000> + | | | | "clock-ids" = <4501000046010000> + | | | | "device_type" = <6a70656700> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x299000000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "power-gates" = <860100007501000076010000> + | | | | "coprovider-group" = <6a70656700> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6a7065673000> + | | | | } + | | | | + | | | +-o AppleJPEGDriver + | | | | { + | | | | "IOClass" = "AppleJPEGDriver" + | | | | "AppleJPEGSupportsMissingEOI" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleJPEGDriver" + | | | | "IOMatchedAtBoot" = Yes + | | | | "Fast Clock frames_1" = 0xcd + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AppleJPEGIsLegacyDevice" = 0x0 + | | | | "AppleJPEGSupportsCompressedInterchangeFormats" = 0x1 + | | | | "AppleJPEGSupportsAppleInterchangeFormats" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "Norm Clock frames_0" = 0x707 + | | | | "IONameMatch" = ("jpeg,s5l8920x") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleJPEGDriver" + | | | | "AppleJPEGNumCores" = 0x2 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleJPEGDriver" + | | | | "Fast Clock frames_0" = 0xa6e + | | | | "IONameMatched" = "jpeg,s5l8920x" + | | | | "AppleJPEGSupports12BitsFormat" = 0x0 + | | | | "AppleJPEGSupportsRSTLogging" = 0x1 + | | | | "Norm Clock frames_1" = 0x57 + | | | | "AppleJPEGRequiresMCUAlignment" = 0x0 + | | | | "AppleJPEGSupportsDCTScaling" = 0x1 + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-jpeg0@89004000 + | | | | { + | | | | "dart-id" = <11000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x299004000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6a7065673000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00400089000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000F5" = <> + | | | | } + | | | | + | | | +-o mapper-jpeg0@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6a7065673000> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o jpeg1@89008000 + | | | | { + | | | | "compatible" = <6a7065672c7438313130006a7065672c73356c383932307800> + | | | | "iommu-parent" = + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = + | | | | "hw-type" = <663030303800> + | | | | "reg" = <00800089000000000040000000000000> + | | | | "clock-gates" = <870100007501000076010000> + | | | | "clock-ids" = <4501000046010000> + | | | | "device_type" = <6a70656700> + | | | | "AAPL,phandle" = + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "IOInterruptSpecifiers" = () + | | | | "IODeviceMemory" = (({"address"=0x299008000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "power-gates" = <870100007501000076010000> + | | | | "coprovider-group" = <6a70656700> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6a7065673100> + | | | | } + | | | | + | | | +-o AppleJPEGDriver + | | | | { + | | | | "IOClass" = "AppleJPEGDriver" + | | | | "AppleJPEGSupportsMissingEOI" = 0x1 + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleJPEGDriver" + | | | | "IOMatchedAtBoot" = Yes + | | | | "Fast Clock frames_1" = 0xcd + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AppleJPEGIsLegacyDevice" = 0x0 + | | | | "AppleJPEGSupportsCompressedInterchangeFormats" = 0x1 + | | | | "AppleJPEGSupportsAppleInterchangeFormats" = 0x1 + | | | | "IOProbeScore" = 0x0 + | | | | "Norm Clock frames_0" = 0x707 + | | | | "IONameMatch" = ("jpeg,s5l8920x") + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleJPEGDriver" + | | | | "AppleJPEGNumCores" = 0x2 + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleJPEGDriver" + | | | | "Fast Clock frames_0" = 0xa6e + | | | | "IONameMatched" = "jpeg,s5l8920x" + | | | | "AppleJPEGSupports12BitsFormat" = 0x0 + | | | | "AppleJPEGSupportsRSTLogging" = 0x1 + | | | | "Norm Clock frames_1" = 0x57 + | | | | "AppleJPEGRequiresMCUAlignment" = 0x0 + | | | | "AppleJPEGSupportsDCTScaling" = 0x1 + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o AppleJPEGDriverUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-jpeg1@8900C000 + | | | | { + | | | | "dart-id" = <12000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x29900c000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d6a7065673100> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <00000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <01000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00c00089000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000F8" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-jpeg1@0 + | | | | { + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "name" = <6d61707065722d6a7065673100> + | | | | "AAPL,phandle" = + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ave@5100000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,,) + | | | | "clock-gates" = <830100007001000071010000c1000000c2000000c3000000c4000000c000000072010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x315100000,"length"=0x45c000}),({"address"=0x315800000,"length"=0x800000}),({"address"=0x315050000,"length"=0x4000}),({"address"=0x2d0708000,"length"=0x4000}),({"address"=0x314000000,"length"=0x1000000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "function-clock_req_interrupt" = <8200000051524943730000002300000001000000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "uuid" = <35363436334334372d364637302d333731352d384333362d31383741353134444535344400> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <61766500> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6176653200> + | | | | "interrupts" = + | | | | "clock-ids" = <9e010000> + | | | | "pre-loaded" = <01000000> + | | | | "soc-id" = <743831323200> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61766500> + | | | | "power-gates" = <830100007001000071010000c1000000c2000000c3000000c4000000c000000072010000> + | | | | "reg" = <000010050100000000c04500000000000000800501000000000080000000000000000505010000000040000000000000008070c000000000004000000000000000000004010000000000000100000000> + | | | | "segment-ranges" = <00c0a300000100000000000000000000000000000001000000801000010000000080840100010000008010000000000000801000000100000080120000000000> + | | | | } + | | | | + | | | +-o AppleAVE2Driver + | | | { + | | | "IOClass" = "AppleAVE2Driver" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleAVE2" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "H264EncoderCanDo444" = Yes + | | | "H264EncoderCanDo1080p60" = Yes + | | | "HEVCEncoderCanDo4k60" = Yes + | | | "IOAVEMCTFFilterCapabilities" = {"MinResolutions"=({"Width"=0xa0,"Height"=0x40}),"MaxResolutions"=({"Width"=0x4000,"Height"=0x2000},{"Width"=0x2000,"Height"=0x4000})} + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("ave2") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "H264EncoderCanDo422" = Yes + | | | "H264EncoderCanDo4k30" = Yes + | | | "HEVCEncoderCanDo4k30" = Yes + | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IONameMatched" = "ave2" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAVE2" + | | | "MCTFCanDo420" = Yes + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAVE2" + | | | } + | | | + | | +-o dart-ave@5030000 + | | | | { + | | | | "dart-id" = <13000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "bypass-15" = <0000001002000000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x315030000,"length"=0x4000}),({"address"=0x315040000,"length"=0x4000}),({"address"=0x315020000,"length"=0x4000}),({"address"=0x315044000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152540000000054524144010000004350554441525400554d4d5300000000534d4d550000000046504144010000004350555f44415046> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "remap" = <01000000> + | | | | "dart-options" = <25000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "allow-mixed-bypass-mode" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61766500> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff00000000000808080000000000280200000400000000003f000000000000000a00000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000305010000000040000000000000000004050100000000400000000000000000020501000000004000000000000000400405010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | "IOFunctionParent000000FB" = <> + | | | | } + | | | | + | | | +-o mapper-ave@0 + | | | | { + | | | | "name" = <6d61707065722d61766500> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <80000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o avd@78000000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,) + | | | | "ads-present" = <01000000> + | | | | "clock-gates" = <840100007301000074010000> + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x288000000,"length"=0x1404000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "iommu-parent" = + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <61766400> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <6176642c743831303300> + | | | | "clock-ids" = <56010000> + | | | | "interrupts" = + | | | | "avd-version" = <04000000> + | | | | "function-avd_reset" = <82000000545352412e000000> + | | | | "decode-samples-per-second" = <03b70100> + | | | | "h264-playback-level" = <2a000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <61766400> + | | | | "power-gates" = <840100007301000074010000> + | | | | "reg" = <00000078000000000040400100000000> + | | | | } + | | | | + | | | +-o AppleAVD + | | | | { + | | | | "IOClass" = "AppleAVD" + | | | | "IOPlatformSleepAction" = 0x64 + | | | | "AVDKextType" = 0x1 + | | | | "H264DecoderSupportsTileDecode" = Yes + | | | | "IOAVDAV1DecodeCapabilities" = {"VTSupportedProfileArray"=(0x0,0x2),"VTPerProfileDetails"={"0"={"VTMaxDecodeLevel"=0x3f},"2"={"VTMaxDecodeLevel"=0x3f}}} + | | | | "H264DecoderCanDo444" = Yes + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleAVD" + | | | | "IOMatchedAtBoot" = Yes + | | | | "FirmwareSize" = " 58396" + | | | | "AVCSupported" = 0x10006000000370f + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "HEVCSupported" = Yes + | | | | "H264DecoderCanDo422" = Yes + | | | | "HEVCCanDecodeTileToCanvas" = Yes + | | | | "IOAVDH264DecodeCapabilities" = {"VTSupportedProfileArray"=(0x42,0x4d,0x58,0x64,0x6e,0x7a,0xf4,0x2c),"VTPerProfileDetails"={"122"={"VTMaxDecodeLevel"=0x50},"66"={"VTMaxDecodeLevel"=0x50},"244"={"VTMaxDecodeLevel"=0x50},"77"={"VTMaxDecodeLevel"=0x50},"110"={"VTMaxDecodeLevel"=0x50},"100"={"VTMaxDecodeLevel"=0x50},"88"={"VTMaxDecodeLevel"=0x50},"44"={"VTMaxDecodeLevel"=0x50}}} + | | | | "IOProbeScore" = 0x0 + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | | "IONameMatch" = ("avd,s5l8920x","avd,t8020","avd,t8030","avd,t8101","avd,t8103") + | | | | "FirmwareVersion" = "0x74da5854" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleAVD" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleAVD" + | | | | "IONameMatched" = "avd,t8103" + | | | | "IOAVDHEVCDecodeCapabilities" = {"VTSupportedProfileArray"=(0x1,0x2,0x3,0x4),"VTPerProfileDetails"={"3"={"VTMaxDecodeLevel"=0xba},"1"={"VTMaxDecodeLevel"=0xba},"4"={"VTMaxDecodeLevel"=0xba},"2"={"VTMaxDecodeLevel"=0xba}}} + | | | | "IOPlatformWakeAction" = 0x64 + | | | | } + | | | | + | | | +-o AppleAVDUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-avd@79010000 + | | | | { + | | | | "dart-id" = <14000000> + | | | | "IOInterruptSpecifiers" = () + | | | | "AAPL,phandle" = + | | | | "IODeviceMemory" = (({"address"=0x289010000,"length"=0x4000})) + | | | | "instance" = <54524144000000004441525400000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "ignore-secondary" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d61766400> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000100000002000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000003f000f0000000000000001000000000004080000040000003f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00000179000000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent000000FE" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = + | | | | } + | | | | + | | | +-o mapper-avd@0 + | | | | | { + | | | | | "name" = <6d61707065722d61766400> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <00000000> + | | | | | "AAPL,phandle" = + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-avd-piodma@1 + | | | | | { + | | | | | "name" = <6d61707065722d6176642d70696f646d6100> + | | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | | "iomd-cache-ttl" = + | | | | | "iomd-cache-size" = <40000000> + | | | | | "device_type" = <646172742d6d617070657200> + | | | | | "reg" = <01000000> + | | | | | "AAPL,phandle" = <00010000> + | | | | | } + | | | | | + | | | | +-o IODARTMapper + | | | | { + | | | | "IOClass" = "IODARTMapper" + | | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | | "IOProviderClass" = "IODARTMapperNub" + | | | | "iommu-dart-translation" = Yes + | | | | "IOUserClientClass" = "IODARTMapperClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "iommu-mapper" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iommu-mapper" + | | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | | "IOMapperID" = <00010000> + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | | } + | | | | + | | | +-o mapper-avd-adsbuf@2 + | | | | { + | | | | "name" = <6d61707065722d6176642d61647362756600> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <40000000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <02000000> + | | | | "AAPL,phandle" = <01010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <01010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o apr@11000000 + | | | | { + | | | | "compatible" = <6170722c663000> + | | | | "iommu-parent" = <04010000> + | | | | "interrupt-parent" = <69000000> + | | | | "reg" = <000000110100000000400000000000000000001001000000008000000000000000800711010000000040000000000000> + | | | | "interrupts" = <590300007e030000> + | | | | "AAPL,phandle" = <02010000> + | | | | "clock-gates" = <960100007d0100007e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069") + | | | | "device_type" = <61707200> + | | | | "IOInterruptSpecifiers" = (<59030000>,<7e030000>) + | | | | "IODeviceMemory" = (({"address"=0x321000000,"length"=0x4000}),({"address"=0x320000000,"length"=0x8000}),({"address"=0x321078000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "function-bw_req_interrupt" = <8200000051524942740000000000000000000000> + | | | | "function-device_reset" = <820000005453524174000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <61707200> + | | | | } + | | | | + | | | +-o AppleProResHW + | | | { + | | | "IOClass" = "AppleProResHW" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleProResHW" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOPlatformWakeAction" = 0x64 + | | | "IOPowerManagement" = {"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"DriverPowerState"=0x0} + | | | "IOPlatformSleepAction" = 0x64 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("apr,f0") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "apr,f0" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleProResHW" + | | | "IOProResHWDecode" = "1" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleProResHW" + | | | "IOProResHWEncode" = "1" + | | | } + | | | + | | +-o dart-apr@11028000 + | | | | { + | | | | "dart-id" = <15000000> + | | | | "IOInterruptSpecifiers" = (<58030000>) + | | | | "AAPL,phandle" = <03010000> + | | | | "IODeviceMemory" = (({"address"=0x321028000,"length"=0x4000}),({"address"=0x32102c000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152545254000054524144010000004441525441534300> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "clamp-tlimits" = <> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "trans-idle-timeout" = <64000000> + | | | | "name" = <646172742d61707200> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <01000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <58030000> + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000007f000f0000000000000004000000000004080000040000007f000f0$ + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <0080021101000000004000000000000000c00211010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <03010000> + | | | | "IOFunctionParent00000103" = <> + | | | | } + | | | | + | | | +-o mapper-apr@1 + | | | | { + | | | | "name" = <6d61707065722d61707200> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <00010000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <01000000> + | | | | "AAPL,phandle" = <04010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <04010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o isp@94000000 + | | | | { + | | | | "function-bw_req_interrupt" = <82000000515249422d0000002000000001000000> + | | | | "function-ane_data_param_get" = <0801000074654764> + | | | | "function-ane_ep_control" = <080100006c744365> + | | | | "function-saca0c" = <2601000041434153346d6163> + | | | | "interrupt-parent" = <69000000> + | | | | "no-firmware-service" = <> + | | | | "interrupts" = <3701000038010000390100003a010000> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "function-saca2c" = <2601000041434153356d6163> + | | | | "iommu-parent" = <07010000> + | | | | "function-saca5" = <2601000041434153476d6163> + | | | | "function-saca3b" = <2601000041434153436d6163> + | | | | "face-detection-support" = <01000000> + | | | | "function-ane_data_param_set" = <0801000074655364> + | | | | "function-conf_isp_ref1_clk_freq" = <8200000043505349010000009e1ac15516981b55> + | | | | "function-saca4c" = <2601000041434153466d6163> + | | | | "clock-gates" = <890100002000000021000000220000002300000077010000> + | | | | "role" = <49535000> + | | | | "uuid" = <34323237304530442d333337412d333036352d424333432d31334233343331354139344400> + | | | | "function-saca0" = <2601000041434153306d6163> + | | | | "pre-loaded" = <01000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "lpdprx_phy_efuse" = <11000000> + | | | | "lpdprx_phy1_efuse" = <12000000> + | | | | "IODeviceMemory" = (({"address"=0x2a4000000,"length"=0x4000000}),({"address"=0x2d0700000,"length"=0x18000})) + | | | | "isp-mobile-defect" = <00000000> + | | | | "function-saca4" = <2601000041434153446d6163> + | | | | "AAPL,phandle" = <05010000> + | | | | "name" = <69737000> + | | | | "power-gates" = <890100002000000021000000220000002300000077010000> + | | | | "function-clock_req_interrupt" = <82000000515249432d0000002100000001000000> + | | | | "function-saca0b" = <2601000041434153326d6163> + | | | | "clock-ids" = <690100006b010000> + | | | | "device_type" = <69737000> + | | | | "compatible" = <6973702c6831332d67656e65726963006973702c73356c383936307800> + | | | | "function-saca2b" = <2601000041434153336d6163> + | | | | "function-saca3" = <2601000041434153426d6163> + | | | | "function-device_reset" = <82000000545352412d000000> + | | | | "camera-front" = <01000000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "function-saca2d" = <2601000041434153366d6163> + | | | | "function-conf_isp_ref2_clk_freq" = <8200000043505349020000009e1ac15516981b55> + | | | | "function-saca4b" = <2601000041434153456d6163> + | | | | "sensor-type" = <12000000> + | | | | "segment-ranges" = <0040b400000100000000000000000000000000000001000000809d0001000000000097010001000000809d000000000000809d000001000000c0410000000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "reg" = <00000094000000000000000400000000000070c0000000000080010000000000> + | | | | "function-conf_isp_ref0_clk_freq" = <8200000043505349000000009e1ac15516981b55> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "function-saca2" = <2601000041434153316d6163> + | | | | "IOInterruptSpecifiers" = (<37010000>,<38010000>,<39010000>,<3a010000>) + | | | | } + | | | | + | | | +-o AppleH13CamIn + | | | | { + | | | | "IOClass" = "AppleH13CamIn" + | | | | "FrontIRStructuredLightProjectorSerialNumString" = "XXXXXXXX" + | | | | "ISPFirmwareVersion" = "49.500" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleH13CameraInterface" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1} + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "FrontCameraSerialNumber" = <0000000000000000> + | | | | "FrontCameraModuleSerialNumString" = "DNM502502JW0WNMD6" + | | | | "IOFunctionParent00000105" = <> + | | | | "SavageDATFileStatus" = "Unknown" + | | | | "IOProbeScore" = 0x0 + | | | | "RamdiskMode" = No + | | | | "IONameMatch" = "isp,h13-generic" + | | | | "FrontCameraExpected" = Yes + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleH13CameraInterface" + | | | | "FCClValidationStatus" = "Invalid" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleH13CameraInterface" + | | | | "FirmwareLoaded" = Yes + | | | | "IONameMatched" = "isp,h13-generic" + | | | | "FrontCameraActive" = No + | | | | "CmPMValidationStatus" = "Unknown" + | | | | "CmClValidationStatus" = "Unsupported" + | | | | "YonkersDATFileStatus" = "Unknown" + | | | | "FrontCameraStreaming" = No + | | | | "IOReportLegend" = ({"IOReportGroupName"="ISP","IOReportChannels"=((0x746f7420696e7400,0x180000001,"Total Interrupts"),(0x707772206f6e0000,0x180000001,"Number Power Ups"),(0x707772206f666600,0x180000001,"Number Power Downs"),(0x7361633020636e74,0x180000001,"Number SAC Action0"),(0x7361633120636e74,0x180000001,"Number SAC Action1"),(0x7361633220636e74,0x180000001,"Number SAC Action2"),(0x7361633420636e74,0x180000001,"Number SAC Action4"),(0x7361633066616931,0x180000001,"Number SAC Action0 FreqArray1"),(0x7361633166616931,0x180$ + | | | | "RestoreMode" = No + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "ISPFirmwareLinkDate" = "Mar 7 2025 - 21:21:48" + | | | | } + | | | | + | | | +-o AppleH13CamInUserClient + | | | { + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | } + | | | + | | +-o dart-isp@964A8000 + | | | | { + | | | | "dart-id" = <16000000> + | | | | "IOInterruptSpecifiers" = (<3c010000>) + | | | | "bypass-15" = <> + | | | | "AAPL,phandle" = <06010000> + | | | | "IODeviceMemory" = (({"address"=0x2a64a8000,"length"=0x4000}),({"address"=0x2a64b4000,"length"=0x4000}),({"address"=0x2a64bc000,"length"=0x4000}),({"address"=0x2a64b0000,"length"=0x4000}),({"address"=0x2a64b8000,"length"=0x4000}),({"address"=0x2a64ac000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152544c4c5400545241440100000044415254424c4b0054524144020000004441525452540000554d4d5301000000534d4d55424c4b00554d4d5302000000534d4d55525400004650414400000000444150464c4c5400> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d69737000> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <3c010000> + | | | | "manual-availability" = <01000000> + | | | | "real-time" = <> + | | | | "dapf-instance-0" = + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "dart-tunables-instance-2" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00804a9600000000004000000000000000404b9600000000004000000000000000c04b9600000000004000000000000000004b9600000000004000000000000000804b9600000000004000000000000000c04a96000000000040000000000000> + | | | | "vm-size" = <000000a000000000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000106" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <06010000> + | | | | } + | | | | + | | | +-o mapper-isp@0 + | | | | { + | | | | "name" = <6d61707065722d69737000> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <80010000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = <07010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <07010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o ane@0 + | | | | { + | | | | "IOInterruptSpecifiers" = (<0c020000>) + | | | | "clock-gates" = <85010000> + | | | | "AAPL,phandle" = <08010000> + | | | | "IODeviceMemory" = (({"address"=0x310000000,"length"=0x2000000}),({"address"=0x2d0700000,"length"=0x18000}),({"address"=0x2d0724000,"length"=0x4000})) + | | | | "IOReportLegendPublic" = Yes + | | | | "ane-type" = + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <0a010000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "uuid" = <44433046354237462d393332432d333545322d414630432d35333231393133464142413000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <616e6500> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <616e652c743830323000> + | | | | "interrupts" = <0c020000> + | | | | "clock-ids" = <4a0100004901000048010000> + | | | | "pre-loaded" = <01000000> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <616e6500> + | | | | "power-gates" = <85010000> + | | | | "reg" = <00000000010000000000000200000000000070c0000000000080010000000000004072c0000000000040000000000000> + | | | | "segment-ranges" = <00c09700000100000000000000000000000000000001000000000c0001000000004055010001000000000c000000000000000c000001000000c0100000000000> + | | | | } + | | | | + | | | +-o H11ANE + | | | | { + | | | | "IOClass" = "H11ANEIn" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleH11ANEInterface" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x0,"CurrentPowerState"=0x0,"CapabilityFlags"=0x0,"MaxPowerState"=0x1} + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "ane,t8020" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOReportLegend" = ({"IOReportGroupName"="H11ANE","IOReportChannels"=((0x0,0x180000001,"Total Interrupts"),(0x1,0x180000001,"Number Power Ups"),(0x2,0x180000001,"Number Power Downs"),(0x3,0x180000001,"Memory Alloc Requests"),(0x4,0x180000001,"Memory Free Requests"),(0x5,0x180000001,"ANECPU Commands Sent"),(0x6,0x180000001,"ANECPU Responses Received"),(0x7,0x180000001,"H2T Buffer Responses"),(0x8,0x180000001,"T2H Buffer Notifications"),(0x9,0x180000001,"T2H IO Commands"),(0xa,0x180000001,"ANECPU Log Messages"),(0xb,0x180000001$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IONameMatched" = "ane,t8020" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleH11ANEInterface" + | | | | "DeviceProperties" = {"ANEDevicePropertyANECPUSubType"=0x6,"ANEDevicePropertyIsInternalBuild"=No,"ANEDevicePropertyANEVersion"=0x90,"ANEDevicePropertyANEMinorVersion"=0x20,"ANEDevicePropertyANEHWBoardType"=0xb0,"ANEDevicePropertyANEHWBoardSubType"=0x0,"ANEDevicePropertyNumANECores"=0x10,"ANEDevicePropertyTypeANEArchitectureTypeStr"="h15g"} + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleH11ANEInterface" + | | | | "FirmwareLoaded" = Yes + | | | | "IOFunctionParent00000108" = <> + | | | | } + | | | | + | | | +-o ANEClientHints + | | | | { + | | | | } + | | | | + | | | +-o H11ANEInUserClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 904, aned" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | | { + | | | | "IOUserClientDefaultLocking" = Yes + | | | | "IOUserClientCreator" = "pid 45074, TGOnDeviceInfere" + | | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | | "IOUserClientEntitlements" = No + | | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | | } + | | | | + | | | +-o H11ANEInDirectPathClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19483, naturallanguaged" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o dart-ane@1800000 + | | | | { + | | | | "dart-id" = <17000000> + | | | | "IOInterruptSpecifiers" = (<0d020000>) + | | | | "bypass-15" = <> + | | | | "AAPL,phandle" = <09010000> + | | | | "IODeviceMemory" = (({"address"=0x311800000,"length"=0x4000}),({"address"=0x311810000,"length"=0x4000}),({"address"=0x311820000,"length"=0x4000}),({"address"=0x311804000,"length"=0x4000})) + | | | | "instance" = <5452414400000000444152544c4c540054524144010000004441525442524400545241440200000044415254425752004650414400000000444150464c4c5400> + | | | | "dart-tunables-instance-1" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff001000000000008000004000000ff000f000000000000000600000000000408000004000000ff000f0$ + | | | | "IOReportLegendPublic" = Yes + | | | | "dart-options" = <25000000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "name" = <646172742d616e6500> + | | | | "interrupt-parent" = <69000000> + | | | | "sid" = <000000000f000000> + | | | | "compatible" = <646172742c743831313000> + | | | | "page-size" = <00400000> + | | | | "flush-by-dva" = <00000000> + | | | | "interrupts" = <0d020000> + | | | | "manual-availability" = <01000000> + | | | | "dapf-instance-0" = <008046a502000000038046a502000000010000000000000000000000000000000000000000000000000000000000000000030100380470d0020000003b0470d00200000001000000000000000000000000000000000000000000000000000000000000000003010000c070d0020000001bc070d0020000000100000000000000000000000000000000000000000000000000000000000000000301002c6872d0020000002f6872d002000000010000000000000000000000000000000000000000000000000000000000000000030100008046920200000003804692020000000100000000000000000000000000000000000000000000000000000000000000$ + | | | | "dart-tunables-instance-2" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff0010000000000080000040000007f000f0000000000000006000000000004080000040000007f000f0$ + | | | | "vm-base" = <0000000000010000> + | | | | "dart-tunables-instance-0" = <0c02000004000000b701008000000000b70100800000000020020000040000000f0f0f00000000000f0f0f00000000002402000004000000ffffff000000000008080800000000000003000004000000311f00000000000001000000000000000803000004000000fcffff3f0000000000000010000000001003000004000000fcffff3f00000000fcffff3f000000001803000004000000311f00000000000001000000000000002003000004000000fcffff3f000000000000f001000000002803000004000000fcffff3f00000000fcbff00100000000> + | | | | "sid-count" = <10000000> + | | | | "error-reflector" = <0000007f02000000> + | | | | "device_type" = <6461727400> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "reg" = <00008001010000000040000000000000000081010100000000400000000000000000820101000000004000000000000000408001010000000040000000000000> + | | | | "vm-size" = <0000000000030000> + | | | | } + | | | | + | | | +-o AppleT8110DART + | | | | { + | | | | "IOClass" = "AppleT8110DART" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleT8110DART" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOPlatformActiveAction" = 0x13880 + | | | | "noncompliant-dead-mappings" = No + | | | | "IOPlatformSleepAction" = 0x13880 + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = "dart,t8110" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IOUserClientClass" = "IODARTClient" + | | | | "IOFunctionParent00000109" = <> + | | | | "IONameMatched" = "dart,t8110" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleT8110DART" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleT8110DART" + | | | | "iommu-dart-identity" = <09010000> + | | | | } + | | | | + | | | +-o mapper-ane@0 + | | | | { + | | | | "name" = <6d61707065722d616e6500> + | | | | "compatible" = <696f6d6d752d6d617070657200> + | | | | "iomd-cache-ttl" = + | | | | "iomd-cache-size" = <00020000> + | | | | "device_type" = <646172742d6d617070657200> + | | | | "reg" = <00000000> + | | | | "AAPL,phandle" = <0a010000> + | | | | } + | | | | + | | | +-o IODARTMapper + | | | { + | | | "IOClass" = "IODARTMapper" + | | | "CFBundleIdentifier" = "com.apple.driver.IODARTFamily" + | | | "IOProviderClass" = "IODARTMapperNub" + | | | "iommu-dart-translation" = Yes + | | | "IOUserClientClass" = "IODARTMapperClient" + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = "iommu-mapper" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper" + | | | "IOPersonalityPublisher" = "com.apple.driver.IODARTFamily" + | | | "IOMapperID" = <0a010000> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IODARTFamily" + | | | } + | | | + | | +-o sgx@80000000 + | | | | { + | | | | "reg" = <000000800000000000000004000000000000d0800000000000c0120000000000> + | | | | "perf-state-table-count" = <01000000> + | | | | "gpu-se-engagement-criteria" = <58020000> + | | | | "gpu-pwr-integral-gain" = <8695a53c> + | | | | "gfx-handoff-size" = <0040000000000000> + | | | | "gpu-fast-die0-target" = <58000000> + | | | | "gpu-avg-power-min-duty-cycle" = <1e000000> + | | | | "clock-ids" = <66010000> + | | | | "gpu-se-inactive-threshold" = + | | | | "interrupt-parent" = <69000000> + | | | | "power-gates" = <6501000066010000> + | | | | "gpu-fast-die0-sensor-mask" = <02000000> + | | | | "gfx-shared-l2-region-size" = <0040000000000000> + | | | | "interrupts-valid" = <5f000000> + | | | | "gpu-se-reset-criteria" = <32000000> + | | | | "gpu-avg-power-kp" = <9a99f93f> + | | | | "gfx-shared-region-size" = <0000040000000000> + | | | | "gpu-perf-boost-min-util" = <5a000000> + | | | | "gpu-perf-tgt-utilization" = <55000000> + | | | | "metal-standard" = <00010000> + | | | | "gpu-pwr-integral-min-clamp" = <00000000> + | | | | "gpu-se-tgt" = <78050000> + | | | | "gpu-avg-power-ki-only" = <00008c42> + | | | | "gpu-num-perf-states" = <0d000000> + | | | | "gfx-data-base" = <0000660100010000> + | | | | "gpu-se-filter-time-constant-1" = <03000000> + | | | | "compatible" = <6770752c743831323200> + | | | | "gpu-pwr-sample-period-aic-clks" = <400d0300> + | | | | "gpu-se-kp" = <0000a0c0> + | | | | "name" = <73677800> + | | | | "gptbat-ready" = <01000000> + | | | | "AAPL,phandle" = <0b010000> + | | | | "gpu-ppm-ki" = <3333c242> + | | | | "gpu-ppm-filter-time-constant-ms" = <64000000> + | | | | "gfx-qos" = <0100000001000000> + | | | | "interrupts" = + | | | | "gpu-pwr-proportional-gain" = + | | | | "gpu-perf-filter-drop-threshold" = <00000000> + | | | | "gpu-pwr-filter-time-constant" = <39010000> + | | | | "gpu-fast-die0-integral-gain" = <0000e143> + | | | | "meta-sw-interrupt" = <484001d102000000484201d10200000000400000> + | | | | "gpu-se-ki-1" = <0000c8c2> + | | | | "rtkit-private-vm-region-size" = <0000000020000000> + | | | | "procedural-antialiasing" = <> + | | | | "gpu-perf-proportional-gain2" = + | | | | "gpu-sochot-temp" = <6c000000> + | | | | "perf-states" = <000000007d000000807825147602000080eed524ad02000000ff712fe90200000059d431110300000028503711030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "clock-gates" = <6501000066010000> + | | | | "gpu-se-ki" = <000048c2> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "perf-states-sram" = <0000000016030000807825141603000080eed5241603000000ff712f160300000059d431160300000028503716030000005ebe38390300000048f13e390300004081c33e7503000080c8bc45750300000020aa449d03000080bb2c4c9d0300000095c347b60300008042c04fb6030000> + | | | | "gpu-perf-filter-time-constant" = <05000000> + | | | | "gpu-fast-die0-alarm-threshold" = <58000000> + | | | | "IOReportLegendPublic" = Yes + | | | | "perf-state-count" = <0e000000> + | | | | "gpu-perf-boost-ce-step" = <32000000> + | | | | "gfx-handoff-base" = <0000f7ff03010000> + | | | | "rtkit-private-vm-region-base" = <0000000000fcffff> + | | | | "gpu-perf-integral-gain" = + | | | | "gpu-pwr-min-duty-cycle" = <1e000000> + | | | | "ttbat-phys-addr-base" = + | | | | "gfx-shared-region-base" = <0080f7ff03010000> + | | | | "gpu-perf-integral-min-clamp" = <00000000> + | | | | "function-mcc_dataset" = <680000005344244d> + | | | | "gpu-avg-power-target-filter-tc" = <01000000> + | | | | "gpu-perf-filter-time-constant2" = + | | | | "IODeviceMemory" = (({"address"=0x290000000,"length"=0x4000000}),({"address"=0x290d00000,"length"=0x12c000})) + | | | | "gfx-shared-l2-region-base" = <0040f7ff03010000> + | | | | "gpu-avg-power-filter-tc-ms" = <28000000> + | | | | "product-dram" = <32000000> + | | | | "has-kf" = <01000000> + | | | | "gpu-fast-die0-proportional-gain" = <00000842> + | | | | "gpu-perf-proportional-gain" = + | | | | "opengl-standard" = <00030000> + | | | | "gpu-perf-base-pstate" = <01000000> + | | | | "IOInterruptSpecifiers" = (,,,,,,) + | | | | "gpu-power-sample-period" = <08000000> + | | | | "device_type" = <73677800> + | | | | "gpu-se-filter-time-constant" = <09000000> + | | | | "gpu-ppm-kp" = <9a993940> + | | | | "gfx-data-size" = <00000f0000000000> + | | | | "gpu-se-kp-1" = <000020c1> + | | | | "gpu-region-size" = <0040000000000000> + | | | | "gpu-perf-integral-gain2" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200040000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200040001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200040002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200040003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200040004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "gpu-region-base" = <0080fbff03010000> + | | | | } + | | | | + | | | +-o AGXAcceleratorG15G + | | | | { + | | | | "SchedulerState" = {"Stamps"=(),"BusyWorkQueues"=()} + | | | | "IOMatchedAtBoot" = Yes + | | | | "vendor-id" = <6b100000> + | | | | "GPURawCounterBundleName" = "AGXGPURawCounterBundle" + | | | | "AGXParameterBufferMaxSizeEverMemless" = 0x22440000 + | | | | "GPURawCounterPluginClassName" = "AGXGPURawCounterSourceGroup" + | | | | "MetalPluginClassName" = "AGXG15GDevice" + | | | | "SCMVersionNumber" = "" + | | | | "AGCInfo" = {"fLastSubmissionPID"=0xa5ab,"fSubmissionsSinceLastCheck"=0x0,"fBusyCount"=0x0} + | | | | "MetalPluginName" = "AGXMetalG15G_C0" + | | | | "IONameMatched" = "gpu,t8122" + | | | | "CommandSubmissionEnabled" = Yes + | | | | "PerformanceStatistics" = {"In use system memory (driver)"=0x0,"Alloc system memory"=0x3051e4000,"Tiler Utilization %"=0xa,"recoveryCount"=0x0,"lastRecoveryTime"=0x0,"Renderer Utilization %"=0xa,"TiledSceneBytes"=0xc8000,"Device Utilization %"=0xa,"SplitSceneCount"=0x0,"Allocated PB Size"=0x36a0000,"In use system memory"=0x1cbb4000} + | | | | "IOGLBundleName" = "AppleMetalOpenGLRenderer" + | | | | "AGXParameterBufferMaxSizeNeverMemless" = 0x11220000 + | | | | "IOGLESBundleName" = "AppleMetalGLRenderer" + | | | | "IOSourceVersion" = "325.34.1" + | | | | "IOPersonalityPublisher" = "com.apple.AGXG15G" + | | | | "IOPowerManagement" = {"CurrentPowerState"=0x1,"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | | "model" = "Apple M3" + | | | | "AGXTraceCodeVersion" = "3.43.0" + | | | | "SCMBuildTime" = "" + | | | | "CFBundleIdentifier" = "com.apple.AGXG15G" + | | | | "gpu-core-count" = 0x8 + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "AGXParameterBufferMaxSize" = 0x33660000 + | | | | "IONameMatch" = ("gpu,t8132","gpu,t8015","gpu,t8027","gpu,t8030","gpu,t8103","gpu,t8122") + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AGXAcceleratorG15G" + | | | | "CFBundleIdentifierKernel" = "com.apple.AGXG15G" + | | | | "GPUConfigurationVariable" = {"num_gps"=0x4,"gpu_gen"=0xf,"is_sksm"=0x0,"usc_gen"=0x3,"num_cores"=0xa,"num_mgpus"=0x1,"gpu_var"="G","core_mask_list"=(0x3bd),"num_frags"=0xa} + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOReportLegend" = ({"IOReportChannels"=((0x1,0x180000001,"Alloc system memory"),(0x2,0x180000001,"In use system memory"),(0x3,0x180000001,"GPU Restart Count"),(0x4,0x180000001,"In use system memory (driver)"),(0x5,0x180000001,"Last GPU Restart")),"IOReportGroupName"="Internal Statistics","IOReportChannelInfo"={"IOReportChannelUnit"=0x0}},{"IOReportChannels"=((0x454e45524759,0x100020001,"GPU Energy")),"IOReportGroupName"="Energy Model","IOReportChannelInfo"={"IOReportChannelUnit"=0x300007600000000}},{"IOReportGroupName"="GPU $ + | | | | "IOMatchCategory" = "IOAccelerator" + | | | | "IOProbeScore" = 0x2710 + | | | | "KDebugVersion" = 0x100000000 + | | | | "SurfaceList" = () + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 449, runningboardd" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec7d87f962eb,"accumulatedGPUTime"=0xf281db812be},{"API"="Metal","lastSubmittedTime"=0xec4260de04c9,"accumulatedGPUTime"=0x1e75ade4},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="Metal","lastSubmittedTime"=0xac5336e8812d,"accumulatedGPUTime"=0x25bdb06a}) + | | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | | "CommandQueueCount" = 0x5 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x5 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xc41a99b7aada,"accumulatedGPUTime"=0x2ee19c1c}) + | | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 449, runningboardd" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec42c16361f4,"accumulatedGPUTime"=0xd836812}) + | | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec48ca75fbca,"accumulatedGPUTime"=0x6d260ab30}) + | | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec43973e7fd5,"accumulatedGPUTime"=0xf9da5c9}) + | | | | "IOUserClientCreator" = "pid 1079, WallpaperMacinto" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x3 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xa73c4c0c944e,"accumulatedGPUTime"=0x1725627}) + | | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x3 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x58a7aee7029f,"accumulatedGPUTime"=0x2f56417}) + | | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1345, TextInputMenuAge" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1081, CursorUIViewServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 2809, UserNotification" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 442, com.apple.cmio.r" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec7c6677c019,"accumulatedGPUTime"=0x1a4214dd},{"API"="Metal","lastSubmittedTime"=0xe3980373f608,"accumulatedGPUTime"=0x466bab}) + | | | | "IOUserClientCreator" = "pid 8115, iconservicesagen" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 17537, replayd" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x4 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 19483, naturallanguaged" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x4 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 19581, DockHelper" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 19189, CoreServicesUIAg" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 21593, LinkedNotesUISer" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 23533, TextInputSwitche" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 23929, coreautha" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24141, OSDUIHelper" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe51cedc9a26c,"accumulatedGPUTime"=0x1eb713e}) + | | | | "IOUserClientCreator" = "pid 24351, iconservicesagen" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe6d04275cc87,"accumulatedGPUTime"=0x27223a}) + | | | | "IOUserClientCreator" = "pid 24046, mediaanalysisd" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x7 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24473, com.apple.photos" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24474, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24304, cloudphotod" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24475, com.apple.photos" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24478, VTDecoderXPCServ" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24477, VTEncoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 3972, photolibraryd" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24502, VTDecoderXPCServ" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 24302, photoanalysisd" + | | | | "CommandQueueCount" = 0x0 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x4 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 28992, AccessibilityVis" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 29333, universalAccessA" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 2522, storeuid" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec4c13967096,"accumulatedGPUTime"=0x1717e0eb}) + | | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec4eae083338,"accumulatedGPUTime"=0x40c486cb5e},{"API"="Metal","lastSubmittedTime"=0xebc09d42d80f,"accumulatedGPUTime"=0x2224413}) + | | | | "IOUserClientCreator" = "pid 30514, com.apple.WebKit" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe9cbf843c00d,"accumulatedGPUTime"=0x1b73fe}) + | | | | "IOUserClientCreator" = "pid 30518, com.apple.appkit" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 30524, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 30525, ThemeWidgetContr" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec5f5403b284,"accumulatedGPUTime"=0x7cb015}) + | | | | "IOUserClientCreator" = "pid 31136, com.apple.WebKit" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 30516, com.apple.Safari" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 37786, QuickLookSatelli" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe122cb17483d,"accumulatedGPUTime"=0xcfbefe5},{"API"="Metal","lastSubmittedTime"=0xe12834d48229,"accumulatedGPUTime"=0x333248}) + | | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x7 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 38845, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe1139ec3b8be,"accumulatedGPUTime"=0x474db491}) + | | | | "IOUserClientCreator" = "pid 38864, QuickLookUIServi" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe7fcd1d9e8dc,"accumulatedGPUTime"=0x1a0996a0}) + | | | | "IOUserClientCreator" = "pid 40601, Docker Desktop H" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 40582, Docker Desktop" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xe767484bafcc,"accumulatedGPUTime"=0x5e73741}) + | | | | "IOUserClientCreator" = "pid 40727, Preview" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 40735, com.apple.appkit" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec75053f6545,"accumulatedGPUTime"=0x6feffc74}) + | | | | "IOUserClientCreator" = "pid 40868, Terminal" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 41490, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 42405, Electron" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec7d887ffa52,"accumulatedGPUTime"=0x1e4932db9}) + | | | | "IOUserClientCreator" = "pid 42411, Code Helper (GPU" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 42487, VTEncoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xeb3f10a2e01a,"accumulatedGPUTime"=0x3dccd23}) + | | | | "IOUserClientCreator" = "pid 43744, Pages" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 43760, com.apple.appkit" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 45067, com.apple.CoreSi" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 45077, gputoolsserviced" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec609cf4b0f5,"accumulatedGPUTime"=0x83707}) + | | | | "IOUserClientCreator" = "pid 45498, com.apple.appkit" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 46328, Python" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 46359, Ollama" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0},{"API"="GL/CL","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 46360, Ollama Helper (G" + | | | | "CommandQueueCount" = 0x2 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x2 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 46362, VTDecoderXPCServ" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "API" = "Metal" + | | | | "AppUsage" = () + | | | | "IOUserClientCreator" = "pid 46363, ollama" + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0x0,"accumulatedGPUTime"=0x0}) + | | | | "IOUserClientCreator" = "pid 46364, ollama" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | | { + | | | | "AppUsage" = ({"API"="Metal","lastSubmittedTime"=0xec7619a26e02,"accumulatedGPUTime"=0x137affe}) + | | | | "IOUserClientCreator" = "pid 46366, TextEdit" + | | | | "CommandQueueCount" = 0x1 + | | | | "API" = "Metal" + | | | | "CommandQueueCountMax" = 0x1 + | | | | } + | | | | + | | | +-o AGXDeviceUserClient + | | | { + | | | "API" = "Metal" + | | | "AppUsage" = () + | | | "IOUserClientCreator" = "pid 46372, com.apple.appkit" + | | | } + | | | + | | +-o gfx-asc@82400000 + | | | | { + | | | | "IOInterruptSpecifiers" = (,,,) + | | | | "iop-version" = <01000000> + | | | | "clock-gates" = <67010000> + | | | | "AAPL,phandle" = <0c010000> + | | | | "IODeviceMemory" = (({"address"=0x292400000,"length"=0x6c000}),({"address"=0x292050000,"length"=0x8})) + | | | | "IOReportLegendPublic" = Yes + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "iommu-parent" = <0e010000> + | | | | "IOInterruptControllers" = ("IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069","IOInterruptController00000069") + | | | | "name" = <6766782d61736300> + | | | | "interrupt-parent" = <69000000> + | | | | "compatible" = <696f702c617363777261702d763600> + | | | | "interrupts" = + | | | | "clock-ids" = <66010000> + | | | | "role" = <47465800> + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200020000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200020001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200020002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200020003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200020004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "device_type" = <6766782d61736300> + | | | | "power-gates" = <67010000> + | | | | "reg" = <000040820000000000c006000000000000000582000000000800000000000000> + | | | | "segment-ranges" = <00409000000100000000000000fcffff004090000001000000c0050001000000000066010001000000c0050000fcffff000066010001000000000f0000000000> + | | | | } + | | | | + | | | +-o AppleASCWrapV6 + | | | | { + | | | | "IOProbeScore" = 0x0 + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOClass" = "AppleASCWrapV6" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleA7IOP-ASCWrap-v6" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IONameMatch" = ("iop,ascwrap-v6","iop,ascwrap-v7") + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "iop,ascwrap-v6" + | | | | "role" = "GFX" + | | | | } + | | | | + | | | +-o iop-gfx-nub + | | | | { + | | | | "uuid" = <32324432374432392d454134442d334346322d423932302d39393844303233414536453900> + | | | | "shutdown-sleep" = <> + | | | | "segment-names" = <5f5f544558543b5f5f4441544100> + | | | | "compatible" = <696f702d6e75622c727462756464792d763200> + | | | | "coredump-enable" = <40000000> + | | | | "AAPL,phandle" = <0d010000> + | | | | "KDebugCoreID" = 0xf + | | | | "firmware-name" = <47465800> + | | | | "power-managed" = <7472756500> + | | | | "no-firmware-service" = <> + | | | | "segment-ranges" = <00409000000100000000000000fcffff004090000001000000c0050001000000000066010001000000c0050000fcffff000066010001000000000f0000000000> + | | | | "coredump-rel-privacy-approved" = <> + | | | | "name" = <696f702d6766782d6e756200> + | | | | "pre-loaded" = <01000000> + | | | | } + | | | | + | | | +-o RTBuddy(GFX) + | | | | { + | | | | "IOClass" = "RTBuddy" + | | | | "IOPlatformPanicAction" = 0x15ba8 + | | | | "RTKitVersion" = "RTKit-2784.100.168.release" + | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOReportLegendPublic" = Yes + | | | | "RTBuddyRouteProviderKey" = <0d010000> + | | | | "IOProviderClass" = "AppleA7IOPNub" + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x8002,"MaxPowerState"=0x2} + | | | | "FirmwareUUID" = "22d27d29-ea4d-3cf2-b920-998d023ae6e9" + | | | | "IOProbeScore" = 0x0 + | | | | "IOUserClientClass" = "RTBuddyUserClient" + | | | | "IONameMatch" = "iop-nub,rtbuddy-v2" + | | | | "FirmwareVersion" = "not set" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | "IONameMatched" = "iop-nub,rtbuddy-v2" + | | | | "role" = "GFX" + | | | | "IOReportLegend" = ({"IOReportGroupName"="GFX","IOReportChannels"=((0x5254537475730000,0x900020002,"status")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="IOP State"},{"IOReportGroupName"="GFX","IOReportChannels"=((0x5254537461740000,0x600020002,"power state")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x100007980000018},"IOReportSubGroupName"="Power State"}) + | | | | } + | | | | + | | | +-o RTBuddyService + | | | | | { + | | | | | "IOProbeScore" = 0x3e8 + | | | | | "CFBundleIdentifier" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchCategory" = "RTBuddyService" + | | | | | "IOClass" = "RTBuddyService" + | | | | | "IOPersonalityPublisher" = "com.apple.driver.RTBuddy" + | | | | | "IOProviderClass" = "RTBuddy" + | | | | | "CFBundleIdentifierKernel" = "com.apple.driver.RTBuddy" + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "role" = "GFX" + | | | | | } + | | | | | + | | | | +-o AGXFirmwareKextG15RTBuddy + | | | | { + | | | | "IOPropertyMatch" = {"role"="GFX"} + | | | | "CFBundleIdentifier" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOMatchCategory" = "AGXFirmwareKextG15RTBuddy" + | | | | "IOClass" = "AGXFirmwareKextG15RTBuddy" + | | | | "IOPersonalityPublisher" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOProviderClass" = "RTBuddyService" + | | | | "CFBundleIdentifierKernel" = "com.apple.AGXFirmwareKextG15GRTBuddy" + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | } + | | | | + | | | +-o GFXEndpoint1 + | | | | { + | | | | } + | | | | + | | | +-o GFXEndpoint2 + | | | { + | | | } + | | | + | | +-o mapper-gfx-asc + | | | | { + | | | | "compatible" = <696f6d6d752d6d61707065722c67667800> + | | | | "name" = <6d61707065722d6766782d61736300> + | | | | "AAPL,phandle" = <0e010000> + | | | | } + | | | | + | | | +-o AGXArmFirmwareMapper + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.AGXG15G" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "IOClass" = "AGXArmFirmwareMapper" + | | | "IOPersonalityPublisher" = "com.apple.AGXG15G" + | | | "CFBundleIdentifierKernel" = "com.apple.AGXG15G" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "iommu-mapper,gfx" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "iommu-mapper,gfx" + | | | "IOMapperID" = <0e010000> + | | | } + | | | + | | +-o mca-switch@93400000 + | | | | { + | | | | "numSerDes" = <0c000000> + | | | | "compatible" = <6d63612d7377697463682c743831323200> + | | | | "regStride" = <00400000004000000400000004000000> + | | | | "AAPL,phandle" = <0f010000> + | | | | "reg" = <0000409300000000008001000000000000003093000000000000030000000000d80004c000000000100000000000000000005093000000000040000000000000> + | | | | "clock-gates" = <63000000640000006500000067000000> + | | | | "mca-identity" = <2e307773> + | | | | "numMCLKs" = <04000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3400000,"length"=0x18000}),({"address"=0x2a3300000,"length"=0x30000}),({"address"=0x2d00400d8,"length"=0x10}),({"address"=0x2a3500000,"length"=0x4000})) + | | | | "device_type" = <6d63612d73776974636800> + | | | | "numClusters" = <04000000> + | | | | "name" = <6d63612d73776974636800> + | | | | } + | | | | + | | | +-o AppleMCA2Switch + | | | { + | | | "IOClass" = "AppleMCA2Switch" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | "IOProviderClass" = "AppleARMIODevice" + | | | "numSerDes" = 0xc + | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"DriverPowerState"=0x1} + | | | "ActiveRoutes" = () + | | | "IOPlatformWakeAction" = 0x1388 + | | | "IOProbeScore" = 0x0 + | | | "IONameMatch" = ("mca-switch,t8122") + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "numMCLKs" = 0x4 + | | | "IOFunctionParent0000010F" = <> + | | | "IONameMatched" = "mca-switch,t8122" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | "SynthesizedRoutes" = () + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | "numClusters" = 0x4 + | | | "mclkPinMask" = 0xf + | | | } + | | | + | | +-o mca0@93400000 + | | | | { + | | | | "mca-identity" = <2e306c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <04030000> + | | | | "reg" = <000040930000000000400000000000000000309300000000004000000000000000403093000000000040000000000000> + | | | | "AAPL,phandle" = <10010000> + | | | | "IOInterruptSpecifiers" = (<04030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e306c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3400000,"length"=0x4000}),({"address"=0x2a3300000,"length"=0x4000}),({"address"=0x2a3304000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613000> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca0a + | | | | { + | | | | "iisConfig" = <0102000004200100001bb700fa000100300001000f000000ff0000000408181003002010> + | | | | "AAPL,phandle" = <11010000> + | | | | "IOReportLegendPublic" = Yes + | | | | "external-power-provider" = + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "mca-identity" = <6130636d> + | | | | "function-i2s_route" = <0f0100005273326930647561306e697003030200> + | | | | "Name" = "mca0a" + | | | | "name" = <6d6361306100> + | | | | "internal-bclk-loopback" = <> + | | | | "syncGen-config" = <306e797330676b63306e797330676b63> + | | | | "compatible" = <6d63612c743831323200> + | | | | "dma-channels" = <2800000021000000000000000003000080010000000000000000000000000000290000002100000000000000000300008001000000000000000000000000000028000000220000000000000000030000800100000000000000000000000000002900000022000000000000000003000080010000000000000000000000000000> + | | | | "function-i2s_route0" = <0f0100005273326930647561316e697003030200> + | | | | "function-admac_powerswitch" = + | | | | "mclk-config" = <00000000ffffffff> + | | | | "device_type" = <69327300> + | | | | "dma-parent" = + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca0a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca0a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca0a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca0a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca0a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca0a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "fifo_depth" = 0x3c + | | | | } + | | | | + | | | +-o audio-speaker@201 + | | | | { + | | | | "device_type" = <617564696f2d6461746100> + | | | | "compatible" = <617564696f2d646174612c736e30313237373600> + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Name" = "audio-speaker" + | | | | "reg" = <0102000004000100001bb700fa000100300001000f000000ff0000000408181000002010> + | | | | "AAPL,phandle" = <12010000> + | | | | "name" = <617564696f2d737065616b657200> + | | | | } + | | | | + | | | +-o Speaker + | | | | { + | | | | "io buffer frame size" = 0x3de0 + | | | | "LowPowerActiveChannelMask" = 0x0 + | | | | "bidirectional" = Yes + | | | | "current state" = "off" + | | | | "device UID" = "Speaker" + | | | | "clock domain" = 0x6d61696e + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x10,"channels per frame"=0x4,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x10,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x10,"sample rate"=0xbb8000000000,"channels per frame"=0x4,"bits per channel"=0x18,"format flags"=0x4,"bytes per packet"=0x10,"frames$ + | | | | "outputArrayCal" = {} + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "LowPowerEnableChannelMask" = 0x0 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device name" = "SN012776" + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x4,"MaxOutputChannelCount"=0x4} + | | | | "speakerID" = 0x3 + | | | | "DebuggingInfo" = {"TestcaseRunTimeMS"=0x0,"BeginTestcaseWithRunCount"=0x0,"TestcaseNumber"=0x0,"DelayAfterRequestConfigChangeMS"=0x0,"TestcaseTimeoutMS"=0x0,"DelayBeforeRequestConfigChangeMS"=0x0,"DoNotReturnAfterRequestConfigChange"=0x0,"DelayInPerformConfigChange"=0x0} + | | | | "controls" = ({"control ID"=0x12f,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x6d757465,"value"=0x1,"base class"=0x746f676c,"read only"=0x0},{"control ID"=0x13f,"variant"=0x0,"property selectors"=(0x61747331,0x61747363,0x61747323,0x61747332,0x61747333,0x61747334),"scope"=0x6f757470,"element"=0x1,"class"=0x61747363,"value"=0x0,"base class"=0x6c65766c,"range map"=({"start db value"=0x0,"start int value"=0x0,"db per step"=0x0,"integer steps"=0x0}),"transfer function"=0x0,"read only"=0x1},{"control ID"=0x15f,"va$ + | | | | "is private" = Yes + | | | | "sample rate" = 0xbb8000000000 + | | | | "output safety offset" = 0x49 + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x10,"channels per frame"=0x8,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x10,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000}),"uses isolated IO"=0x0,"terminal type"=0x0,"current format"={"bytes per frame"=0x10,"sample rate"=0xbb8000000000,"channels per frame"=0x8,"bits per channel"=0x10,"format flags"=0xc,"bytes per packet"=0x10,"frames $ + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "output latency" = 0x4a + | | | | "is running" = No + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"},{"property selector"=0x4c50456d,"registry key"="LowPowerEnableChannelMask"},{"property selector"=0x4c50416d,"registry key"="LowPowerActiveChannelMask"},{"property selector"=0x53414461,"registry key"="outputArrayCal"},{"property selector"=0x73706964,"registry key"="speakerID"}) + | | | | "input latency" = 0x21 + | | | | "IOReporters" = Yes + | | | | "supports prewarming" = No + | | | | "device manufacturer" = "Apple Inc." + | | | | "input safety offset" = 0x31 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Speaker","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Speaker","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportChannelC$ + | | | | "transport type" = 0x626c746e + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mca1@93404000 + | | | | { + | | | | "mca-identity" = <2e316c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <05030000> + | | | | "reg" = <004040930000000000400000000000000080309300000000004000000000000000c03093000000000040000000000000> + | | | | "AAPL,phandle" = <13010000> + | | | | "IOInterruptSpecifiers" = (<05030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e316c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3404000,"length"=0x4000}),({"address"=0x2a3308000,"length"=0x4000}),({"address"=0x2a330c000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613100> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca1a + | | | | { + | | | | "mclk-config" = <01000000ffffffff> + | | | | "mca-identity" = <6131636d> + | | | | "compatible" = <6d63612c743831323200> + | | | | "Name" = "mca1a" + | | | | "AAPL,phandle" = <14010000> + | | | | "function-i2s_route" = <0f01000052733269322e7874336e697002020200> + | | | | "dma-channels" = <2c0000002100000000000000c0000000600000000000000000000000000000002d0000002100000000000000c0000000600000000000000000000000000000002c0000002200000000000000c0000000600000000000000000000000000000002d0000002200000000000000c000000060000000000000000000000000000000> + | | | | "function-admac_powerswitch" = + | | | | "syncGen-config" = <316e797331676b63316e797331676b63> + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca1a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca1a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca1a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca1a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca1a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca1a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "device_type" = <69327300> + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "dma-parent" = + | | | | "external-power-provider" = + | | | | "function-i2s_route0" = <0f01000052733269322e7872322e787401010000> + | | | | "name" = <6d6361316100> + | | | | } + | | | | + | | | +-o audio-loopback@1201 + | | | | { + | | | | "private" = <3100> + | | | | "compatible" = <617564696f2d646174612c617564696f2d6c6f6f706261636b00> + | | | | "reg" = <011200000f100100001bb700fa0001003000010003000000030000000202101000000000> + | | | | "data-sources" = <6332706102020000000001000000000080bb00004c6f6f706261636b00> + | | | | "Name" = "audio-loopback" + | | | | "device_type" = <617564696f2d6461746100> + | | | | "AAPL,phandle" = <15010000> + | | | | "name" = <617564696f2d6c6f6f706261636b00> + | | | | } + | | | | + | | | +-o Loopback + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "transport type" = 0x626c746e + | | | | "IOMatchedAtBoot" = Yes + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703263,"name"="Loopback"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703263,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x32 + | | | | "output latency" = 0x3e + | | | | "device name" = "Loopback" + | | | | "IONameMatched" = "audio-data,audio-loopback" + | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x2,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x14,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xb$ + | | | | "IOFunctionParent00000115" = <> + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x2,"bits per channel"=0x10,"format flags"=0xc,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x14,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Loopback" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x4a + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = Yes + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,audio-loopback" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x1a + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x3e8 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Loopback","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Loopback","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReportChanne$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x2,"MaxOutputChannelCount"=0x2} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o mca2@93408000 + | | | | { + | | | | "mca-identity" = <2e326c63> + | | | | "compatible" = <6d6361436c75737465722c743831323200> + | | | | "sio_mca-version" = <02000000> + | | | | "interrupt-parent" = <69000000> + | | | | "interrupts" = <06030000> + | | | | "reg" = <008040930000000000400000000000000000319300000000004000000000000000403193000000000040000000000000> + | | | | "AAPL,phandle" = <16010000> + | | | | "IOInterruptSpecifiers" = (<06030000>) + | | | | "IOInterruptControllers" = ("IOInterruptController00000069") + | | | | "device_type" = <69327300> + | | | | "mca_dma-version" = <01000000> + | | | | "#size-cells" = <0c000000> + | | | | "function-switch_config" = <0f0100004361636d2e326c63> + | | | | "#address-cells" = <00000000> + | | | | "IODeviceMemory" = (({"address"=0x2a3408000,"length"=0x4000}),({"address"=0x2a3310000,"length"=0x4000}),({"address"=0x2a3314000,"length"=0x4000})) + | | | | "IOReportLegend" = ({"IOReportGroupName"="Interrupt Statistics (by index)","IOReportChannels"=((0x496e747200000000,0x100020001," First Level Interrupt Handler Count"),(0x496e747200000001,0x100020001," Second Level Interrupt Handler Count"),(0x496e747200000002,0x100020001," First Level Interrupt Handler Time (MATUs)"),(0x496e747200000003,0x100020001," Second Level Interrupt Handler CPU Time (MATUs)"),(0x496e747200000004,0x100020001,"Second Level Interrupt Handler System Time (MATUs)")),"IORepo$ + | | | | "IOReportLegendPublic" = Yes + | | | | "name" = <6d63613200> + | | | | } + | | | | + | | | +-o AppleMCA2Cluster_T8122 + | | | | { + | | | | "IOClass" = "AppleMCA2Cluster_T8122" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleMCA2-T8122" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("mcaCluster,t8122") + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "mca-uses-iopm-overrides" = "true" + | | | | "IONameMatched" = "mcaCluster,t8122" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleMCA2-T8122" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMCA2-T8122" + | | | | "filterInterrupt" = No + | | | | } + | | | | + | | | +-o mca2a + | | | | | { + | | | | | "mclk-config" = <02000000ffffffff> + | | | | | "mca-identity" = <6132636d> + | | | | | "compatible" = <6d63612c743831323200> + | | | | | "function-mclk_frequency" = <86000000664f434e02000000> + | | | | | "AAPL,phandle" = <17010000> + | | | | | "function-i2s_route" = <0f0100005273326934647561326e697002020200> + | | | | | "dma-channels" = <3000000021000000000000000003000080010000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000003000000022000000000000000003000080010000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000> + | | | | | "function-admac_powerswitch" = + | | | | | "Name" = "mca2a" + | | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41415258554e,0x101000001,"mca2a.IRQ.DMA_A.RX_Fifo_Underflow"),(0x444d414154584f56,0x101000001,"mca2a.IRQ.DMA_A.TX_Fifo_Overflow"),(0x545841554e464c4f,0x101000001,"mca2a.IRQ.TXA_Underflow"),(0x5458414652455252,0x101000001,"mca2a.IRQ.TXA_Frame_Error"),(0x5258414f56464c4f,0x101000001,"mca2a.IRQ.RXA_Overflow"),(0x5258414652455252,0x101000001,"mca2a.IRQ.RXA_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | | "device_type" = <69327300> + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "fifo_depth" = 0x20 + | | | | | "dma-parent" = + | | | | | "external-power-provider" = + | | | | | "iisConfig" = <011300000220010000000000400001003000010003000000000000000200181802002000> + | | | | | "name" = <6d6361326100> + | | | | | } + | | | | | + | | | | +-o audio-codec-output@1301 + | | | | | { + | | | | | "device_type" = <617564696f2d6461746100> + | | | | | "compatible" = <617564696f2d646174612c637334326c383400> + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | "Name" = "audio-codec-output" + | | | | | "reg" = <011300000220010000000000400001000000000003000000000000000200202000000000> + | | | | | "AAPL,phandle" = <18010000> + | | | | | "name" = <617564696f2d636f6465632d6f757470757400> + | | | | | } + | | | | | + | | | | +-o Codec Output + | | | | | { + | | | | | "io buffer frame size" = 0x3de0 + | | | | | "LowPowerActiveChannelMask" = 0x0 + | | | | | "bidirectional" = No + | | | | | "current state" = "off" + | | | | | "device UID" = "Codec Output" + | | | | | "clock domain" = 0x6d61696e + | | | | | "output streams" = ({"stream ID"=0xc8,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xac4400000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xac4400000000},{"bytes per frame"=0x8,"channels per frame"=0x2,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x8,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xb$ + | | | | | "outputArrayCal" = {} + | | | | | "IOReportLegendPublic" = Yes + | | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | | "LowPowerEnableChannelMask" = 0x0 + | | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | | "device name" = "CS42L84 Output" + | | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x0,"MaxOutputChannelCount"=0x2} + | | | | | "DebuggingInfo" = {"TestcaseRunTimeMS"=0x0,"BeginTestcaseWithRunCount"=0x0,"TestcaseNumber"=0x0,"DelayAfterRequestConfigChangeMS"=0x0,"TestcaseTimeoutMS"=0x0,"DelayBeforeRequestConfigChangeMS"=0x0,"DoNotReturnAfterRequestConfigChange"=0x0,"DelayInPerformConfigChange"=0x0} + | | | | | "is private" = Yes + | | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x6a61636b,"value"=0x0,"base class"=0x746f676c,"read only"=0x1},{"control ID"=0x12d,"variant"=0x0,"scope"=0x696e7074,"element"=0x0,"class"=0x6a61636b,"value"=0x0,"base class"=0x746f676c,"read only"=0x1},{"control ID"=0x130,"variant"=0x0,"scope"=0x6f757470,"element"=0x0,"class"=0x646d7574,"value"=0x0,"base class"=0x746f676c,"property selectors"=(0x646d7574),"read only"=0x0},{"control ID"=0x132,"variant"=0x0,"scope"=0x6f757470,"elemen$ + | | | | | "sample rate" = 0xbb8000000000 + | | | | | "output safety offset" = 0x4a + | | | | | "input streams" = () + | | | | | "is running" = No + | | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | | "output latency" = 0x48 + | | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"},{"property selector"=0x4c50456d,"registry key"="LowPowerEnableChannelMask"},{"property selector"=0x4c50416d,"registry key"="LowPowerActiveChannelMask"},{"property selector"=0x53414461,"registry key"="outputArrayCal"}) + | | | | | "input latency" = 0x6 + | | | | | "IOReporters" = Yes + | | | | | "supports prewarming" = No + | | | | | "device manufacturer" = "Apple Inc." + | | | | | "input safety offset" = 0x18 + | | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Output","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Codec Output","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IORepo$ + | | | | | "transport type" = 0x626c746e + | | | | | } + | | | | | + | | | | +-o IOAudio2DeviceUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o mca2b + | | | | { + | | | | "mclk-config" = <02000000ffffffff> + | | | | "mca-identity" = <6232636d> + | | | | "compatible" = <6d63612c743831323200> + | | | | "function-mclk_frequency" = <86000000664f434e02000000> + | | | | "AAPL,phandle" = <19010000> + | | | | "function-i2s_route" = <0f0100005273326935647561326e697001010200> + | | | | "dma-channels" = + | | | | "function-admac_powerswitch" = + | | | | "internal-bclk-loopback" = <> + | | | | "Name" = "mca2b" + | | | | "device_type" = <69327300> + | | | | "IOReportLegend" = ({"IOReportGroupName"="AppleMCA2Cluster_T8122","IOReportChannels"=((0x444d41425258554e,0x101000001,"mca2b.IRQ.DMA_B.RX_Fifo_Underflow"),(0x444d414254584f56,0x101000001,"mca2b.IRQ.DMA_B.TX_Fifo_Overflow"),(0x545842554e464c4f,0x101000001,"mca2b.IRQ.TXB_Underflow"),(0x5458424652455252,0x101000001,"mca2b.IRQ.TXB_Frame_Error"),(0x5258424f56464c4f,0x101000001,"mca2b.IRQ.RXB_Overflow"),(0x5258424652455252,0x101000001,"mca2b.IRQ.RXB_Frame_Error")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGrou$ + | | | | "IOReportLegendPublic" = Yes + | | | | "IOPowerManagement" = {"ChildrenPowerState"=0x1,"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "dma-parent" = + | | | | "external-power-provider" = + | | | | "name" = <6d6361326200> + | | | | } + | | | | + | | | +-o audio-codec-input@1301 + | | | | { + | | | | "private" = <3100> + | | | | "compatible" = <617564696f2d646174612c637334326c38342d696e70757400> + | | | | "reg" = <011300000220010000000000400001000000000000000000010000000001202000000000> + | | | | "data-sources" = <6332706101000000000004000000000080bb00000000000044ac000000000000885801000000000000770100636f646563696e70757400> + | | | | "Name" = "audio-codec-input" + | | | | "device_type" = <617564696f2d6461746100> + | | | | "AAPL,phandle" = <1a010000> + | | | | "name" = <617564696f2d636f6465632d696e70757400> + | | | | } + | | | | + | | | +-o Codec Input + | | | | { + | | | | "exclusive access owner" = 0xffffffffffffffff + | | | | "transport type" = 0x626c746e + | | | | "IOMatchedAtBoot" = Yes + | | | | "controls" = ({"control ID"=0x12c,"variant"=0x0,"selectors"=({"value"=0x61703263,"name"="codecinput"}),"scope"=0x676c6f62,"element"=0x0,"class"=0x64737263,"value"=0x61703263,"base class"=0x736c6374,"read only"=0x0}) + | | | | "input safety offset" = 0x4c + | | | | "output latency" = 0x0 + | | | | "device name" = "CS42L84 Input" + | | | | "IONameMatched" = "audio-data,cs42l84-input" + | | | | "output streams" = () + | | | | "IOFunctionParent0000011A" = <> + | | | | "input streams" = ({"stream ID"=0x64,"starting channel"=0x1,"available formats"=({"bytes per frame"=0x4,"channels per frame"=0x1,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xbb8000000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xbb8000000000},{"bytes per frame"=0x4,"channels per frame"=0x1,"bits per channel"=0x18,"format flags"=0x4,"max sample rate"=0xac4400000000,"bytes per packet"=0x4,"frames per packet"=0x1,"format ID"=0x6c70636d,"min sample rate"=0xac$ + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x8000,"MaxPowerState"=0x1} + | | | | "custom property info" = ({"property selector"=0x4d434373,"registry key"="maxChannelCount"}) + | | | | "sample rate" = 0xbb8000000000 + | | | | "safety-offset-seed-divisor" = 0x7d0 + | | | | "device UID" = "Codec Input" + | | | | "IOReporters" = Yes + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "output safety offset" = 0x18 + | | | | "is private" = Yes + | | | | "IOProviderClass" = "AppleARMIISDevice" + | | | | "bidirectional" = No + | | | | "is running" = No + | | | | "IONameMatch" = "audio-data,cs42l84-input" + | | | | "IOReportLegendPublic" = Yes + | | | | "IOClass" = "AppleSecondaryAudio" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleEmbeddedAudio" + | | | | "input latency" = 0x34 + | | | | "device manufacturer" = "Apple Inc." + | | | | "current state" = "off" + | | | | "IOMatchCategory" = "AppleSecondaryAudio" + | | | | "clock domain" = 0x6d61696e + | | | | "IOProbeScore" = 0x0 + | | | | "io buffer frame size" = 0x3de0 + | | | | "IOReportLegend" = ({"IOReportGroupName"="Codec Input","IOReportChannels"=((0x5359534c4153544d,0x180000001,"Sleep cycles with active streams"),(0x5a53544259584652,0x180000001,"Zero start byte transfers"),(0x4f42534259584652,0x180000001,"Out-of-bounds start byte transfer")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x6400000000000000},"IOReportSubGroupName"="Misc. Debug Status"},{"IOReportGroupName"="Codec Input","IOReportChannels"=((0x494e444d414d5247,0x2100040003,"Input DMA Margin")),"IOReportChannelInfo"={"IOReport$ + | | | | "maxChannelCount" = {"MaxInputChannelCount"=0x1,"MaxOutputChannelCount"=0x0} + | | | | } + | | | | + | | | +-o IOAudio2DeviceUserClient + | | | { + | | | "IOUserClientCreator" = "pid 496, coreaudiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o smctempsensor0 + | | | | { + | | | | "name" = <736d6374656d7073656e736f723000> + | | | | "compatible" = <736d632d74656d7073656e736f7200> + | | | | "device_type" = <736d6374656d7073656e736f7200> + | | | | "timerInterval" = + | | | | "sensor" = <6d54504c> + | | | | "AAPL,phandle" = <1b010000> + | | | | } + | | | | + | | | +-o AppleSMCSensorDispatcher + | | | | { + | | | | "IOClass" = "AppleSMCSensorDispatcher" + | | | | "CFBundleIdentifier" = "com.apple.driver.AppleSMC" + | | | | "IOProviderClass" = "AppleARMIODevice" + | | | | "IOUserClientClass" = "AppleSMCSensorDispatcherUserClient" + | | | | "IOProbeScore" = 0x0 + | | | | "IONameMatch" = ("smc-tempsensor") + | | | | "IOResourceMatch" = "IOKit" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "IONameMatched" = "smc-tempsensor" + | | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSMC" + | | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSMC" + | | | | "QueueSize" = 0x0 + | | | | } + | | | | + | | | +-o AppleSMCSensorDispatcherUserClient + | | | { + | | | "IOUserClientCreator" = "pid 413, thermalmonitord" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o cpu-debug-interface + | | | | { + | | | | "aft-control-list" = <0000080703000000> + | | | | "AAPL,phandle" = <1c010000> + | | | | "aft-instance-list" = <0000182002000000414d43433000000000000000000000000000182202000000414d43433100000000000000000000000000c65802000000494f4130000000000000000000000000000006500200000041434350300000000000000000000000> + | | | | "enable_trace" = <0000e90000000000280100000000000060000f00000000000000008000000000d8000f00000000000000000202000000ffffffff0000000000000000000000000000e9010000000028010000000000006000f000000000000000008000000000d800f000000000000000000202000000ffffffff000000000000000000000000000005000000000010900000000000000800010000000000050000000000000008000100000000000b00100200000000ffffffff000000000000000000000000000015000000000010900000000000000800020000000000050000000000000008000200000000000b00100200000000ffffffff000000000000000000000000000$ + | | | | "trace_halt" = <0000e500000000004090000000000000b0000f0000000000000000000f000000ffffffff0000000000000000000000000000e501000000004090000000000000b000f00000000000000000000f000000> + | | | | "enable_stop_clocks" = <000028d400000000001000000000000000000000000000800100010000000000ffffffff00000000000000000000000000003cd40000000004060000000000000000000000000080010000000000000080000000000000800100000000000000ffffffff000000000000000000000000000238d400000000540000000000000040000000000000800100000000000000ffffffff000000000000000000000000004038d400000000004000000000000034050500000000800100000000000000ffffffff000000000000000000000000000338d400000000140000000000000004000000000000800100000000000000> + | | | | "device_type" = <6370752d64656275672d696e7465726661636500> + | | | | "aft-params" = + | | | | "cpu_halt" = <> + | | | | "stop_clocks" = <0000020000000000780600000000000000040f00000000800100000000000000ffffffff000000000000000000000000000002010000000078060000000000000004f000000000800100000000000000> + | | | | "name" = <6370752d64656275672d696e7465726661636500> + | | | | "enable_alt_trace" = <0000e90000000000280100000000000060000f00000000000000008000000000d8000f00000000000000000202000000ffffffff0000000000000000000000000000e9010000000028010000000000006000f000000000000000008000000000d800f000000000000000000202000000ffffffff000000000000000000000000000005000000000010900000000000000800010000000000050000000000000008000100000000000b00100200000000ffffffff000000000000000000000000000015000000000010900000000000000800020000000000050000000000000008000200000000000b00100200000000ffffffff00000000000000000000000$ + | | | | } + | | | | + | | | +-o AppleARMLightEmUp + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | | "IOProviderClass" = "IOService" + | | | "IOClass" = "AppleARMLightEmUp" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | | "IOMatchedAtBoot" = Yes + | | | "IONameMatch" = "cpu-debug-interface" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IONameMatched" = "cpu-debug-interface" + | | | } + | | | + | | +-o aft@10180000 + | | | { + | | | "device_type" = <61667400> + | | | "reg" = <000018100000000000c0000000000000> + | | | "IODeviceMemory" = (({"address"=0x220180000,"length"=0xc000})) + | | | "name" = <61667400> + | | | "AAPL,phandle" = <1d010000> + | | | "compatible" = <6166742c743831323000> + | | | } + | | | + | | +-o timesync + | | | { + | | | "name" = <74696d6573796e6300> + | | | "function-perf_cycle_count" = <82000000544e4350010000000400000008000000> + | | | "frequency-stability-upper" = <10270000> + | | | "local-clock" = <00000000> + | | | "frequency-tolerance-lower" = + | | | "oscillator-type" = <01000000> + | | | "frequency-stability-lower" = + | | | "AAPL,phandle" = <1e010000> + | | | "frequency-tolerance-upper" = <10270000> + | | | } + | | | + | | +-o fillmore + | | | { + | | | "device_type" = <66696c6c6d6f726500> + | | | "arch-type" = <62743100> + | | | "local-mac-address" = <2cbc87000c6a31c3> + | | | "name" = <66696c6c6d6f726500> + | | | "AAPL,phandle" = <1f010000> + | | | "compatible" = <66696c6c6d6f72652c627400> + | | | } + | | | + | | +-o apple-processor-trace + | | { + | | "device_type" = <6170706c652d70726f636573736f722d747261636500> + | | "name" = <6170706c652d70726f636573736f722d747261636500> + | | "AAPL,phandle" = <20010000> + | | "compatible" = <6170706c652d70726f636573736f722d74726163652c743831323200> + | | } + | | + | +-o buttons + | | | { + | | | "DeviceOpenedByEventSystem" = Yes + | | | "compatible" = <627574746f6e7300> + | | | "press-count-double-timeout" = + | | | "HIDServiceGlobalModifiersUsage" = <02000000> + | | | "press-count-tracking" = <01000000> + | | | "AAPL,phandle" = <21010000> + | | | "long-press-timeout" = + | | | "device_type" = <627574746f6e7300> + | | | "button-names" = <686f6c6400> + | | | "panic-usage" = <40000c00> + | | | "platform-type-consumer" = <01000000> + | | | "alternate-long-press" = <01000000> + | | | "function-button_hold" = <9f000000526e7462444c4862> + | | | "press-count-triple-timeout" = + | | | "name" = <627574746f6e7300> + | | | "press-count-usage-pairs" = <30000c0040000c00> + | | | } + | | | + | | +-o AppleM68Buttons + | | | { + | | | "IOMatchedAtBoot" = Yes + | | | "LongPressTimeout" = 0x186a0 + | | | "PrimaryUsagePage" = 0xc + | | | "IOUserClientClass" = "IOHIDEventServiceUserClient" + | | | "VersionNumber" = 0x0 + | | | "PressCountTrackingEnabled" = Yes + | | | "VendorID" = 0x0 + | | | "Built-In" = Yes + | | | "PressCountDoublePressTimeout" = 0x493e0 + | | | "DebugState" = {"ButtonInterruptTS(ns)"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"DiagnosticMaskAny"=0x0,"PowerState"=0x2,"ButtonUnfilteredMask"=0x0,"StackshotMaskOn"=No,"CoverDetached"=No,"DarkBootPending"=0x0,"ButtonPriorities"=(0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0),"DiagnosticMaskTS"=0x0,"DiagnosticMaskOn"=No,"ShutdownDebugMode"=0x0,"ShutdownNVRAMSyncDelay"=0x0,"DiagnosticMaskAll"=0x0,"SydiagnoseMaxHoldDelay"=0x7d0,"ButtonStateMask"=0x0,"ButtonNames"=("hold"),"StackshotMask"=0x1,"SydiagnoseMinHoldDelay"=0xfa,"ButtonDownFil$ + | | | "ButtonUsagePairs" = (0xc00000030) + | | | "IONameMatched" = "buttons" + | | | "PressCountTriplePressTimeout" = 0x927c0 + | | | "ProductID" = 0x0 + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleM68Buttons" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x2,"CurrentPowerState"=0x2} + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xc,"DeviceUsage"=0x1}) + | | | "ReportInterval" = 0x36b0 + | | | "VendorIDSource" = 0x0 + | | | "IOFunctionParent00000121" = <> + | | | "HIDEventServiceProperties" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"FlipLeftAndRightEdgeGestures"=No,"JitterNoMove"=0x1,"HIDTrackpadScrollAcceleration"=0x5000,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"TrackpadThreeFingerDrag"=No,"MTGestureConfiguration"={"Version"=0x1,"Behaviors"=()},"MTGestureConfigurationOverride"={"Version"=0x1,"Behaviors"=({"BehaviorID"=0x1})},"HIDPointerAcceleration"=0xb000,"NotificationCenterGesture$ + | | | "CFBundleIdentifier" = "com.apple.driver.AppleM68Buttons" + | | | "IOCFPlugInTypes" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "Priority Button" = "hold" + | | | "IONameMatch" = "buttons" + | | | "LocationID" = 0x0 + | | | "IOClass" = "AppleM68Buttons" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleM68Buttons" + | | | "PrimaryUsage" = 0x1 + | | | "CountryCode" = 0x0 + | | | "Filter Delay" = 0x36b0 + | | | "AlternateLongPressHandling" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "PressCountUsagePairs" = (0xc0030,0xc0040) + | | | "IOProbeScore" = 0x0 + | | | "HIDServiceSupport" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o IOHIDEventServiceUserClient + | | { + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 445, WindowServer" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "DebugState" = {"EventQueue"={"NoFullMsg"=0x0,"tail"=0x2780,"NotificationForce"=0x0,"NotificationCount"=0x9e,"head"=0x2780},"EnqueueEventCount"=0x9e,"LastEventType"=0x3,"LastEventTime"=0x3b505db889} + | | } + | | + | +-o port-usb-c-1 + | | { + | | "name" = <706f72742d7573622d632d3100> + | | "compatible" = <646f636b2c7573622d6300> + | | "primary-port-id" = <01000000> + | | "port-number" = <01000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7573622d6300> + | | "port-type" = <02000000> + | | "AAPL,phandle" = <22010000> + | | } + | | + | +-o port-usb-c-2 + | | { + | | "name" = <706f72742d7573622d632d3200> + | | "compatible" = <646f636b2c7573622d6300> + | | "primary-port-id" = <02010000> + | | "port-number" = <02000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7573622d6300> + | | "port-type" = <02000000> + | | "AAPL,phandle" = <23010000> + | | } + | | + | +-o port-t818-1 + | | { + | | "transports-supported" = <> + | | "AAPL,phandle" = <24010000> + | | "primary-port-id" = <05010000> + | | "port-number" = <01000000> + | | "device_type" = <706f72742d636f6d706f6e656e742d7438313800> + | | "name" = <706f72742d743831382d3100> + | | "port-type" = <11000000> + | | } + | | + | +-o backlight + | | | { + | | | "mA2Nits2ndOrderCoef" = + | | | "milliAmps2DACTablePart2" = <8f059d05ab05b805c505d105dd05e805f305fe05080612061c0625062e0637064006480650065806600668066f0677067e0685068c0693069906a006a606ac06b206b806be06c406ca06cf06d506da06df06e506ea06ef06f406f906fe06020707070c071007150719071e07220726072a072f07330737073b073f07430747074a074e075207560759075d076007640768076b076e077207750778077c077f078207850789078c078f079207950798079b079e07a107a407a707aa07ac07af07b207b507b807ba07bd07c007c207c507c807ca07cd07cf07d207d407d707d907dc07de07e107e307e507e807ea07ec07ef07f107f307f607f807fa07fc07$ + | | | "min-restriction-disableth" = <2c010000> + | | | "nits2mAmps1stOrderCoef" = <94470d00> + | | | "pre-strobe-dim-period" = <64000000> + | | | "truetone-shift-a" = <0080fbff> + | | | "LmaxProduct" = <00000d02> + | | | "LmidProduct" = <00008c00> + | | | "truetone-shift-b" = <9a190200> + | | | "blr-cct-warning" = + | | | "calibratedMidCurrent" = <30330300> + | | | "max-restriction-disableth2" = + | | | "nits2mAmps2ndOrderCoef" = + | | | "min-restriction-enableth" = <58020000> + | | | "backlight-calibration" = <0002cf00cf364dce8b02000000000000> + | | | "calibratedMaxCurrent" = + | | | "use-trinity" = <01000000> + | | | "LminProduct" = <00000200> + | | | "nits2mAmps0thOrderCoef" = + | | | "max-restriction-disableth" = <20030000> + | | | "mA2Nits0thOrderCoef" = + | | | "AAPL,phandle" = <25010000> + | | | "milliAmps2DACPart1MaxCurrent" = <00a00200> + | | | "backlight-marketing-table" = <0000000000000200a58503002d8d05008364080099590c004eee110083a4190011322400a8e83200e28147004405640000008c000080c2009a990e01cccc780100000d02> + | | | "milliAmps2DACPart2MaxCurrent" = <00801100> + | | | "milliAmps2DACTablePart1" = <000000000000000038008100bd00f0001c01430165018501a101bc01d401eb010002140227023802490259026902770285029302a002ac02b802c402cf02d902e402ee02f80201030b0314031c0325032d0335033d0345034d0354035b0362036903700377037d0384038a03900396039c03a203a703ad03b303b803bd03c303c803cd03d203d703dc03e103e503ea03ef03f303f803fc030004050409040d041104150419041d042104250429042d043104340438043c043f04430446044a044d045104540457045b045e046104640468046b046e047104740477047a047d0480048304860489048b048e0491049404970499049c049f04a104a404a704$ + | | | "name" = <6261636b6c6967687400> + | | | "backlight-update-policy" = <01000000> + | | | "iDAC2MilliAmpsTable" = <85000000880000008b0000008f0000009200000096000000990000009d000000a1000000a5000000a9000000ad000000b2000000b6000000bb000000bf000000c4000000c9000000ce000000d3000000d8000000dd000000e3000000e8000000ee000000f4000000fa00000000010000060100000d010000130100001a010000210100002801000030010000370100003f010000470100004f010000570100005f01000068010000710100007a010000830100008d01000097010000a1010000ab010000b5010000c0010000cb010000d7010000e2010000ee010000fa0100000702000014020000210200002e0200003c0200004a0200005802000067020000$ + | | | "max-restriction-factor" = <41030000> + | | | "device_type" = <6261636b6c6967687400> + | | | "use-AAB-architecture" = <01000000> + | | | "min-restriction-factor" = + | | | "max-restriction-enableth" = <2c010000> + | | | "max-restriction-factor-aaboff" = <41030000> + | | | "use-cabal" = <01000000> + | | | "sync-backlight-off" = <01000000> + | | | "sync-wake-ramp" = <01000000> + | | | "min-restriction-factor-aaboff" = + | | | "default-whitepoint-type" = <01000000> + | | | "dcp-brightness-node" = <01000000> + | | | "energy-saving" = <01000000> + | | | "mA2Nits1stOrderCoef" = <40130000> + | | | } + | | | + | | +-o AppleARMBacklight + | | { + | | "IOClass" = "AppleARMBacklight" + | | "backlight-control" = Yes + | | "display-backlight-compensation" = <000000018df9bf970000e39b000100000000fdfe77f6616a0000e561000100000000fe3abc937fea0000eb36000100000000feea83d617630000f1ec000100000000fff26206df020000f7210000ffb6000100003ea5d6c70000fbc80000ffc400010000ffcdfeb2000100000001000000010000> + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOReportLegendPublic" = Yes + | | "IOProviderClass" = "IOPlatformDevice" + | | "backlight-marketing-table" = <0000000000000200a58503002d8d05008364080099590c004eee110083a4190011322400a8e83200e28147004405640000008c000080c2009a990e01cccc780100000d02> + | | "IOFunctionParent00000125" = <> + | | "IOProbeScore" = 0x0 + | | "IONameMatch" = "backlight" + | | "CurrentNits" = 0x0 + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IONameMatched" = "backlight" + | | "new-backlight-architecture" = Yes + | | "IODisplayParameters" = {"BrightnessMilliNits"={"min"=0x2030,"value"=0x293c2,"uncalMilliNits"=0x8d63,"max"=0x2117da},"brightness"={"min"=0x0,"max"=0x10000,"value"=0x8000},"rawBrightness"={"min"=0x0,"max"=0x7ff,"value"=0x5ee},"BrightnessMicroAmps"={"min"=0xbb,"max"=0xce4c,"value"=0xdb2}} + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "IOReportLegend" = ({"IOReportGroupName"="backlight report","IOReportChannels"=((0x6d69652066616374,0x100020001,"MIE factor"),(0x6470622066616374,0x100020001,"DPB factor")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="playback backlight factors report"},{"IOReportGroupName"="backlight report","IOReportChannels"=((0x6d6963726f616d70,0x100040001,"MicroAmps value"),(0x6d696c6c696e6974,0x100040001,"MilliNits value"),(0x756d696c6c69206e,0x100040001,"UncalMilliNits value"),(0x6272696768742076,0x100040001,"U$ + | | "backlight-calibration-parameters" = {"lMinPanel"=0x83d7d,"current-for-mid-backlight"=0xe07ef,"lMidProduct"=0x8c0000,"hardware-max-current-limit"=0x118000,"lMaxPanel"=0x878cb74,"current-for-max-backlight"=0x34d020,"lMaxProduct"=0x20d0000,"milliAmps2NitsScaleFactor"=0x28b0000,"lMidPanel"=0x29097b1,"lMinProduct"=0x20000} + | | } + | | + | +-o sacm + | | | { + | | | "compatible" = <7361636d2c3100> + | | | "name" = <7361636d00> + | | | "AAPL,phandle" = <26010000> + | | | } + | | | + | | +-o AppleARMSlowAdaptiveClockingManager + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleARMSlowAdaptiveClockingManager" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "sacm" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "sacm" + | | "IOFunctionParent00000126" = <> + | | } + | | + | +-o defaults + | | | { + | | | "kern.io_throttle_period_tier3" = <14000000> + | | | "AAPL,phandle" = <27010000> + | | | "uat-enforce-gpu-carveout" = <00000000> + | | | "pmap-io-filters" = <444d50430000080050434d412404040050434d411c07040050434d410010040050434d41001c040050434d41081c0400> + | | | "no-effaceable-storage" = <> + | | | "nvme-iboot-sptm-security" = <> + | | | "l2-ecc-correctable-panic" = <01000000> + | | | "content-protect" = <> + | | | "ean-storage-present" = <> + | | | "pmap-max-asids" = <00400000> + | | | "kern.thread_group_extra_bytes" = <40000000> + | | | "cpx-encryption-mode" = <02000000> + | | | "name" = <64656661756c747300> + | | | "trm-profile" = <02000000> + | | | "kern.io_throttle_window_tier3" = <64000000> + | | | "data-journaling" = <> + | | | "aes-service-publish-timeout" = <78000000> + | | | "dual-spi-nand" = <01000000> + | | | "serial-device" = + | | | "usb-storage-workaround" = <01000000> + | | | "kern.perf_tg_no_dipi" = <01000000> + | | | "uat-vaddr-size" = <2b000000> + | | | "trm-enabled" = <01000000> + | | | "entangle-nonce" = <> + | | | "pmap-io-ranges" = <000000000800000000000000020000002700008065494350000000000a00000000000080000000002700008065494350000000000c00000000000000020000002700008065494350000000000e00000000000080000000002700008065494350000000a00500000000000020000000002700008065494350000000c005000000000000400000000027000080654943500000ac9c0200000000400000000000000740000054524144004000a10200000000400000000000000740000054524144008000a10200000000400000000000000740000046504144008009e4020000000040000000000000074000005452414400c009e402000000004000000000000007400$ + | | | "kern.vm_compressor" = <04000000> + | | | "panic-reset-type" = <02000000> + | | | } + | | | + | | +-o AppleImage4 + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.security.AppleImage4" + | | | "IOMatchCategory" = "AppleImage4" + | | | "IOClass" = "AppleImage4" + | | | "IOPersonalityPublisher" = "com.apple.security.AppleImage4" + | | | "IOProviderClass" = "IOPlatformDevice" + | | | "CFBundleIdentifierKernel" = "com.apple.security.AppleImage4" + | | | "IONameMatch" = "defaults" + | | | "IOUserClientClass" = "AppleImage4UserClient" + | | | "IONameMatched" = "defaults" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o AppleMobileApNonce + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileApNonce" + | | "IOProviderClass" = "IOPlatformDevice" + | | "IOClass" = "AppleMobileApNonce" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileApNonce" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileApNonce" + | | "IOMatchedAtBoot" = Yes + | | "IONameMatch" = "defaults" + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IONameMatched" = "defaults" + | | "IOUserClientClass" = "AppleMobileApNonceUserClient" + | | } + | | + | +-o product + | | { + | | "sandman-support" = <01000000> + | | "display-mirroring" = <01000000> + | | "upgradeable-memory" = <00000000> + | | "wifi-chipset" = <3433383800> + | | "lockdown-certtype" = <01000000> + | | "bluetooth-lea2" = <01000000> + | | "product-name" = <4d6163426f6f6b20416972202831332d696e63682c204d332c20323032342900> + | | "RF-exposure-separation-distance" = <05000000> + | | "mobiledevice-min-ver" = <3137373400> + | | "product-id" = + | | "raw-panel-serial-number" = <465031353033333035454b3235595441592b35413244345930343431413248462b50524f442b423435313334353231343532352b33353530333231363530333232313530333233413530333233302b5931313234313131325931313534313131362b363836314232343337474a35333730304d343946543434393741353137323039392b5334304a363841485a585334304a363841485a585334304a363841485a585334304a36384148> + | | "product-description" = <4d6163426f6f6b20416972202831332d696e63682c204d332c20323032342900> + | | "product-soc-name" = <4170706c65204d3300> + | | "partially-occluded-display" = <01000000> + | | "allow-32bit-apps" = <01000000> + | | "coverglass-serial-number" = <465031353033333035454b323559544159> + | | "builtin-mics" = <03000000> + | | "exclaves-enabled" = <00000000> + | | "display-backlight-compensation" = <00000003029000000000e39b000100000000fdfe0ccd00000000e561000100000000fe3a333300000000eb36000100000000feea666600000000f1ec000100000000fff2999900000000f7210000ffb600010000cccc00000000fbc80000ffc400010000ffff0000000100000001000000010000> + | | "has-boot-chime" = <01000000> + | | "compatible-device-fallback" = <4d6163426f6f6b41697231302c3100> + | | "external-hdr" = <> + | | "device-perf-memory-class" = <10000000> + | | "dual-iboot-support" = <01000000> + | | "artwork-scale-factor" = <02000000> + | | "has-exclaves" = <00000000> + | | "public-key-accelerator" = <01000000> + | | "tcon-path" = <61726d2d696f2f737069342f647038353500> + | | "name" = <70726f6475637400> + | | "artwork-device-idiom" = <6d616300> + | | "has-virtualization" = <01000000> + | | "AAPL,phandle" = <28010000> + | | "graphics-featureset-class" = <4150504c453900> + | | "compatible-app-variant" = <4d616346616d696c7932302c3100> + | | "artwork-dynamic-displaymode" = <3000> + | | "bluetooth-le" = <01000000> + | | "has-applelpm" = <00000000> + | | "framebuffer-identifier" = <3000> + | | "allow-hactivation" = <00000000> + | | "ephemeral-data-mode" = <00000000> + | | "chrome-identifier" = <3000> + | | "app-macho-architecture" = <61726d363400> + | | "atomic-firmware-update-support" = <01000000> + | | "ptp-large-files" = <01000000> + | | "udid-version" = <02000000> + | | "graphics-featureset-fallbacks" = <4150504c45383a4150504c45373a4150504c45363a4150504c45353a4150504c45343a4150504c45333a4150504c453376313a4150504c45323a4150504c45313a474c4553322c3000> + | | "ambient-light-sensor-serial-num" = <3037303130413346413345453145364200> + | | "artwork-display-gamut" = <503300> + | | "partition-style" = <6d61634f5300> + | | "single-stage-boot" = <01000000> + | | "builtin-battery" = <01000000> + | | "artwork-device-subtype" = <81060000> + | | "primary-calibration-matrix" = <01000000f2f0fa0042960600cc78feff737400003709fd00558202009b4effff33850000322c0001> + | | "usb-c-smc-pwr" = <> + | | } + | | + | +-o iboot-syscfg + | | { + | | "name" = <69626f6f742d73797363666700> + | | "AAPL,phandle" = <2b010000> + | | } + | | + | +-o filesystems-props + | | { + | | "name" = <66696c6573797374656d732d70726f707300> + | | "isc_size" = <0000401f> + | | "AAPL,phandle" = <2d010000> + | | } + | | + | +-o PassthruInterruptController + | | { + | | "IOPlatformInterruptController" = Yes + | | } + | | + | +-o ApplePCIEMSIController-apcie + | | { + | | "MSIFree" = 0x20 + | | "Vector Count" = 0x20 + | | "InterruptControllerName" = "ApplePCIEMSIController-apcie" + | | } + | | + | +-o APCIECMSIController-apciec0 + | | { + | | "MSIFree" = 0x200 + | | "Vector Count" = 0x200 + | | "InterruptControllerName" = "APCIECMSIController-apciec0" + | | } + | | + | +-o APCIECMSIController-apciec1 + | | { + | | "MSIFree" = 0x200 + | | "Vector Count" = 0x200 + | | "InterruptControllerName" = "APCIECMSIController-apciec1" + | | } + | | + | +-o ApplePCIECLegacyIntController-apciec0 + | | { + | | "InterruptControllerName" = "ApplePCIECLegacyIntController-apciec0" + | | } + | | + | +-o ApplePCIECLegacyIntController-apciec1 + | { + | "InterruptControllerName" = "ApplePCIECLegacyIntController-apciec1" + | } + | + +-o IOResources + | | { + | | "KeyboardBacklight" = Yes + | | "IOPMU" = "AppleDialogSPMIPMU is not serializable" + | | "CoreAnalyticsMessenger" = "IOService" + | | "CCDataStream" = "IOService" + | | "OSKextReceiptQueried" = Yes + | | "IOBSD" = "IOService" + | | "IOResourceMatched" = ("IOKit","IOPlatformUUID","CCPipe","AKSFileSystemKeyServices","AKSKernelServices","AKSFileVaultServices","IOResourceMatched","IOAllCPUInitialized","SEP","sepBootedOnce","IOTimeSyncTime","AppleSMCEmbeddedResource","IOTimeSyncDaemonService","IONVRAM","IOPMU","IORTC","com.apple.AppleFSCompression.Type1","IOBSD","com.apple.AppleFSCompression.Type5","com.apple.AppleFSCompression.Type3","com.apple.AppleFSCompression.Type4","com.apple.AppleFSCompression.Type7","com.apple.AppleFSCompression.Type8","com.apple.AppleFSComp$ + | | "AppleSMCEmbeddedResource" = "AppleSMCKeysEndpoint is not serializable" + | | "IONVRAM" = "IOService" + | | "com.apple.AppleFSCompression.Type10" = Yes + | | "IOAVBLocalClock" = "IOService" + | | "IOAVBNub" = "IOService" + | | "com.apple.AppleFSCompression.Type1" = Yes + | | "IOTimeSyncTime" = "IOService" + | | "com.apple.AppleFSCompression.Type11" = Yes + | | "IOTimeSyncDaemonService" = "IOService" + | | "IORTC" = "AppleDialogSPMIPMURTC is not serializable" + | | "com.apple.AppleFSCompression.Type3" = Yes + | | "AKSFileSystemKeyServices" = "AppleKeyStore is not serializable" + | | "com.apple.AppleFSCompression.Type12" = Yes + | | "boot-uuid-media" = "AppleAPFSVolume is not serializable" + | | "com.apple.AppleDiskImageController.load" = Yes + | | "com.apple.AppleFSCompression.Type4" = Yes + | | "als-lgp-version" = 0x7 + | | "CCCapture" = "IOService" + | | "CCFaultReporter" = "IOService" + | | "sepBootedOnce" = "IOService" + | | "com.apple.AppleFSCompression.Type5" = Yes + | | "com.apple.AppleFSCompression.Type13" = Yes + | | "IOAllCPUInitialized" = Yes + | | "CCPipe" = "IOService" + | | "AKSFileVaultServices" = "AppleKeyStore is not serializable" + | | "AKSKernelServices" = "AppleKeyStore is not serializable" + | | "SEP" = "IOService" + | | "com.apple.AppleFSCompression.Type7" = Yes + | | "com.apple.AppleFSCompression.Type14" = Yes + | | "CCLogStream" = "IOService" + | | "com.apple.iokit.SCSISubsystemGlobals" = Yes + | | "com.apple.AppleFSCompression.Type8" = Yes + | | "IOKit" = "IOService" + | | "IOPlatformUUID" = "EBBBA7A3-C701-55D7-9490-A651759B5894" + | | "com.apple.AppleFSCompression.Type9" = Yes + | | "IOTimeSyncClockManager" = "IOService" + | | "IOConsoleUsers" = ({"kCGSSessionOnConsoleKey"=Yes,"kSCSecuritySessionID"=0x186ab,"kCGSSessionSystemSafeBoot"=No,"kCGSessionLoginDoneKey"=Yes,"kCGSSessionIDKey"=0x101,"kCGSSessionUserNameKey"="test","kCGSSessionGroupIDKey"=0x14,"CGSSessionUniqueSessionUUID"="2378D763-CF6F-469B-90F8-CABA378BE3A9","kCGSessionLongUserNameKey"="main","kCGSSessionAuditIDKey"=0x186ab,"kCGSSessionLoginwindowSafeLogin"=No,"kCGSSessionUserIDKey"=0x1f5}) + | | "IOConsoleUsersSeed" = <79070000> + | | } + | | + | +-o com_apple_driver_FairPlayIOKit + | | | { + | | | "IOProbeScore" = 0x3e8 + | | | "CFBundleIdentifier" = "com.apple.driver.FairPlayIOKit" + | | | "IOMatchCategory" = "FairPlayIOKit" + | | | "IOClass" = "com_apple_driver_FairPlayIOKit" + | | | "IOPersonalityPublisher" = "com.apple.driver.FairPlayIOKit" + | | | "IOKitDebug" = 0x0 + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.FairPlayIOKit" + | | | "IOUserClientClass" = "com_apple_driver_FairPlayIOKitUserClient" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1053, fairplayd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | | { + | | | "IOUserClientCreator" = "pid 53795, lskdd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o com_apple_driver_FairPlayIOKitUserClient + | | { + | | "IOUserClientCreator" = "pid 20443, adid" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AUC + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.AUC" + | | "IOProviderClass" = "IOResources" + | | "IOClass" = "AUC" + | | "IOPersonalityPublisher" = "com.apple.AUC" + | | "CFBundleIdentifierKernel" = "com.apple.AUC" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | "IOUserClientClass" = "AUCUserClient" + | | } + | | + | +-o AppleARMBootPerf + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "AppleARMBootPerf" + | | "IOClass" = "AppleARMBootPerf" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOPowerManagement" = {"CapabilityFlags"=0x8000,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleARMSFRManifest + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchCategory" = "AppleARMSFRManifest" + | | "IOClass" = "AppleARMSFRManifest" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleARMPlatform" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleARMPlatform" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleMesaResources + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleBiometricSensor" + | | "IOMatchCategory" = "AppleMesaResources" + | | "IOClass" = "AppleMesaResources" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBiometricSensor" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBiometricSensor" + | | "IOMatchedAtBoot" = Yes + | | } + | | + | +-o AppleCredentialManager + | | | { + | | | "IOClass" = "AppleCredentialManager" + | | | "HIDRM_PolicyEnabled" = No + | | | "TRM_RelaxedPeriod" = Yes + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleCredentialManager" + | | | "IOMatchedAtBoot" = Yes + | | | "ACMTRMStore_AnalyticsSave" = <0100000020000000f8f324680000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8f3246800000000000000000000000000000000000000000000000000000000000000000000000000000000000000002cb5256800000000f306000003000000000000000000000041ba000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8f324680000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOProviderClass" = "IOResources" + | | | "TRM_CacheMissCount" = 0x0 + | | | "TRM_PolicyTimeout" = 0x93a80 + | | | "IOProbeScore" = 0x0 + | | | "IOUserClientClass" = "AppleCredentialManagerUserClient" + | | | "TRM_PolicyReason" = 0x1 + | | | "TRM_CacheMissThreshold" = 0x5 + | | | "TRM_GracePeriodReason" = 0x2 + | | | "TRM_ConfigProfile" = 0x2 + | | | "TRM_CacheMiss" = No + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleCredentialManager" + | | | "IOMatchCategory" = "AppleCredentialManager" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleCredentialManager" + | | | "TRM_GracePeriodTimeout" = 0x3f480 + | | | "TRM_EffectiveConfigProfile" = 0x2 + | | | "TRM_RelaxedPeriodTimeout" = 0x3f480 + | | | "TRM_DeviceLocked" = No + | | | "TRM_Recovery" = No + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "ACMTRMStore_AnalyticsLoad" = <010000001b000000471b1e680000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a84f1e68000000001e2a0000080000000000000000000000430a000007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000471b1e680000000000000000000000000000000000000000000000000000000000000000000000000000000000$ + | | | "HIDRM_EnrollmentPending" = Yes + | | | "TRM_BaseSystem" = No + | | | "TRM_UnlockedPeriod" = Yes + | | | "TRM_UnlockedPeriodTimeout" = 0x15180 + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleCredentialManagerUserClient + | | { + | | "IOUserClientCreator" = "pid 24044, AppleCredentialM" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleDiskImagesController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleDiskImages2" + | | | "IOMatchCategory" = "AppleDiskImageDevice" + | | | "IOClass" = "AppleDiskImagesController" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleDiskImages2" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleDiskImages2" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "DIDeviceCreatorUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o AppleDiskImageDevice@0 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x0 + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x0 + | | | | "Device Characteristics" = {"Serial Number"="12000001-0000-0000-9AD3-080000000000","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x0 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = No + | | | | "DiskImageURL" = "file:///System/Library/AssetsV2/com_apple_MobileAsset_iOSSimulatorRuntime/6fb1e5fe25ee1c372f7116516e615c556906bd4e.asset/AssetData/090-44150-318.dmg" + | | | | "InstanceID" = "12000001-0000-0000-9AD3-080000000000" + | | | | "image-format-read-only" = No + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1205, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x15de8b5c00,"Errors (Write)"=0x0,"Total Time (Read)"=0xc0cd3253c7,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x486ec,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk4" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x14 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x21f608600 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x4 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "0CA45903-8792-4D81-96A5-03C2789FE01B" + | | | | } + | | | | + | | | +-o Untitled 1@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x4400 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x15 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "C2542757-AC23-44E2-86C9-C86E09CFE0DE" + | | | | "BSD Unit" = 0x4 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk4s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x4876e,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x15df4c0000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x16 + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "A5FE6C9D-215C-4BBC-8FB0-1DA1916DDC04" + | | | | "BSD Unit" = 0x5 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk5" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0xc9000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x15dee26000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x481e2,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object ca$ + | | | | "UUID" = "A5FE6C9D-215C-4BBC-8FB0-1DA1916DDC04" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o iOS 18.4 Simulator Bundle@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x1 + | | | | "Sealed" = "No" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "iOS 18.4 Simulator Bundle" + | | | | "Size" = 0x21f600000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x17 + | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Unmap"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "1E636626-73D7-484B-835A-A24FBF7D2C5C" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x15dee26000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x8bb,"Calls to VNOP_GETATTRLISTBULK"=0x3d,"Calls to VNOP_CLOSE"=0x3f0,"Calls to VNOP_MNOMAP"=0x0,"Calls to VNOP_INACTIVE"=0x1,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x8ddbf,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x481e2,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Cal$ + | | | | "BSD Unit" = 0x5 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk5s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@1 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x0 + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x1 + | | | | "Device Characteristics" = {"Serial Number"="5AA5CF43-80E8-5387-A1C2-185EBC8FD440","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x0 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = No + | | | | "DiskImageURL" = "file:///Library/Developer/CoreSimulator/Cryptex/Images/bundle/SimRuntimeBundle-21CF05C3-9B4C-4CBA-BABC-8D9C33F0052A/Restore/090-44334-323.dmg" + | | | | "InstanceID" = "5AA5CF43-80E8-5387-A1C2-185EBC8FD440" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 1218, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x98a72ec00,"Errors (Write)"=0x0,"Total Time (Read)"=0x1944b9d9c79c,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x10da69,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk6" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x18 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x4d1c08600 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x6 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "D0192999-C7DA-4EF8-8170-A81184138B1A" + | | | | } + | | | | + | | | +-o Untitled 1@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x4400 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x19 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "4D5EB942-18ED-48C7-9B56-0601C0F6E737" + | | | | "BSD Unit" = 0x6 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk6s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x10db6e,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x98ad2e000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1a + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "4C8AF76D-682E-493B-B6E1-3554FD1FAB3F" + | | | | "BSD Unit" = 0x7 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk7" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x1cb000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x91df4b000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0xa0ed5,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object ca$ + | | | | "UUID" = "4C8AF76D-682E-493B-B6E1-3554FD1FAB3F" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o iOS 18.4 Simulator@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x21 + | | | | "Sealed" = "Yes" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "iOS 18.4 Simulator" + | | | | "Size" = 0x4d1c00000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1b + | | | | "FormattedBy" = "newfs_apfs (2142.41.2.100.2)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "DD50EC5C-3A04-49B5-88ED-F50BB6C03943" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x91df4b000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x3ce71c36,"Calls to VNOP_GETATTRLISTBULK"=0xd38,"Calls to VNOP_CLOSE"=0x44fc21,"Calls to VNOP_MNOMAP"=0x16cb7,"Calls to VNOP_INACTIVE"=0x145e9a,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0xacb650,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0xa0ed5,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed $ + | | | | "BSD Unit" = 0x7 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk7s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@2 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x1f5 + | | | | "bs-apple-quarantine-info" = <712f303038333b36383063633065303b5361666172693b31373743353735392d444336382d343843392d383945442d37323431334631353541453700> + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "quarantine" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x2 + | | | | "Device Characteristics" = {"Serial Number"="D7ECA3FF-A0C0-59B4-A532-AE465A6B126C","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x14 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = Yes + | | | | "DiskImageURL" = "file:///Users/main/Downloads/Endoparasitic_2_v1_0_4_MacOS-U2B.iso" + | | | | "InstanceID" = "D7ECA3FF-A0C0-59B4-A532-AE465A6B126C" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 3005, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x34205c00,"Errors (Write)"=0x0,"Total Time (Read)"=0x580251bb3,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x8105,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk8" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x1c + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x13200000 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0x8 + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "FC720CE5-7197-4BC1-ACA6-D7D789C4C6EF" + | | | | } + | | | | + | | | +-o disk image@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x5000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1d + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "5801D318-7D51-4CE7-B916-F64493CFAA6D" + | | | | "BSD Unit" = 0x8 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk8s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x80f9,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x341fc000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1e + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "4E0CA371-907B-43DF-BFF1-5D7F31104991" + | | | | "BSD Unit" = 0x9 + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk9" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x6000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x3417f000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x80b8,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache:$ + | | | | "UUID" = "4E0CA371-907B-43DF-BFF1-5D7F31104991" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o Endoparasitic 2@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x1 + | | | | "Sealed" = "No" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "Endoparasitic 2" + | | | | "Size" = 0x131f6000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x1f + | | | | "FormattedBy" = "newfs_apfs (2313.41.1)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "F9F7CE72-0818-4C54-A869-DA53F4F8A363" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x3417f000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0x1550,"Calls to VNOP_GETATTRLISTBULK"=0x113,"Calls to VNOP_CLOSE"=0x4b87,"Calls to VNOP_MNOMAP"=0x1f,"Calls to VNOP_INACTIVE"=0x232,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x1b94e,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x80b8,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"$ + | | | | "BSD Unit" = 0x9 + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk9s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@3 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x1f5 + | | | | "bs-apple-quarantine-info" = <712f303038333b36383063633066333b5361666172693b34394635334338332d424446312d343734452d384644352d33364130344534304134383200> + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "quarantine" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x3 + | | | | "Device Characteristics" = {"Serial Number"="BFCD03D4-99A0-5CAF-B15C-6DDC62DED0C2","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x14 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = Yes + | | | | "DiskImageURL" = "file:///Users/main/Downloads/Mini_Motorways_v1_16_1_MacOS.iso" + | | | | "InstanceID" = "BFCD03D4-99A0-5CAF-B15C-6DDC62DED0C2" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 3105, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x155cc00,"Errors (Write)"=0x0,"Total Time (Read)"=0x2e3ee22,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x9e,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk10" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x20 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x12900000 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0xa + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "E143967B-EA4C-473D-B94C-8A7AC98A6F30" + | | | | } + | | | | + | | | +-o disk image@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x5000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x128f6000 + | | | | "Content" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x21 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "AE14D537-4C04-43BC-BF74-4FBE1BF64116" + | | | | "BSD Unit" = 0xa + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk10s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "7C3457EF-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | "TierType" = "Main" + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainerScheme + | | | | { + | | | | "IOClass" = "AppleAPFSContainerScheme" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="7C3457EF-0000-11AA-AA11-00306543ECAC"}) + | | | | "IOProbeScore" = 0x7d0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Operations (Read)"=0x92,"Bytes (Write)"=0x0,"Operations (Write)"=0x0,"Bytes (Read)"=0x1553000} + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "APFSComposited" = No + | | | | } + | | | | + | | | +-o AppleAPFSMedia + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x128f6000 + | | | | "Content" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x22 + | | | | "Whole" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "EncryptionBlockSize" = 0x200 + | | | | "UUID" = "0AA49C09-CBE8-4EC3-B154-5D3E5A84E549" + | | | | "BSD Unit" = 0xb + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk11" + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Content Hint" = "EF57347C-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = No + | | | | } + | | | | + | | | +-o AppleAPFSMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7918 + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "AppleAPFSMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "AppleAPFSMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o AppleAPFSContainer + | | | | { + | | | | "IOClass" = "AppleAPFSContainer" + | | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | | "IOProviderClass" = "IOMedia" + | | | | "IOPropertyMatch" = ({"Content Hint"="EF57347C-0000-11AA-AA11-00306543ECAC"}) + | | | | "Logical Block Size" = 0x1000 + | | | | "IOUserClientClass" = "AppleAPFSUserClient" + | | | | "IOProbeScore" = 0x3e8 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "Statistics" = {"Metadata: Number of spaceman bitmap bytes read"=0x6000,"Metadata: Number of write errors"=0x0,"Number of times device's cache flushed"=0x0,"Write burst: Total number of I/Os"=0x0,"Write burst: Total time"=0x0,"Bytes read from block device"=0x14e4000,"Object cache: Number of writes"=0x0,"Object cache: Number of objects processed by partial cache flushes"=0x0,"Read requests sent to block device"=0x50,"Metadata: Number of bytes written"=0x0,"Write burst: Total time between bursts"=0x0,"Object cache: Nu$ + | | | | "UUID" = "0AA49C09-CBE8-4EC3-B154-5D3E5A84E549" + | | | | "ContainerBlockSize" = 0x1000 + | | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | | "Status" = "Online" + | | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | | } + | | | | + | | | +-o Mini Motorways@1 + | | | | { + | | | | "Logical Block Size" = 0x1000 + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x1000 + | | | | "RoleValue" = 0x0 + | | | | "Writable" = No + | | | | "IncompatibleFeatures" = 0x1 + | | | | "Sealed" = "No" + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "FullName" = "Mini Motorways" + | | | | "Size" = 0x128f6000 + | | | | "Content" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x23 + | | | | "FormattedBy" = "newfs_apfs (2317.81.2)" + | | | | "Whole" = No + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "Removable" = Yes + | | | | "UUID" = "85CA7846-AA18-4FAB-B50D-92856B5A9007" + | | | | "CaseSensitive" = No + | | | | "Statistics" = {"Metadata: Number of fsroot bytes written"=0x0,"Bytes read from block device"=0x14e4000,"Calls to VNOP_ALLOCATE"=0x0,"Calls to VNOP_LOOKUP"=0xf69,"Calls to VNOP_GETATTRLISTBULK"=0x62,"Calls to VNOP_CLOSE"=0x5f5,"Calls to VNOP_MNOMAP"=0xb,"Calls to VNOP_INACTIVE"=0x14e,"Calls to VNOP_REMOVENAMEDSTREAM"=0x0,"Calls to VNOP_READ"=0x146,"File defrag: Number of failed defrag attempts"=0x0,"Calls to VNOP_BLOCKMAP"=0x50,"Calls to VNOP_CREATE"=0x0,"Metadata: Number of objects failed to write"=0x0,"Calls to $ + | | | | "BSD Unit" = 0xb + | | | | "Ejectable" = Yes + | | | | "VolGroupUUID" = "00000000-0000-0000-0000-000000000000" + | | | | "BSD Name" = "disk11s1" + | | | | "BSD Major" = 0x1 + | | | | "Physical Block Size" = 0x1000 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Status" = "Online" + | | | | "Content Hint" = "41504653-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o AppleAPFSVolumeBSDClient + | | | { + | | | "IOProbeScore" = 0x7918 + | | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "AppleAPFSVolumeBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | | "IOProviderClass" = "AppleAPFSVolume" + | | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@5 + | | | | { + | | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | | "Physical Interconnect Location" = "File" + | | | | "RootDeviceEntryID" = 0x1000007e0 + | | | | "owner-uid" = 0x1f5 + | | | | "bs-apple-quarantine-info" = <712f303038333b36383232353633643b5361666172693b32383931354441462d453339442d344232332d424436382d43354343334144394339333400> + | | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | | "quarantine" = Yes + | | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | | "IOUnit" = 0x5 + | | | | "Device Characteristics" = {"Serial Number"="21689AF2-7B6E-57C6-9410-70FFCEC38F27","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | | "owner-gid" = 0x14 + | | | | "IOMaximumBlockCountRead" = 0x1000 + | | | | "sparse-backend" = No + | | | | "IOMaximumByteCountRead" = 0x200000 + | | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | | "device-type" = "Generic" + | | | | "image-encrypted" = No + | | | | "IOMaximumByteCountWrite" = 0x200000 + | | | | "autodiskmount" = Yes + | | | | "DiskImageURL" = "file:///Users/main/Downloads/steam.dmg" + | | | | "InstanceID" = "21689AF2-7B6E-57C6-9410-70FFCEC38F27" + | | | | "image-format-read-only" = Yes + | | | | } + | | | | + | | | +-o DIDeviceIOUserClient + | | | | { + | | | | "IOUserClientCreator" = "pid 37017, diskimagesiod" + | | | | "IOUserClientDefaultLocking" = Yes + | | | | } + | | | | + | | | +-o IOBlockStorageDriver + | | | | { + | | | | "IOClass" = "IOBlockStorageDriver" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x1106a00,"Errors (Write)"=0x0,"Total Time (Read)"=0x285304e,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x1f2,"Retries (Write)"=0x0} + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | } + | | | | + | | | +-o Apple Disk Image Media + | | | | { + | | | | "Content" = "GUID_partition_scheme" + | | | | "Removable" = Yes + | | | | "Whole" = Yes + | | | | "Leaf" = No + | | | | "BSD Name" = "disk13" + | | | | "Ejectable" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | | "BSD Minor" = 0x25 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "Writable" = No + | | | | "BSD Major" = 0x1 + | | | | "Size" = 0x1508a00 + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Open" = Yes + | | | | "Content Hint" = "" + | | | | "BSD Unit" = 0xd + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | | { + | | | | "IOProbeScore" = 0x7530 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | | "IOClass" = "IOMediaBSDClient" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchedAtBoot" = Yes + | | | | "IOResourceMatch" = "IOBSD" + | | | | } + | | | | + | | | +-o IOGUIDPartitionScheme + | | | | { + | | | | "IOProbeScore" = 0xfa0 + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | | "IOMatchCategory" = "IOStorage" + | | | | "IOClass" = "IOGUIDPartitionScheme" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | | "IOProviderClass" = "IOMedia" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | | "Content Mask" = "GUID_partition_scheme" + | | | | "IOMatchedAtBoot" = Yes + | | | | "UUID" = "E1F5B53B-EF58-40ED-B01B-229B56649FCF" + | | | | } + | | | | + | | | +-o disk image@1 + | | | | { + | | | | "Open" = Yes + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x5000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0x14ff000 + | | | | "Content" = "48465300-0000-11AA-AA11-00306543ECAC" + | | | | "BSD Minor" = 0x26 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "E5479ACB-9769-42B2-AB9D-2F9CB2525263" + | | | | "BSD Unit" = 0xd + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk13s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "48465300-0000-11AA-AA11-00306543ECAC" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7530 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "IOMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleDiskImageDevice@6 + | | | { + | | | "IOMaximumBlockCountWrite" = 0x1000 + | | | "Physical Interconnect Location" = "File" + | | | "RootDeviceEntryID" = 0x1000007e0 + | | | "owner-uid" = 0x1f5 + | | | "bs-apple-quarantine-info" = <712f303138333b36383234356238373b5361666172693b46453032374536312d433036432d343744462d414331442d38303741463743363441374200> + | | | "IOUserClientClass" = "DIDeviceIOUserClient" + | | | "quarantine" = Yes + | | | "IOStorageFeatures" = {"Priority"=Yes,"Barrier"=Yes} + | | | "IOUnit" = 0x6 + | | | "Device Characteristics" = {"Serial Number"="70EE0FE8-69D0-5FBC-A7D4-8A6F0319C35C","Product Name"="Disk Image","Vendor Name"="Apple","Product Revision Level"="385.101.1"} + | | | "IOServiceBusyTimeoutExtensions" = 0x8 + | | | "owner-gid" = 0x14 + | | | "IOMaximumBlockCountRead" = 0x1000 + | | | "sparse-backend" = No + | | | "IOMaximumByteCountRead" = 0x200000 + | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File"} + | | | "device-type" = "Generic" + | | | "image-encrypted" = No + | | | "IOMaximumByteCountWrite" = 0x200000 + | | | "autodiskmount" = Yes + | | | "DiskImageURL" = "file:///Users/main/Downloads/Docker.dmg" + | | | "InstanceID" = "70EE0FE8-69D0-5FBC-A7D4-8A6F0319C35C" + | | | "image-format-read-only" = Yes + | | | } + | | | + | | +-o DIDeviceIOUserClient + | | | { + | | | "IOUserClientCreator" = "pid 40424, diskimagesiod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOBlockStorageDriver + | | | { + | | | "IOClass" = "IOBlockStorageDriver" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0x12989e400,"Errors (Write)"=0x0,"Total Time (Read)"=0x1eb00f797e,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0xc268,"Retries (Write)"=0x0} + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | } + | | | + | | +-o Apple Disk Image Media + | | | { + | | | "Content" = "GUID_partition_scheme" + | | | "Removable" = Yes + | | | "Whole" = Yes + | | | "Leaf" = No + | | | "BSD Name" = "disk14" + | | | "Ejectable" = Yes + | | | "Preferred Block Size" = 0x200 + | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | "BSD Minor" = 0x27 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Writable" = No + | | | "BSD Major" = 0x1 + | | | "Size" = 0x92800000 + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Open" = Yes + | | | "Content Hint" = "" + | | | "BSD Unit" = 0xe + | | | } + | | | + | | +-o IOMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7530 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "IOMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOGUIDPartitionScheme + | | | { + | | | "IOProbeScore" = 0xfa0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOStorage" + | | | "IOClass" = "IOGUIDPartitionScheme" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOPropertyMatch" = {"Whole"=Yes} + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "Content Mask" = "GUID_partition_scheme" + | | | "IOMatchedAtBoot" = Yes + | | | "UUID" = "20A24FD4-1914-49A5-BE5E-6F6546EBC26B" + | | | } + | | | + | | +-o EFI System Partition@1 + | | | | { + | | | | "Open" = No + | | | | "Preferred Block Size" = 0x200 + | | | | "Base" = 0x5000 + | | | | "Writable" = No + | | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | | "Size" = 0xc800000 + | | | | "Content" = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B" + | | | | "BSD Minor" = 0x29 + | | | | "Whole" = No + | | | | "Removable" = Yes + | | | | "UUID" = "D53F73A4-B8C5-49B3-BD9F-27F231A38097" + | | | | "BSD Unit" = 0xe + | | | | "BSD Major" = 0x1 + | | | | "Ejectable" = Yes + | | | | "BSD Name" = "disk14s1" + | | | | "Partition ID" = 0x1 + | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | "GPT Attributes" = 0x0 + | | | | "Content Hint" = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B" + | | | | "Leaf" = Yes + | | | | } + | | | | + | | | +-o IOMediaBSDClient + | | | { + | | | "IOProbeScore" = 0x7530 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchCategory" = "IOMediaBSDClient" + | | | "IOClass" = "IOMediaBSDClient" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOMedia" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o disk image@2 + | | | { + | | | "Open" = Yes + | | | "Preferred Block Size" = 0x200 + | | | "Base" = 0xc805000 + | | | "Writable" = No + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Size" = 0x7dff6000 + | | | "Content" = "48465300-0000-11AA-AA11-00306543ECAC" + | | | "BSD Minor" = 0x28 + | | | "Whole" = No + | | | "Removable" = Yes + | | | "UUID" = "7538E592-3B15-42C4-AA54-686AB6CA07D6" + | | | "BSD Unit" = 0xe + | | | "BSD Major" = 0x1 + | | | "Ejectable" = Yes + | | | "BSD Name" = "disk14s2" + | | | "Partition ID" = 0x2 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "GPT Attributes" = 0x0 + | | | "Content Hint" = "48465300-0000-11AA-AA11-00306543ECAC" + | | | "Leaf" = Yes + | | | } + | | | + | | +-o IOMediaBSDClient + | | { + | | "IOProbeScore" = 0x7530 + | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | "IOMatchCategory" = "IOMediaBSDClient" + | | "IOClass" = "IOMediaBSDClient" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | "IOProviderClass" = "IOMedia" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleFDEKeyStore + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleFDEKeyStore" + | | "IOMatchCategory" = "AppleFDEKeyStore" + | | "IOClass" = "AppleFDEKeyStore" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleFDEKeyStore" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleFDEKeyStore" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleFDEKeyStoreUserClient" + | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleIPAppender + | | { + | | "IOClass" = "AppleIPAppender" + | | "CFBundleIdentifier" = "com.apple.driver.AppleIPAppender" + | | "IOProviderClass" = "IOResources" + | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | "IOUserClientClass" = "AppleIPAppenderUserClient" + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "AppleIPAppender" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleIPAppender" + | | "IOKitDebug" = 0xffff + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleIPAppender" + | | } + | | + | +-o AppleLockdownMode + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleLockdownMode" + | | "IOMatchCategory" = "AppleLockdownMode" + | | "IOClass" = "AppleLockdownMode" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleLockdownMode" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleLockdownMode" + | | "IOMatchedAtBoot" = Yes + | | } + | | + | +-o AppleRSMChannelController + | | { + | | "IOMatchCategory" = "AppleRSMChannelController" + | | "IOUserClientClass" = "AppleRSMChannelControllerClient" + | | "IOProbeScore" = 0x0 + | | "IOPowerManagement" = {"DevicePowerState"=0x1,"CurrentPowerState"=0x1,"CapabilityFlags"=0x4,"MaxPowerState"=0x2,"PowerOverrideOn"=Yes} + | | } + | | + | +-o AppleKeyStore + | | | { + | | | "IOClass" = "AppleKeyStore" + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPKeyStore" + | | | "IOProviderClass" = "IOResources" + | | | "IOPlatformWakeAction" = 0x3e8 + | | | "IOUserClientClass" = "AppleKeyStoreUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleKeyStore" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPKeyStore" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPKeyStore" + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 377, UserEventAgent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 441, AirPlayXPCHelper" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 414, opendirectoryd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 572, searchpartyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 504, authd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 775, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 787, secd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 821, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 872, coreauthd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 823, corespeechd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 959, chronod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 817, rapportd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 981, bluetoothuserd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 986, seserviced" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 958, ctkd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 989, corespotlightd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 940, nearbyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1049, audioaccessoryd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1673, tipsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 845, homed" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 47528, iCloudNotificati" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 53795, lskdd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 97641, duetexpertd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 7750, UniversalControl" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 7755, securityd_system" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8198, amsaccountsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 8874, biometrickitd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 18762, ctkd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19126, mobileactivation" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19586, GSSCred" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19587, AppSSOAgent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24063, powerexperienced" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 23928, AuthenticationSe" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 20442, akd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24064, milod" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 23782, followupd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24066, appleaccountd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24101, transparencyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24101, transparencyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24122, keybagd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24264, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24265, replicatord" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19137, storagekitd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24356, applekeystored" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24425, fairplaydeviceid" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 25219, containermanager" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 25217, appstoreagent" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 25567, financed" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 26343, voicebankingd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19109, spindump" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 24130, ReportCrash" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 37798, appstorecomponen" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleKeyStoreUserClient + | | { + | | "IOUserClientCreator" = "pid 20440, cdpd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleKeyStoreTest + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleSEPKeyStore" + | | "IOMatchCategory" = "AppleKeyStoreTest" + | | "IOClass" = "AppleKeyStoreTest" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleSEPKeyStore" + | | "IOPlatformWakeAction" = 0x3e8 + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSEPKeyStore" + | | "IOUserClientClass" = "AppleKeyStoreTestUserClient" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o AppleSSE + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSSE" + | | | "IOMatchCategory" = "AppleSSE" + | | | "IOClass" = "AppleSSE" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSSE" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSSE" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "AppleSSEUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o AppleSSEUserClient + | | | { + | | | "IOUserClientCreator" = "pid 1042, passd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleSSEUserClient + | | { + | | "IOUserClientCreator" = "pid 19395, nfcd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleUIOMem + | | { + | | "IOName" = "AppleUIOMem" + | | "CFBundleIdentifier" = "com.apple.driver.AppleUIO" + | | "IOMatchCategory" = "AppleUIOMem" + | | "IOClass" = "AppleUIOMem" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleUIO" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleUIO" + | | "IOProbeScore" = 0x0 + | | "IOUserClientClass" = "AppleUIOMemUserClient" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o CoreAnalyticsHub + | | | { + | | | "IOClass" = "CoreAnalyticsHub" + | | | "CFBundleIdentifier" = "com.apple.iokit.CoreAnalyticsFamily" + | | | "IOProviderClass" = "IOResources" + | | | "IOUserClientClass" = "CoreAnalyticsUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "CoreAnalyticsHub" + | | | "IOReportLegendPublic" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOReportLegend" = ({"IOReportGroupName"="Hub Stats","IOReportChannels"=((0x4573692020202020,0x180000001,"API calls"),(0x4573612020202020,0x180000001,"API accepted"),(0x4573642020202020,0x180000001,"API dropped and freed"),(0x4573722020202020,0x180000001,"API per-event rate exceeded"),(0x4573702020202020,0x180000001,"Pending Retained Items"),(0x5364716620202020,0x180000001,"Shared Data Queue full, retry"),(0x45736d2020202020,0x180000001,"Serialized Messages"),(0x4573622020202020,0x180000001,"Serialized Message Bytes"),(0x4573662020$ + | | | "IOPersonalityPublisher" = "com.apple.iokit.CoreAnalyticsFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.CoreAnalyticsFamily" + | | | } + | | | + | | +-o CoreAnalyticsMessenger + | | | { + | | | "IOClass" = "CoreAnalyticsMessenger" + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | } + | | | + | | +-o CoreAnalyticsUserClient + | | { + | | "IOUserClientCreator" = "pid 453, analyticsd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o EndpointSecurityDriver + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.EndpointSecurity" + | | "IOMatchCategory" = "EndpointSecurityDriver" + | | "IOClass" = "EndpointSecurityDriver" + | | "IOPersonalityPublisher" = "com.apple.iokit.EndpointSecurity" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.EndpointSecurity" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "EndpointSecurityDriverClient" + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOBluetoothHCIController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOMatchCategory" = "IOBluetoothHCIController" + | | | "IOClass" = "IOBluetoothHCIController" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOBluetoothFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "BluetoothTransportConnected" = Yes + | | | "Built-In" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o IOBluetoothACPIMethods + | | | { + | | | } + | | | + | | +-o IOBluetoothHCIUserClient + | | | { + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOBluetoothDevice + | | | { + | | | "ConnectionHandle" = 0x1 + | | | "BluetoothObjectID" = 0x2 + | | | "BD_ADDR" = + | | | "BTTTYName" = "Bluetooth-Incoming-Port" + | | | "MaxACLPacketSize" = 0x0 + | | | "Link Level Encryption" = 0x0 + | | | "IODEXTMatchCount" = 0x1 + | | | "DeviceType" = "Serial" + | | | "BTAddress" = + | | | "ClassOfDevice" = 0x0 + | | | "IsInitiator" = Yes + | | | } + | | | + | | +-o IOUserBluetoothSerialDriver + | | | { + | | | "IOClass" = "IOUserService" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOProviderClass" = "IOBluetoothDevice" + | | | "IOUserServerCDHash" = "888255d3da25900b9f83b20ee0a094a6d05162d0" + | | | "IOPropertyMatch" = {"ClassOfDevice"=0x0,"DeviceType"="Serial"} + | | | "IOUserBluetoothSerialClient" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserBluetoothSerialClient"} + | | | "IOMatchedPersonality" = {"IOClass"="IOUserService","CFBundleIdentifier"="com.apple.IOUserBluetoothSerialDriver","IOProviderClass"="IOBluetoothDevice","IOUserServerCDHash"="888255d3da25900b9f83b20ee0a094a6d05162d0","IOPropertyMatch"={"ClassOfDevice"=0x0,"DeviceType"="Serial"},"IOUserBluetoothSerialClient"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserBluetoothSerialClient"},"PTY"={"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.drive$ + | | | "PTY" = {"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"} + | | | "IOProbeScore" = 0x0 + | | | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOMatchCategory" = "IOUserBluetoothSerialDriver" + | | | "DeviceAddress" = + | | | "IOUserClasses" = ("IOUserBluetoothSerialDriver","IOService","OSObject") + | | | "IOPersonalityPublisher" = "com.apple.IOUserBluetoothSerialDriver" + | | | "kOSBundleDextUniqueIdentifier" = <1526ca90d643b7c641f429b8e2b92744a631623b75d77a819cc68546b9fc3ac2> + | | | "CFBundleIdentifierKernel" = "com.apple.driver.driverkit.serial" + | | | "ClassOfDevice" = 0x0 + | | | "IOUserClass" = "IOUserBluetoothSerialDriver" + | | | } + | | | + | | +-o IOUserBluetoothSerialClient + | | | { + | | | "IOUserClass" = "IOUserBluetoothSerialClient" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOClass" = "IOUserUserClient" + | | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOUserClasses" = ("IOUserBluetoothSerialClient","IOUserClient","IOService","OSObject") + | | | } + | | | + | | +-o IOUserPseudoSerial + | | | { + | | | "IOUserClass" = "IOUserPseudoSerial" + | | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | | "HiddenPort" = Yes + | | | "IOClass" = "IOUserSerial" + | | | "IOUserClasses" = ("IOUserPseudoSerial","IOUserSerial","IOService","OSObject") + | | | "IOTTYBaseName" = "Bluetooth-Incoming-Port" + | | | "PTY" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"} + | | | "IOTTYSuffix" = "" + | | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | | "IOServiceDEXTEntitlements" = "com.apple.developer.driverkit.family.serial" + | | | } + | | | + | | +-o IOSerialBSDClient + | | | { + | | | "IOClass" = "IOSerialBSDClient" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSerialFamily" + | | | "IOProviderClass" = "IOSerialStreamSync" + | | | "IOTTYBaseName" = "Bluetooth-Incoming-Port" + | | | "IOSerialBSDClientType" = "IOSerialStream" + | | | "IOProbeScore" = 0x3e8 + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "IOTTYDevice" = "Bluetooth-Incoming-Port" + | | | "IOCalloutDevice" = "/dev/cu.Bluetooth-Incoming-Port" + | | | "IODialinDevice" = "/dev/tty.Bluetooth-Incoming-Port" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSerialFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSerialFamily" + | | | "IOTTYSuffix" = "" + | | | } + | | | + | | +-o IOUserPseudoSerialUserClient + | | { + | | "IOUserClass" = "IOUserPseudoSerialUserClient" + | | "CFBundleIdentifier" = "com.apple.IOUserBluetoothSerialDriver" + | | "IOClass" = "IOUserUserClient" + | | "IOUserClientCreator" = "pid 437, bluetoothd" + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + | | "IOUserClasses" = ("IOUserPseudoSerialUserClient","IOUserClient","IOService","OSObject") + | | } + | | + | +-o IODisplayWrangler + | | { + | | "IOClass" = "IODisplayWrangler" + | | "CFBundleIdentifier" = "com.apple.iokit.IOGraphicsFamily" + | | "IOProviderClass" = "IOResources" + | | "IOGraphicsIgnoreParameters" = {"aupc"=Yes,"auph"=Yes," bpc"=Yes,"aums"=Yes,"aupp"=Yes} + | | "IOGraphicsPrefsParameters" = {"thue"=Yes,"pscn"=Yes,"vbst"=Yes,"oscn"=Yes,"tbri"=Yes,"cyuv"=0x10000000,"tsat"=Yes} + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchCategory" = "IOGraphics" + | | "IOMatchedAtBoot" = Yes + | | "IOGeneralInterest" = "IOCommand is not serializable" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOGraphicsFamily" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOGraphicsFamily" + | | } + | | + | +-o IOHDIXController + | | | { + | | | "IOClass" = "IOHDIXController" + | | | "CFBundleIdentifier" = "com.apple.driver.DiskImages" + | | | "IOProviderClass" = "IOResources" + | | | "Product Name" = "Disk Image Driver for MacOS X" + | | | "IOUserClientClass" = "IOHDIXControllerUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "IOHDIXController" + | | | "revision" = "671.100.2" + | | | "Vendor Name" = "Apple" + | | | "Product Revision Level" = "671.100.2" + | | | "di-root-image-result" = 0x0 + | | | "vendor" = "Apple" + | | | "IOPersonalityPublisher" = "com.apple.driver.DiskImages" + | | | "di-root-image-devname" = "disk4s1" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.DiskImages" + | | | "di-root-image-devt" = 0x1000015 + | | | "model" = "Disk Image Driver for MacOS X" + | | | } + | | | + | | +-o IOHDIXHDDriveOutKernel@9 + | | | { + | | | "blockcount" = 0x5f5e1 + | | | "hdiagent-drive-identifier" = "C77D55D7-A774-4AAF-B486-374C3733375E" + | | | "lockable" = Yes + | | | "hdid-pid" = 0x725c + | | | "blocksize-multiple" = 0x1 + | | | "image-path" = <2f55736572732f6d61696e2f4465736b746f702f585050656e4d61635f332e342e31345f3234303132352e646d67> + | | | "image-type" = "UDIF read-only compressed (zlib)" + | | | "Physical Interconnect Location" = "File" + | | | "owner-uid" = 0x1f5 + | | | "blocksize" = 0x200 + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x1,"ActivityTickles"=0x1,"DevicePowerState"=0x0,"IdleTimerPeriod"=0x3e8,"TimeSinceLastTickle"=0x2c9ca,"CurrentPowerState"=0x0} + | | | "bs-apple-quarantine-info" = <712f303038313b36383166346334363b59616e6465783b00> + | | | "IOUserClientClass" = "IOHDIXHDDriveOutKernelUserClient" + | | | "Product Name" = "Disk Image" + | | | "throttle-unit" = 0x3 + | | | "unmount-timeout" = 0x0 + | | | "IOStorageFeatures" = {"Unmap"=Yes} + | | | "IOUnit" = 0x9 + | | | "Physical Interconnect" = "Virtual Interface" + | | | "icon-path" = <2f53797374656d2f4c6962726172792f507269766174654672616d65776f726b732f4469736b496d616765732e6672616d65776f726b2f5265736f75726365732f434469736b496d6167652e69636e73> + | | | "idle-timeout" = 0xf + | | | "IOMaximumByteCountRead" = 0x200000 + | | | "backingstore-id" = {"readonly-components"=("d16777234:i3670923")} + | | | "image-encrypted" = No + | | | "removable" = Yes + | | | "IOMaximumByteCountWrite" = 0x200000 + | | | "write-protected" = Yes + | | | "autodiskmount" = Yes + | | | "ejectable" = Yes + | | | "image-format-read-only" = Yes + | | | } + | | | + | | +-o IOHDIXHDDriveOutKernelUserClient + | | | { + | | | "IOUserClientCreator" = "pid 29276, diskimages-helpe" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IODiskImageBlockStorageDeviceOutKernel + | | | { + | | | "autodiskmount" = Yes + | | | "IOMinimumSegmentAlignmentByteCount" = 0x4 + | | | "throttle-unit" = 0x3 + | | | "Protocol Characteristics" = {"Physical Interconnect"="Virtual Interface","Physical Interconnect Location"="File","Virtual Interface Location Path"=<2f55736572732f6d61696e2f4465736b746f702f585050656e4d61635f332e342e31345f3234303132352e646d67>} + | | | "Device Characteristics" = {"Product Revision Level"="671.100.2","Product Name"="Disk Image","Vendor Name"="Apple"} + | | | "device-type" = "Generic" + | | | } + | | | + | | +-o IOBlockStorageDriver + | | | { + | | | "IOClass" = "IOBlockStorageDriver" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | | "IOProviderClass" = "IOBlockStorageDevice" + | | | "IOPropertyMatch" = {"device-type"="Generic"} + | | | "IOPowerManagement" = {"CapabilityFlags"=0x0,"CurrentPowerState"=0x0} + | | | "IOProbeScore" = 0x0 + | | | "IOMatchedAtBoot" = Yes + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOMatchCategory" = "IODefaultMatchCategory" + | | | "Statistics" = {"Operations (Write)"=0x0,"Latency Time (Write)"=0x0,"Bytes (Read)"=0xbe64600,"Errors (Write)"=0x0,"Total Time (Read)"=0x12a207a18,"Latency Time (Read)"=0x0,"Retries (Read)"=0x0,"Errors (Read)"=0x0,"Total Time (Write)"=0x0,"Bytes (Write)"=0x0,"Operations (Read)"=0x515,"Retries (Write)"=0x0} + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | | } + | | | + | | +-o Apple UDIF read-only compressed (zlib) Media + | | | { + | | | "Content" = "" + | | | "Removable" = Yes + | | | "Whole" = Yes + | | | "Leaf" = Yes + | | | "BSD Name" = "disk12" + | | | "Ejectable" = Yes + | | | "Preferred Block Size" = 0x200 + | | | "IOMediaIcon" = {"IOBundleResourceFile"="Removable.icns","CFBundleIdentifier"="com.apple.iokit.IOStorageFamily"} + | | | "BSD Minor" = 0x24 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "Writable" = No + | | | "BSD Major" = 0x1 + | | | "Size" = 0xbebc200 + | | | "IOBusyInterest" = "IOCommand is not serializable" + | | | "Open" = Yes + | | | "Content Hint" = "" + | | | "BSD Unit" = 0xc + | | | } + | | | + | | +-o IOMediaBSDClient + | | { + | | "IOProbeScore" = 0x7530 + | | "CFBundleIdentifier" = "com.apple.iokit.IOStorageFamily" + | | "IOMatchCategory" = "IOMediaBSDClient" + | | "IOClass" = "IOMediaBSDClient" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOStorageFamily" + | | "IOProviderClass" = "IOMedia" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOStorageFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o IOKitRegistryCompatibility + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "IOMatchCategory" = "IOKitRegistryCompatibility" + | | | "IOClass" = "IOKitRegistryCompatibility" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "Entries" = ({"IOName"="display","IOClass"="IOPCIDevice","class-code"=<00000300>,"model"=<556e6b6e6f776e20556e6b6e6f776e00>,"device-id"=<10680000>,"vendor-id"=<02100000>,"revision-id"=<00000000>,"subsystem-id"=<00000000>},{"IOClass"="IOFramebuffer","IOName"="IOFB","ParentIndex"=0x0},{"IOName"="IOAccelerator","CFBundleIdentifier"="com.unknown.bundle","ParentIndex"=0x0,"IOClass"="IOAccelerator","PerformanceStatistics"={"vramFreeBytes"=0xf00000},"IOGLBundleName"="AppleMetalGLRenderer","MetalPluginName"="AGXMetalA12","VRAM,totalMB"=0x4$ + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOKitRegistryCompatibility" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o display + | | | | { + | | | | "IOCompatibilityProperties" = {"IOName"="display","IOClass"="IOPCIDevice","class-code"=<00000300>,"model"=<556e6b6e6f776e20556e6b6e6f776e00>,"device-id"=<10680000>,"vendor-id"=<02100000>,"revision-id"=<00000000>,"subsystem-id"=<00000000>} + | | | | } + | | | | + | | | +-o IOFB + | | | | { + | | | | "IOCompatibilityProperties" = {"IOClass"="IOFramebuffer","IOName"="IOFB","ParentIndex"=0x0} + | | | | } + | | | | + | | | +-o IOAccelerator + | | | { + | | | "IOCompatibilityProperties" = {"IOName"="IOAccelerator","CFBundleIdentifier"="com.unknown.bundle","ParentIndex"=0x0,"IOClass"="IOAccelerator","PerformanceStatistics"={"vramFreeBytes"=0xf00000},"IOGLBundleName"="AppleMetalGLRenderer","MetalPluginName"="AGXMetalA12","VRAM,totalMB"=0x4000} + | | | } + | | | + | | +-o platform + | | { + | | "IOCompatibilityProperties" = {"IOClass"="IOService","IOName"="platform","IOPath"="IODeviceTree:/efi/platform","system-id"=} + | | } + | | + | +-o IOReportHub + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOReportFamily" + | | | "IOMatchCategory" = "IOReportHub" + | | | "IOClass" = "IOReportHub" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOReportFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOReportFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOReportUserClient" + | | | "IOResourceMatch" = "IOKit" + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 383, systemstats" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 586, wifianalyticsd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 19563, powerdatad" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | | { + | | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o IOReportUserClient + | | { + | | "IOUserClientCreator" = "pid 38763, PerfPowerService" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o AppleUSBHostResourcesTypeC + | | | { + | | | "IOClass" = "AppleUSBHostResourcesTypeC" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBHostFamily" + | | | "IOProviderClass" = "IOResources" + | | | "IOResourceMatch" = "IOKit" + | | | "IOProbeScore" = 0x3e8 + | | | "IOMatchedAtBoot" = Yes + | | | "IOMatchCategory" = "AppleUSBHostResources" + | | | "UsbSmcBusCurrentPoolID" = 0xfffffffefffffd96 + | | | "UsbBusCurrentPoolID" = 0x100000269 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBHostFamily" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBHostFamily" + | | | } + | | | + | | +-o AppleUSBHostResourcesClient + | | { + | | "IOProbeScore" = 0x1 + | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBHostFamily" + | | "IOProviderClass" = "AppleUSBHostResources" + | | "IOClass" = "AppleUSBHostResourcesClient" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBHostFamily" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBHostFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IODefaultMatchCategory" + | | } + | | + | +-o AppleUSBUserHCIResources + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOMatchCategory" = "AppleUSBUserHCIResources" + | | "IOClass" = "AppleUSBUserHCIResources" + | | "IOPersonalityPublisher" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.usb.AppleUSBUserHCI" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOUSBMassStorageResource + | | { + | | "IOClass" = "IOUSBMassStorageResource" + | | "CFBundleIdentifier" = "com.apple.iokit.IOUSBMassStorageDriver" + | | "IOProviderClass" = "IOResources" + | | "IOUserClientClass" = "IOUSBMassStorageUserClient" + | | "IOResourceMatch" = "IOKit" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOMatchCategory" = "IOUSBMassStorageResource" + | | "Devices Referenced" = 0x0 + | | "Device Stats" = {} + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUSBMassStorageDriver" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUSBMassStorageDriver" + | | } + | | + | +-o IOUserEthernetResource + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOUserEthernet" + | | "IOMatchCategory" = "IOUserEthernetResource" + | | "IOClass" = "IOUserEthernetResource" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOUserEthernet" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOUserEthernet" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOUserEthernetResourceUserClient" + | | "IOResourceMatch" = "IOKit" + | | } + | | + | +-o IOTimeSyncRootService + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOMatchCategory" = "IOTimeSyncRootService" + | | | "IOClass" = "IOTimeSyncRootService" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOTimeSyncFamily" + | | | "IOMatchedAtBoot" = Yes + | | | } + | | | + | | +-o IOTimeSyncClockManager + | | | | { + | | | | "IOClass" = "IOTimeSyncClockManager" + | | | | "CFBundleIdentifier" = "com.apple.iokit.IOTimeSyncFamily" + | | | | "IOProviderClass" = "IOTimeSyncRootService" + | | | | "TimeSyncTimeCoreAudioClockDomain" = 0x63690000 + | | | | "TranslationClockID" = 0x12c34f16ef270001 + | | | | "IOUserClientClass" = "IOTimeSyncClockManagerUserClient" + | | | | "TimeSyncTimeClockID" = 0x12c34f16ef270000 + | | | | "IOProbeScore" = 0x0 + | | | | "IOMatchedAtBoot" = Yes + | | | | "WantsgPTPServices" = Yes + | | | | "IOMatchCategory" = "IOTimeSyncClockManager" + | | | | "IOPersonalityPublisher" = "com.apple.iokit.IOTimeSyncFamily" + | | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOTimeSyncFamily" + | | | | } + | | | | + | | | +-o IOTimeSyncTranslationMach + | | | | | { + | | | | | "ClockIdentifier" = 0x12c34f16ef270001 + | | | | | "IOUserClientClass" = "IOTimeSyncUserClient" + | | | | | "ClockLockState" = 0x2 + | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncSyncDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncSyncDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncServiceDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncgPTPManager + | | | | | { + | | | | | "IOClass" = "IOTimeSyncgPTPManager" + | | | | | "CFBundleIdentifier" = "com.apple.plugin.IOgPTPPlugin" + | | | | | "IOProviderClass" = "IOTimeSyncClockManager" + | | | | | "IOPropertyMatch" = {"WantsgPTPServices"=Yes} + | | | | | "TemperatureSensor" = {"J416s"="PMU tdev2","J416c"="PMU tdev2","J493"="PMU tdev7","J316s"="PMU tdev2","J316c"="PMU tdev2","J274"="PMU tdev8","J375c"="PMU tdev2","J457"="PMU tdev8","J473"="PMU tdev8","J293"="PMU tdev7","J413"="PMU tdev5","J414s"="PMU tdev2","J414c"="PMU tdev2","J313"="PMU tdev5","J375d"="PMU tdev2","J314s"="PMU tdev2","J314c"="PMU tdev2","J456"="PMU tdev8"} + | | | | | "IOUserClientClass" = "IOTimeSyncgPTPManagerUserClient" + | | | | | "IOProbeScore" = 0x0 + | | | | | "IOMatchedAtBoot" = Yes + | | | | | "SystemDomainIdentifier" = 0x12c34f16ef270008 + | | | | | "IOMatchCategory" = "IOTimeSyncgPTPManager" + | | | | | "IOPersonalityPublisher" = "com.apple.plugin.IOgPTPPlugin" + | | | | | "CFBundleIdentifierKernel" = "com.apple.plugin.IOgPTPPlugin" + | | | | | } + | | | | | + | | | | +-o IOTimeSyncDomain + | | | | | | { + | | | | | | "GrandmasterID" = 0x12c34f16ef270008 + | | | | | | "TimeToLock" = 0x0 + | | | | | | "ASPath" = (0x12c34f16ef270008) + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "TimeToChangeGrandmaster" = 0xa + | | | | | | "ClockIdentity" = 0x12c34f16ef270008 + | | | | | | "IOUserClientClass" = "IOTimeSyncDomainUserClient" + | | | | | | "ClockLockState" = 0x2 + | | | | | | "GrandmasterChangesCounter" = 0x1 + | | | | | | "ClockIdentifier" = 0x12c34f16ef270008 + | | | | | | } + | | | | | | + | | | | | +-o IOTimeSyncTimeSyncTimePort + | | | | | | { + | | | | | | "GeneratedSyncCounter" = 0x134167 + | | | | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | | | | "PortNumber" = 0x0 + | | | | | | "ReceivedTimeSource" = 0xa0 + | | | | | | "ClockPriority1" = 0xfa + | | | | | | "BatteryPowered" = Yes + | | | | | | "ClockAccuracy" = 0x21 + | | | | | | "LocalFrequencyStabilityLower" = 0xffffffffffffd8f0 + | | | | | | "LocalOscillatorType" = 0x1 + | | | | | | "GrandmasterID" = 0x12c34f16ef270008 + | | | | | | "ClockClass" = 0xf8 + | | | | | | "ExternalPowerConnected" = No + | | | | | | "HasWiFiHardwareTimestamping" = No + | | | | | | "StepsRemoved" = 0x0 + | | | | | | "LocalFrequencyStabilityUpper" = 0x2710 + | | | | | | "OffsetScaledLogVariance" = 0x436a + | | | | | | "ReceivedClockPriority1" = 0xfa + | | | | | | "TimeSource" = 0xa0 + | | | | | | "ReceivedClockClass" = 0xf8 + | | | | | | "ReceivedOffsetScaledLogVariance" = 0x436a + | | | | | | "ReceivedClockPriority2" = 0xf8 + | | | | | | "ReceivedClockAccuracy" = 0x21 + | | | | | | "ReceivedGrandmasterID" = 0x12c34f16ef270008 + | | | | | | "LocalFrequencyToleranceLower" = 0xffffffffffffd8f0 + | | | | | | "ClockIdentifier" = 0x12c34f16ef270008 + | | | | | | "LocalFrequencyToleranceUpper" = 0x2710 + | | | | | | "HasWiredEthernetLinkActive" = No + | | | | | | "ReceivedStepsRemoved" = 0x0 + | | | | | | "ClockPriority2" = 0xf8 + | | | | | | "PortRole" = 0x2 + | | | | | | "HasEthernetHardwareTimestamping" = No + | | | | | | } + | | | | | | + | | | | | +-o IOTimeSyncDomainDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncgPTPManagerDaemonClient + | | | | | { + | | | | | } + | | | | | + | | | | +-o IOTimeSyncgPTPManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | | { + | | | | } + | | | | + | | | +-o IOTimeSyncClockManagerDaemonClient + | | | { + | | | } + | | | + | | +-o IOTimeSyncDaemonService + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOMatchCategory" = "IOTimeSyncDaemonService" + | | | "IOClass" = "IOTimeSyncDaemonService" + | | | "IOPersonalityPublisher" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOProviderClass" = "IOTimeSyncRootService" + | | | "CFBundleIdentifierKernel" = "com.apple.plugin.IOgPTPPlugin" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOTimeSyncDaemonUserClient" + | | | "IOTimeSyncDaemonClientEntryIDMatching" = Yes + | | | } + | | | + | | +-o IOTimeSyncDaemonUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 531, audioclocksyncd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | "IOUserClientEntitlements" = "com.apple.private.timesync.clocksync" + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o com_apple_AppleFSCompression_AppleFSCompressionTypeDataless + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless" + | | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeDataless" + | | "IOPersonalityPublisher" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOProviderClass" = "IOResources" + | | "com.apple.AppleFSCompression.providesType5" = Yes + | | "CFBundleIdentifierKernel" = "com.apple.AppleFSCompression.AppleFSCompressionTypeDataless" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_AppleFSCompression_AppleFSCompressionTypeZlib + | | { + | | "IOClass" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib" + | | "CFBundleIdentifier" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "IOProviderClass" = "IOResources" + | | "com.apple.AppleFSCompression.providesType7" = Yes + | | "IOResourceMatch" = "IOBSD" + | | "com.apple.AppleFSCompression.providesType9" = Yes + | | "IOProbeScore" = 0x0 + | | "IOMatchCategory" = "com_apple_AppleFSCompression_AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType4" = Yes + | | "IOMatchedAtBoot" = Yes + | | "IOPersonalityPublisher" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType10" = Yes + | | "com.apple.AppleFSCompression.providesType8" = Yes + | | "com.apple.AppleFSCompression.providesType11" = Yes + | | "CFBundleIdentifierKernel" = "com.apple.AppleFSCompression.AppleFSCompressionTypeZlib" + | | "com.apple.AppleFSCompression.providesType12" = Yes + | | "com.apple.AppleFSCompression.providesType3" = Yes + | | } + | | + | +-o AppleMobileFileIntegrity + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOMatchCategory" = "AppleMobileFileIntegrity" + | | "IOClass" = "AppleMobileFileIntegrity" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleMobileFileIntegrity" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleMobileFileIntegrityUserClient" + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleGCResource + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOCFPlugInTypesOverride" = {"7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="AppleSyntheticGameController.kext/Contents/PlugIns/AppleSyntheticGameController.plugin","FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="AppleSyntheticGameController.kext/Contents/PlugIns/AppleSyntheticGameController.plugin"} + | | | "IOClass" = "AppleGCResource" + | | | "IOMatchCategory" = "AppleGCResource" + | | | "IOPersonalityPublisher" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleSyntheticGameController" + | | | "IOUserClientClass" = "AppleGCResourceDeviceUserClient" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleGCResourceDeviceUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 19505, gamecontrollerd" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = "com.apple.private.game-controller.GCResource" + | | "IOUserClientDefaultLockingSetProperties" = No + | | } + | | + | +-o AppleSystemPolicy + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.AppleSystemPolicy" + | | | "IOMatchCategory" = "AppleSystemPolicy" + | | | "IOClass" = "AppleSystemPolicy" + | | | "IOPersonalityPublisher" = "com.apple.AppleSystemPolicy" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.AppleSystemPolicy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "AppleSystemPolicyUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o AppleSystemPolicyUserClient + | | | { + | | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | | "IOUserClientDefaultLocking" = Yes + | | | } + | | | + | | +-o AppleSystemPolicyUserClient + | | { + | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o com_apple_BootCache + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.BootCache" + | | "IOMatchCategory" = "com_apple_BootCache" + | | "IOClass" = "com_apple_BootCache" + | | "IOPersonalityPublisher" = "com.apple.BootCache" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.BootCache" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o BootPolicy + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.security.BootPolicy" + | | | "IOMatchCategory" = "BootPolicy" + | | | "IOClass" = "BootPolicy" + | | | "IOPersonalityPublisher" = "com.apple.security.BootPolicy" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.security.BootPolicy" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "BootPolicyUserClient" + | | | "IOPowerManagement" = {"CapabilityFlags"=0x2,"MaxPowerState"=0x1,"CurrentPowerState"=0x1} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 405, kernelmanagerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 503, syspolicyd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 388, powerd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 8580, softwareupdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19097, mobileassetd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 19126, mobileactivation" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 23779, SoftwareUpdateNo" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 25369, com.apple.Mobile" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 39385, NRDUpdated" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o BootPolicyUserClient + | | { + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 39387, com.apple.NRD.Up" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o com_apple_filesystems_hfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.hfs.kext" + | | "IOMatchCategory" = "com_apple_filesystems_hfs" + | | "IOClass" = "com_apple_filesystems_hfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.hfs.kext" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.hfs.kext" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_hfs_encodings + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOMatchCategory" = "com_apple_filesystems_hfs_encodings" + | | "IOClass" = "com_apple_filesystems_hfs_encodings" + | | "IOPersonalityPublisher" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.hfs.encodings.kext" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o IOHIDResource + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily" + | | | "IOMatchCategory" = "IOHIDResource" + | | | "IOClass" = "IOHIDResource" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOHIDFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IOHIDResourceDeviceUserClient" + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOHIDResourceDeviceUserClient + | | | { + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOHIDUserDeviceDebugState" = {"MaxClientTimeoutUS"=0xf4240,"ReportQueue"={"EnqueueTimestamp"=0x251d37da0403,"tail"=0x3cc4,"QueueSize"=0x4000,"head"=0x3cc4},"SetReportCount"=0x3d07,"SetReportCompletedCount"=0x3d07} + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDUserDevice + | | | { + | | | "HIDVirtualDevice" = Yes + | | | "Transport" = "USB" + | | | "Built-In" = Yes + | | | "Product" = "Keyboard Backlight" + | | | "KeyboardUniqueID" = 0x5ac0000 + | | | "HIDDefaultBehavior" = Yes + | | | "MaxInputReportSize" = 0x1 + | | | "IOReportLegendPublic" = Yes + | | | "Privileged" = Yes + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xf}) + | | | "ReportDescriptor" = <0600ff0a0f00a101850167e1000001550d0670ff090116640026443975209501b1420902660110550d150027ffff000075209501b142850309031500250175089501b1420904660110550d150027ffff000075209501b142c0> + | | | "MaxOutputReportSize" = 0x1 + | | | "IOUserClientClass" = "IOHIDLibUserClient" + | | | "IOCFPlugInTypes" = {"FA12FA38-6F1A-11D4-BA0C-0005028F18D5"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","40A57A4E-26A0-11D8-9295-000A958A2C78"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin","7DDEECA8-A7B4-11DA-8A0E-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin"} + | | | "VendorID" = 0x5ac + | | | "PrimaryUsage" = 0xf + | | | "ProductID" = 0x0 + | | | "Elements" = ({"ReportID"=0x0,"ElementCookie"=0x1,"CollectionType"=0x1,"Type"=0x201,"VariableSize"=0x0,"Elements"=({"VariableSize"=0x0,"UnitExponent"=0xd,"IsRelative"=No,"UsagePage"=0xff70,"Max"=0x3944,"IsArray"=No,"Type"=0x101,"Size"=0x20,"Min"=0x64,"Flags"=0x42,"ReportID"=0x1,"Usage"=0x1,"ReportCount"=0x1,"Unit"=0x10000e1,"HasNullState"=Yes,"ReportSize"=0x20,"HasPreferredState"=Yes,"IsNonLinear"=No,"ScaledMin"=0x64,"IsWrapping"=No,"ScaledMax"=0x3944,"ElementCookie"=0x8},{"VariableSize"=0x0,"UnitExponent"=0xd,"IsRelative"=No,"$ + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "PrimaryUsagePage" = 0xff00 + | | | "IOReportLegend" = ({"IOReportGroupName"="IOHIDDevice Input Report Errors","IOReportChannels"=((0x1,0x100020001,"Report 1"),(0x3,0x100020001,"Report 3")),"IOReportChannelInfo"={"IOReportChannelUnit"=0x0},"IOReportSubGroupName"="Input Report IDs"}) + | | | "ReportInterval" = 0x1f40 + | | | "MaxFeatureReportSize" = 0x9 + | | | "InputReportElements" = ({"ReportID"=0x1,"ElementCookie"=0xc,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0},{"ReportID"=0x3,"ElementCookie"=0xd,"Size"=0x8,"ReportCount"=0x1,"Type"=0x1,"VariableSize"=0x0,"UsagePage"=0x0,"ReportSize"=0x8,"Usage"=0x0}) + | | | } + | | | + | | +-o IOHIDInterface + | | | { + | | | "MaxOutputReportSize" = 0x1 + | | | "DebugState" = {"ReleasedBuffers"=0x0,"ReportAvailableCalls"=0x0,"ReportAvailableRuns"=0x0,"CreatedBuffers"=0x0} + | | | "VendorID" = 0x5ac + | | | "IOServiceDEXTEntitlements" = (("com.apple.developer.driverkit.transport.hid","com.apple.developer.driverkit.builtin")) + | | | "Product" = "Keyboard Backlight" + | | | "PrimaryUsage" = 0xf + | | | "ProductID" = 0x0 + | | | "DeviceUsagePairs" = ({"DeviceUsagePage"=0xff00,"DeviceUsage"=0xf}) + | | | "Transport" = "USB" + | | | "ReportInterval" = 0x1f40 + | | | "ReportDescriptor" = <0600ff0a0f00a101850167e1000001550d0670ff090116640026443975209501b1420902660110550d150027ffff000075209501b142850309031500250175089501b1420904660110550d150027ffff000075209501b142c0> + | | | "HIDDefaultBehavior" = Yes + | | | "PrimaryUsagePage" = 0xff00 + | | | "MaxFeatureReportSize" = 0x9 + | | | "Built-In" = Yes + | | | "MaxInputReportSize" = 0x1 + | | | } + | | | + | | +-o IOHIDLibUserClient + | | { + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientMessageAppSuspended" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 440, corebrightnessd" + | | "DebugState" = {"ClientSeized"=No,"ClientOptions"=0x0,"Privileged"=Yes,"SetReportErrCnt"=0x0,"SetReportCnt"=0x0,"GetReportErrCnt"=0x0,"MaxEnqueueReportSize"=0x2000,"ClientOpened"=Yes,"ClientSuspended"=No,"GetReportCnt"=0x0,"EventQueueMap"=()} + | | } + | | + | +-o IOHIDSystem + | | | { + | | | "IOClass" = "IOHIDSystem" + | | | "HIDScrollCountMaxTimeDeltaBetween" = 0x258 + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOHIDFamily" + | | | "IOResourceMatch" = "IOBSD" + | | | "IOMatchedAtBoot" = Yes + | | | "HIDServiceGlobalModifiersUsage" = 0x1 + | | | "IOProviderClass" = "IOResources" + | | | "IOReportLegendPublic" = Yes + | | | "IOProbeScore" = 0x0 + | | | "HIDIdleTime" = 0xc107294 + | | | "HIDScrollCountIgnoreMomentumScrolls" = Yes + | | | "HIDScrollCountAccelerationFactor" = 0x28000 + | | | "HIDServiceSupport" = Yes + | | | "HIDScrollCountMouseCanReset" = Yes + | | | "IOCFPlugInTypes" = {"0516B563-B15B-11DA-96EB-0014519758EF"="IOHIDFamily.kext/Contents/PlugIns/IOHIDNXEventRouter.plugin"} + | | | "VendorID" = 0x5ac + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOHIDFamily" + | | | "HIDScrollCountMinDeltaToSustain" = 0x14 + | | | "IOMatchCategory" = "IOHID" + | | | "CFBundleIdentifier" = "com.apple.iokit.IOHIDFamily" + | | | "HIDScrollCountBootDefault" = {"HIDScrollCountMinDeltaToStart"=0x1e,"HIDScrollCountAccelerationFactor"=0x28000,"HIDScrollCountMouseCanReset"=Yes,"HIDScrollCountIgnoreMomentumScrolls"=Yes,"HIDScrollCountMinDeltaToSustain"=0x14,"HIDScrollCountMax"=0x7d0,"HIDScrollCountMaxTimeDeltaBetween"=0x258,"HIDScrollCountMaxTimeDeltaToSustain"=0xfa} + | | | "PrimaryUsage" = 0x17 + | | | "CursorState" = {} + | | | "HIDPowerOnDelayNS" = 0x1dcd6500 + | | | "IOGeneralInterest" = "IOCommand is not serializable" + | | | "PrimaryUsagePage" = 0xff00 + | | | "HIDScrollCountMinDeltaToStart" = 0x1e + | | | "HIDScrollCountMaxTimeDeltaToSustain" = 0xfa + | | | "IOReportLegend" = ({"IOReportGroupName"="Cursor","IOReportChannels"=((0x437572736f72546f,0xf00180003,"Cursor Total Latency")),"IOReportChannelInfo"={"IOReportChannelConfig"=<6400000000000000000000000a000000204e0000000000000100000005000000>,"IOReportChannelUnit"=0x100007900000000},"IOReportSubGroupName"="Total"},{"IOReportGroupName"="Cursor","IOReportChannels"=((0x437572736f724772,0xf00180003,"Cursor Graphics Latency")),"IOReportChannelInfo"={"IOReportChannelConfig"=<6400000000000000000000000a000000204e0000000000000100000005000000>$ + | | | "HIDParameters" = {"HIDMouseKeysOptionToggles"=0x0,"JitterNoClick"=0x1,"ActuateDetents"=0x1,"Dragging"=0x0,"HIDSlowKeysDelay"=0x0,"JitterNoMove"=0x1,"TrackpadThreeFingerHorizSwipeGesture"=0x2,"HIDInitialKeyRepeat"=0x1dcd6500,"TrackpadThreeFingerDrag"=No,"HIDPointerAcceleration"=0xb000,"UserPreferences"=Yes,"HIDDefaultParameters"=Yes,"TrackpadHorizScroll"=0x1,"HIDF12EjectDelay"=0xfa,"TrackpadFourFingerVertSwipeGesture"=0x2,"TrackpadTwoFingerFromRightEdgeSwipeGesture"=0x3,"USBMouseStopsTrackpad"=0x0,"TrackpadThreeFingerTapGesture"=0x$ + | | | "HIDScrollCountMax" = 0x7d0 + | | | } + | | | + | | +-o IOHIDUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDEventSystemUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 1341, Siri" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | | { + | | | "IOUserClientCrossEndianCompatible" = Yes + | | | "IOUserClientDefaultLocking" = Yes + | | | "IOUserClientCreator" = "pid 29318, PenTablet_Driver" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOHIDParamUserClient + | | { + | | "IOUserClientCrossEndianCompatible" = Yes + | | "IOUserClientDefaultLocking" = Yes + | | "IOUserClientCreator" = "pid 29318, PenTablet_Driver" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o IOHIDPowerSourceController + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.driver.IOHIDPowerSource" + | | | "IOMatchCategory" = "IOHIDPowerSourceController" + | | | "IOClass" = "IOHIDPowerSourceController" + | | | "IOPersonalityPublisher" = "com.apple.driver.IOHIDPowerSource" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.driver.IOHIDPowerSource" + | | | "IOMatchedAtBoot" = Yes + | | | "InterfaceMatching" = {"IOPropertyMatch"={"Type"="PowerPack"},"IOProviderClassKey"="IOHIDTranslationService"} + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOHIDPowerSource + | | { + | | "DebugState" = {} + | | } + | | + | +-o IONetworkStack + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IONetworkingFamily" + | | | "IOMatchCategory" = "IONetworkStack" + | | | "IOClass" = "IONetworkStack" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IONetworkingFamily" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IONetworkingFamily" + | | | "IOMatchedAtBoot" = Yes + | | | "IOUserClientClass" = "IONetworkStackUserClient" + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IONetworkStackUserClient + | | { + | | "IOUserClientCreator" = "pid 386, configd" + | | "IOUserClientDefaultLocking" = Yes + | | } + | | + | +-o IOSurfaceRoot + | | | { + | | | "IOProbeScore" = 0x0 + | | | "CFBundleIdentifier" = "com.apple.iokit.IOSurface" + | | | "IOMatchCategory" = "IOSurfaceRoot" + | | | "IOClass" = "IOSurfaceRoot" + | | | "IOPersonalityPublisher" = "com.apple.iokit.IOSurface" + | | | "IOProviderClass" = "IOResources" + | | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSurface" + | | | "IOMatchedAtBoot" = Yes + | | | "IOResourceMatch" = "IOBSD" + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 445, WindowServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 955, NotificationCent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 980, avconferenced" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientCreator" = "pid 448, loginwindow" + | | | "IOUserClientDefaultLocking" = No + | | | "gpu-policies" = {"GPUSelectionPolicy"="avoidRemovable"} + | | | "gpu-policies-info" = {"GPUSelectionPolicy"="bundle"} + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 933, ControlCenter" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1079, WallpaperMacinto" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1111, SystemUIServer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1117, Spotlight" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1112, Finder" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1128, com.apple.dock.e" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1345, TextInputMenuAge" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1081, CursorUIViewServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 2809, UserNotification" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 1110, Dock" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 442, com.apple.cmio.r" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 9111, PowerChime" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 53823, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 78715, V2Box" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 834, WiFiAgent" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 8115, iconservicesagen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 17537, replayd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 538, appleh13camerad" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19483, naturallanguaged" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19581, DockHelper" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 19189, CoreServicesUIAg" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 20680, TextThumbnailExt" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 21593, LinkedNotesUISer" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 23533, TextInputSwitche" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 23929, coreautha" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24141, OSDUIHelper" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24351, iconservicesagen" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24046, mediaanalysisd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24473, com.apple.photos" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24474, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24304, cloudphotod" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24475, com.apple.photos" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24477, VTEncoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24478, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 3972, photolibraryd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24502, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 25565, assistant_cdmd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 24302, photoanalysisd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 28992, AccessibilityVis" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 875, sharingd" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 29318, PenTablet_Driver" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 29333, universalAccessA" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 2522, storeuid" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30509, Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30514, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30518, com.apple.appkit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30524, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30525, ThemeWidgetContr" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 31135, WebThumbnailExte" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 31136, com.apple.WebKit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 30516, com.apple.Safari" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 37786, QuickLookSatelli" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 38841, Telegram" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 38845, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 38864, QuickLookUIServi" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 32856, ImageThumbnailEx" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 877, ContinuityCaptur" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 39389, nsattributedstri" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 39395, nsattributedstri" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 40601, Docker Desktop H" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 40582, Docker Desktop" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 40727, Preview" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 40735, com.apple.appkit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 40868, Terminal" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 41488, AudiovisualThumb" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 41490, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 42405, Electron" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 42411, Code Helper (GPU" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 42487, VTEncoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 43744, Pages" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 43760, com.apple.appkit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 45067, com.apple.CoreSi" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 45074, TGOnDeviceInfere" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 45077, gputoolsserviced" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 45498, com.apple.appkit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 45482, Code Helper (Ren" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46328, Python" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46359, Ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46360, Ollama Helper (G" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46362, VTDecoderXPCServ" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46363, ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46364, ollama" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | | { + | | | "IOUserClientDefaultLocking" = No + | | | "IOUserClientCreator" = "pid 46366, TextEdit" + | | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | | "IOUserClientEntitlements" = No + | | | "IOUserClientDefaultLockingSetProperties" = Yes + | | | } + | | | + | | +-o IOSurfaceRootUserClient + | | { + | | "IOUserClientDefaultLocking" = No + | | "IOUserClientCreator" = "pid 46372, com.apple.appkit" + | | "IOUserClientDefaultLockingSingleThreadExternalMethod" = No + | | "IOUserClientEntitlements" = No + | | "IOUserClientDefaultLockingSetProperties" = Yes + | | } + | | + | +-o AppleFairplayTextCrypter + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.IOTextEncryptionFamily" + | | "IOMatchCategory" = "AppleFairplayTextCrypter" + | | "IOClass" = "AppleFairplayTextCrypter" + | | "IOPersonalityPublisher" = "com.apple.IOTextEncryptionFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.IOTextEncryptionFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_apfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.apfs" + | | "IOMatchCategory" = "com_apple_filesystems_apfs" + | | "IOClass" = "com_apple_filesystems_apfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.apfs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.apfs" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_lifs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.lifs" + | | "IOMatchCategory" = "com_apple_filesystems_lifs" + | | "IOClass" = "com_apple_filesystems_lifs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.lifs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.lifs" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "AppleLIFSUserClient" + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o com_apple_filesystems_nfs + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.filesystems.nfs" + | | "IOMatchCategory" = "com_apple_filesystems_nfs" + | | "IOClass" = "com_apple_filesystems_nfs" + | | "IOPersonalityPublisher" = "com.apple.filesystems.nfs" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.filesystems.nfs" + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleBSDKextStarterTMPFS + | | { + | | "IOName" = "AppleBSDKextStarterTMPFS" + | | "CFBundleIdentifier" = "com.apple.driver.AppleBSDKextStarter" + | | "IOMatchCategory" = "com_apple_driver_AppleBSDKextStarterTMPFS" + | | "IOClass" = "AppleBSDKextStarter" + | | "AppleBSDKextStarterBundleIdentifiers" = "com.apple.filesystems.tmpfs" + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBSDKextStarterTMPFS" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBSDKextStarter" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o AppleBSDKextStarterVPN + | | { + | | "IOName" = "AppleBSDKextStarterVPN" + | | "CFBundleIdentifier" = "com.apple.driver.AppleBSDKextStarter" + | | "IOMatchCategory" = "com_apple_driver_AppleBSDKextStarterVPN" + | | "IOClass" = "AppleBSDKextStarter" + | | "AppleBSDKextStarterBundleIdentifiers" = ("com.apple.nke.ppp","com.apple.nke.l2tp","com.apple.nke.pptp") + | | "IOPersonalityPublisher" = "com.apple.driver.AppleBSDKextStarterVPN" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.driver.AppleBSDKextStarter" + | | "IOProbeScore" = 0x0 + | | "IOMatchedAtBoot" = Yes + | | "IOResourceMatch" = "IOBSD" + | | } + | | + | +-o IOAVBNub + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchCategory" = "IOAVBNub" + | | "IOClass" = "IOAVBNub" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOAVBFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOAVBNubUserClient" + | | "EntityID" = 0xc484fc0595190000 + | | "IOResourceMatch" = "IOTimeSyncClockManager" + | | } + | | + | +-o IOAVBValidate + | | { + | | "IOProbeScore" = 0x0 + | | "CFBundleIdentifier" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchCategory" = "IOAVBValidate" + | | "IOClass" = "IOAVBValidate" + | | "IOPersonalityPublisher" = "com.apple.iokit.IOAVBFamily" + | | "IOProviderClass" = "IOResources" + | | "CFBundleIdentifierKernel" = "com.apple.iokit.IOAVBFamily" + | | "IOMatchedAtBoot" = Yes + | | "IOUserClientClass" = "IOAVBValidateUserClient" + | | "IOResourceMatch" = "IOAVBLocalClock" + | | } + | | + | +-o AppleSCSISubsystemGlobals + | { + | "IOProbeScore" = 0x0 + | "CFBundleIdentifier" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOMatchCategory" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOClass" = "AppleSCSISubsystemGlobals" + | "IOPersonalityPublisher" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOProviderClass" = "IOResources" + | "CFBundleIdentifierKernel" = "com.apple.iokit.IOSCSIArchitectureModelFamily" + | "IOMatchedAtBoot" = Yes + | "IOResourceMatch" = "com.apple.iokit.SCSISubsystemGlobals" + | "MassStorageEvent" = "0x02-0x0-DiskNotEjectedProperly" + | } + | + +-o IOUserResources + | | { + | | "IOKit" = "IOService" + | | "IOResourceMatched" = ("IOKit","IOResourceMatched") + | | "IODEXTMatchCount" = 0x1 + | | } + | | + | +-o IOUserDockChannelSerial + | { + | "IOClass" = "IOUserService" + | "CFBundleIdentifier" = "com.apple.DriverKit-IOUserDockChannelSerial" + | "IOProviderClass" = "IOUserResources" + | "IOUserServerCDHash" = "cab172822eb224a3a4b2d46bfe5bfe5146445e33" + | "IOPowerManagement" = {"DevicePowerState"=0x2,"CurrentPowerState"=0x2,"CapabilityFlags"=0x2,"MaxPowerState"=0x2} + | "IOUserDockChannelSerialMajorVersion" = 0x2 + | "IOMatchedPersonality" = {"IOClass"="IOUserService","CFBundleIdentifier"="com.apple.DriverKit-IOUserDockChannelSerial","IOProviderClass"="IOUserResources","IOUserServerCDHash"="cab172822eb224a3a4b2d46bfe5bfe5146445e33","PTY"={"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"},"IOMatchCategory"="IOUserDockChannelSerial","IOUserServerName"="com.apple.IOUserDockChannelSerial","IOUserDockC$ + | "PTY" = {"IOClass"="IOUserSerial","PTY"={"IOClass"="IOUserUserClient","IOUserClass"="IOUserPseudoSerialUserClient"},"CFBundleIdentifier"="com.apple.driver.driverkit.serial","IOUserClass"="IOUserPseudoSerial"} + | "IOProbeScore" = 0x0 + | "IOUserDockChannelSerialMinorVersion" = 0x0 + | "IOMatchCategory" = "IOUserDockChannelSerial" + | "IOUserServerName" = "com.apple.IOUserDockChannelSerial" + | "IOUserDockChannelSerialClient" = {"IOClass"="IOUserUserClient","IOUserClass"="IOUserDockChannelSerialClient"} + | "IOUserClasses" = ("IOUserDockChannelSerial","IOService","OSObject") + | "kOSBundleDextUniqueIdentifier" = <060b61aebaaf16ec4c954a5df666517ac1840d89e4b91de8e29ad69a8447dfe5> + | "IOPersonalityPublisher" = "com.apple.DriverKit-IOUserDockChannelSerial" + | "CFBundleIdentifierKernel" = "com.apple.driver.driverkit.serial" + | "IOUserClass" = "IOUserDockChannelSerial" + | } + | + +-o IOUserServer(com.apple.IOUserDockChannelSerial-0x100000ceb) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 557, com.apple.Driver" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000ceb) + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.IOUserDockChannelSerial" + | "IOUserServerTag" = 0x100000ceb + | } + | + +-o IOUserServer(com.apple.driverkit.AppleUserHIDDrivers-0x100000cee) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 558, com.apple.AppleU" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000cee) + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.driverkit.AppleUserHIDDrivers" + | "IOUserServerTag" = 0x100000cee + | } + | + +-o IOUserServer(com.apple.bcmwlan-0x100000bb4) + | { + | "IOUserClientDefaultLockingSetProperties" = Yes + | "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + | "IOUserClientEntitlements" = No + | "IOUserClientCreator" = "pid 556, com.apple.Driver" + | "IOUserClientDefaultLocking" = Yes + | "IOAssociatedServices" = (0x100000bb4,0x100000cf7,0x100000cf9,0x100000cfa,0x100000cfb,0x100000cfc,0x100000cfd,0x100000cfe,0x100000cff,0x100000d00,0x100000d01,0x100000d02,0x100000d03,0x100000d04,0x100000d06,0x100000d08,0x100000d09,0x100000d0a,0x100000d0b,0x100000d0c,0x100000d0d,0x100000d0e,0x100000d0f,0x100000d12,0x100000d13,0x100000d14,0x100000d21,0x100000d25,0x100000d27,0x100000d29,0x100000d2a,0x100000d2b,0x100000d45,0x100000d46,0x100000d4a,0x100000d4b,0x100000d4c,0x100000d4d,0x100000d4e,0x100000d4f,0x100000d50,0x100000d51,0x100000d$ + | "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + | "IOUserServerName" = "com.apple.bcmwlan" + | "IOUserServerTag" = 0x100000bb4 + | } + | + +-o IOUserServer(com.apple.IOUserBluetoothSerialDriver-0x100000e0c) + { + "IOUserClientDefaultLockingSetProperties" = Yes + "IOUserClientDefaultLockingSingleThreadExternalMethod" = Yes + "IOUserClientEntitlements" = No + "IOUserClientCreator" = "pid 784, IOUserBluetoothS" + "IOUserClientDefaultLocking" = Yes + "IOAssociatedServices" = (0x100000e0c,0x100000e10,0x100000e11,0x100000e13) + "IOPowerManagement" = {"CapabilityFlags"=0x0,"MaxPowerState"=0x2,"CurrentPowerState"=0x0} + "IOUserServerName" = "com.apple.IOUserBluetoothSerialDriver" + "IOUserServerTag" = 0x100000e0c + } + + + + Power Management logs: + + Source: /usr/bin/pmset -g log + Size: 66 KB (66 202 bytes) + Last Modified: 15.05.2025, 12:38 + Recent Contents: 11:22:53 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "Holding in darkwake for up to 20 seconds to query model for inactivity prediction" 00:00:00 id:0x0xd000099b5 [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 11:22:53 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "Holding in darkwake for up to 20 seconds to query model for inactivity prediction" 00:00:00 id:0x0xd000099b5 [System: PrevIdle] +2025-05-15 11:22:53 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099b6 [System: PrevIdle] +2025-05-15 11:22:53 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099b6 [System: PrevIdle] +2025-05-15 11:22:54 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd000099b8 [System: PrevIdle] +2025-05-15 11:22:54 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 11:22:54 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/Maintenance Using BATT (Charge:88%) 10 secs +2025-05-15 11:22:54 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-15 11:22:54 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3430 +2025-05-15 11:22:54 +0300 WakeTime WakeTime: 0.101 sec +2025-05-15 11:22:54 +0300 Kernel Client Acks +2025-05-15 11:22:54 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 11:22:55 +0300 Assertions Summary- [System: PrevIdle PushSrvc SRPrevSleep kCPU] Using Batt(Charge: 88) +2025-05-15 11:22:56 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 11:23:04 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:10 id:0x0xd000099b8 [System: PrevIdle] +2025-05-15 11:23:04 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 331 secs +2025-05-15 11:23:05 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7198 wakeAt=2025-05-15 13:23:04 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=1061 wakeAt=2025-05-15 11:40:46 info="com.apple.dasd:501:com.apple.chronod.nextScheduledTimelineRefresh"] [process=powerd request=TCPKATurnOff deltaSecs=273610 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=3648 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=24437 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 11:23:05 +0300 PM Client Acks Delays to Sleep notifications: [PLSleepWakeAgent is slow(313 ms)] [com.apple.audio.MacAudio is slow(410 ms)] [com.apple.bluetooth.sleep is slow(1535 ms)] +2025-05-15 11:28:35 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099ca [System: PrevIdle] +2025-05-15 11:28:35 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099ca [System: PrevIdle] +2025-05-15 11:28:35 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd000099cb [System: PrevIdle] +2025-05-15 11:28:35 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 11:28:35 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to smc.70070000 wifibt SMC.OutboxNotEmpty/ Using BATT (Charge:88%) 10 secs +2025-05-15 11:28:35 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:wifibt - DriverDetails: +DriverReason:SMC.OutboxNotEmpty - DriverDetails: +2025-05-15 11:28:35 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3431 +2025-05-15 11:28:35 +0300 WakeTime WakeTime: 0.103 sec +2025-05-15 11:28:35 +0300 Kernel Client Acks +2025-05-15 11:28:35 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 11:28:37 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 11:28:41 +0300 Assertions PID 45395(AddressBookSourceSync) Released PreventUserIdleSystemSleep "Address Book Source Sync" 00:18:38 id:0x0x1000099b0 [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 11:28:45 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:10 id:0x0xd000099cb [System: PrevIdle] +2025-05-15 11:28:45 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 1054 secs +2025-05-15 11:28:47 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:05:53 id:0x0x1000099b7 [System: PrevIdle] +2025-05-15 11:28:53 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:00:18 id:0x0x1000099c9 [System: PrevIdle] +2025-05-15 11:28:59 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:00:18 id:0x0x1000099d4 [System: PrevIdle] +2025-05-15 11:29:00 +0300 Assertions PID 418(timed) Summary NoIdleSleepAssertion "com.apple.timed.ntp" 00:00:12 id:0x0x1000099d5 [System: PrevIdle] +2025-05-15 11:29:00 +0300 Assertions PID 418(timed) Summary NoIdleSleepAssertion "com.apple.timed.ntp" 00:00:06 id:0x0x1000099d6 [System: PrevIdle] +2025-05-15 11:29:00 +0300 Assertions PID 418(timed) Summary NoIdleSleepAssertion "com.apple.timed.ntp" 00:00:00 id:0x0x1000099d7 [System: PrevIdle] +2025-05-15 11:29:04 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7181 wakeAt=2025-05-15 13:28:45 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=1036 wakeAt=2025-05-15 11:46:20 info="com.apple.dasd:0:com.apple.bluetooth.CBMetrics"] [process=powerd request=TCPKATurnOff deltaSecs=273251 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=3289 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=24078 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 11:29:04 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(417 ms)] [com.apple.bluetooth.sleep is slow(1530 ms)] [AirPort configd plug-in is slow(18953 ms)] +2025-05-15 11:46:19 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099d9 [System: PrevIdle] +2025-05-15 11:46:19 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099d9 [System: PrevIdle] +2025-05-15 11:46:19 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 11:46:19 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/SleepService Using BATT (Charge:88%) 3 secs +2025-05-15 11:46:19 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-15 11:46:19 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3432 +2025-05-15 11:46:19 +0300 WakeTime WakeTime: 0.090 sec +2025-05-15 11:46:20 +0300 Kernel Client Acks +2025-05-15 11:46:20 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 11:46:22 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 11:46:22 +0300 Assertions Summary- [System: PrevIdle] Using Batt(Charge: 88) +2025-05-15 11:46:22 +0300 Sleep Entering Sleep state due to 'Sleep Service Back to Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 131 secs +2025-05-15 11:46:24 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7200 wakeAt=2025-05-15 13:46:24 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=940 wakeAt=2025-05-15 12:02:05 info="com.apple.dasd:0:com.apple.osanalytics.state-monitor"] [process=powerd request=TCPKATurnOff deltaSecs=272211 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=2249 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=23038 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 11:46:24 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(416 ms)] [com.apple.bluetooth.sleep is slow(1529 ms)] [mDNSResponder is slow(2893 ms)] +2025-05-15 11:48:33 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099e0 [System: PrevIdle] +2025-05-15 11:48:33 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099e0 [System: PrevIdle] +2025-05-15 11:48:33 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd000099e1 [System: PrevIdle] +2025-05-15 11:48:33 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 11:48:33 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to smc.70070000 wifibt SMC.OutboxNotEmpty/ Using BATT (Charge:88%) 8 secs +2025-05-15 11:48:33 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:wifibt - DriverDetails: +DriverReason:SMC.OutboxNotEmpty - DriverDetails: +2025-05-15 11:48:33 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3433 +2025-05-15 11:48:33 +0300 WakeTime WakeTime: 0.102 sec +2025-05-15 11:48:33 +0300 Kernel Client Acks +2025-05-15 11:48:33 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 11:48:34 +0300 Assertions Summary- [System: PrevIdle PushSrvc SRPrevSleep kCPU] Using Batt(Charge: 88) +2025-05-15 11:48:35 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 11:48:41 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:19:53 id:0x0x1000099d5 [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 11:48:41 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:19:47 id:0x0x1000099d6 [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 11:48:41 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:07 id:0x0xd000099e1 [System: PrevIdle] +2025-05-15 11:48:41 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 955 secs +2025-05-15 11:48:42 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7198 wakeAt=2025-05-15 13:48:41 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=955 wakeAt=2025-05-15 12:04:37 info="com.apple.dasd:0:com.apple.osanalytics.state-monitor"] [process=powerd request=TCPKATurnOff deltaSecs=272073 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=2111 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=22900 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 11:48:42 +0300 PM Client Acks Delays to Sleep notifications: [PLSleepWakeAgent is slow(404 ms)] [com.apple.audio.MacAudio is slow(415 ms)] [com.apple.bluetooth.sleep is slow(1535 ms)] +2025-05-15 12:04:36 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099ea [System: PrevIdle] +2025-05-15 12:04:36 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099ea [System: PrevIdle] +2025-05-15 12:04:36 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 12:04:36 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/SleepService Using BATT (Charge:88%) 3 secs +2025-05-15 12:04:36 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-15 12:04:36 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3434 +2025-05-15 12:04:36 +0300 WakeTime WakeTime: 0.108 sec +2025-05-15 12:04:37 +0300 Kernel Client Acks +2025-05-15 12:04:37 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:04:38 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 12:04:38 +0300 Assertions Summary- [System: PrevIdle] Using Batt(Charge: 88) +2025-05-15 12:04:39 +0300 Sleep Entering Sleep state due to 'Sleep Service Back to Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 955 secs +2025-05-15 12:04:42 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:16:07 id:0x0x1000099e6 [System: PrevIdle] +2025-05-15 12:04:46 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7196 wakeAt=2025-05-15 14:04:41 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=949 wakeAt=2025-05-15 12:20:35 info="com.apple.dasd:0:com.apple.icloud.searchpartyd.activity.BeaconPayLoadPublish-onBatteryOnWiFi"] [process=powerd request=TCPKATurnOff deltaSecs=271109 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=1148 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=21937 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 12:04:46 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(414 ms)] [com.apple.bluetooth.sleep is slow(1539 ms)] [mDNSResponder is slow(2872 ms)] [AirPort configd plug-in is slow(7187 ms)] +2025-05-15 12:20:34 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099f2 [System: PrevIdle] +2025-05-15 12:20:34 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 12:20:34 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/SleepService Using BATT (Charge:88%) 3 secs +2025-05-15 12:20:34 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-15 12:20:34 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3435 +2025-05-15 12:20:34 +0300 WakeTime WakeTime: 0.097 sec +2025-05-15 12:20:34 +0300 Kernel Client Acks +2025-05-15 12:20:34 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:20:35 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd000099f2 [System: PrevIdle PushSrvc IPushSrvc kCPU] +2025-05-15 12:20:36 +0300 Assertions Summary- [System: PrevIdle PushSrvc kCPU] Using Batt(Charge: 88) +2025-05-15 12:20:36 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 12:20:36 +0300 Assertions Summary- [System: PrevIdle] Using Batt(Charge: 88) +2025-05-15 12:20:37 +0300 Sleep Entering Sleep state due to 'Sleep Service Back to Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 54 secs +2025-05-15 12:20:43 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7196 wakeAt=2025-05-15 14:20:39 info="upkeep wake"] [process=dasd request=SleepService deltaSecs=993 wakeAt=2025-05-15 12:37:16 info="com.apple.dasd:501:com.apple.chronod.nextScheduledTimelineRefresh"] [process=powerd request=TCPKATurnOff deltaSecs=270152 wakeAt=2025-05-18 15:23:15] [*process=powerd request=CSPNEvaluation deltaSecs=190 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=20979 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 12:20:43 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(416 ms)] [com.apple.bluetooth.sleep is slow(1533 ms)] [mDNSResponder is slow(2868 ms)] [AirPort configd plug-in is slow(6554 ms)] +2025-05-15 12:21:31 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a08 [System: PrevIdle] +2025-05-15 12:21:31 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a08 [System: PrevIdle] +2025-05-15 12:21:31 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd00009a09 [System: PrevIdle] +2025-05-15 12:21:31 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 12:21:31 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to smc.70070000 wifibt SMC.OutboxNotEmpty/ Using BATT (Charge:88%) 5 secs +2025-05-15 12:21:31 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:wifibt - DriverDetails: +DriverReason:SMC.OutboxNotEmpty - DriverDetails: +2025-05-15 12:21:31 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3436 +2025-05-15 12:21:31 +0300 WakeTime WakeTime: 0.103 sec +2025-05-15 12:21:31 +0300 Kernel Client Acks +2025-05-15 12:21:31 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:21:32 +0300 Assertions Summary- [System: PrevIdle PushSrvc SRPrevSleep kCPU] Using Batt(Charge: 88) +2025-05-15 12:21:33 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 12:21:36 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:05 id:0x0xd00009a09 [System: PrevIdle] +2025-05-15 12:21:36 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:88%) 42 secs +2025-05-15 12:21:39 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:17:02 id:0x0x1000099eb [System: PrevIdle] +2025-05-15 12:21:39 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7197 wakeAt=2025-05-15 14:21:36 info="upkeep wake"] [process=dasd request=SleepService deltaSecs=1053 wakeAt=2025-05-15 12:39:12 info="com.apple.dasd:501:com.apple.chronod.nextScheduledTimelineRefresh"] [process=powerd request=TCPKATurnOff deltaSecs=270096 wakeAt=2025-05-18 15:23:15] [*process=powerd request=CSPNEvaluation deltaSecs=134 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=20923 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 12:21:39 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(414 ms)] [com.apple.bluetooth.sleep is slow(1535 ms)] [AirPort configd plug-in is slow(3031 ms)] +2025-05-15 12:22:18 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a11 [System: PrevIdle] +2025-05-15 12:22:18 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a11 [System: PrevIdle] +2025-05-15 12:22:18 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd00009a12 [System: PrevIdle] +2025-05-15 12:22:18 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 12:22:18 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to smc.70070000 wifibt SMC.OutboxNotEmpty/ Using BATT (Charge:88%) 9 secs +2025-05-15 12:22:18 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:wifibt - DriverDetails: +DriverReason:SMC.OutboxNotEmpty - DriverDetails: +2025-05-15 12:22:18 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3437 +2025-05-15 12:22:18 +0300 WakeTime WakeTime: 0.105 sec +2025-05-15 12:22:18 +0300 Kernel Client Acks +2025-05-15 12:22:18 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:22:19 +0300 Assertions PID 45423(AddressBookSourceSync) Released PreventUserIdleSystemSleep "Address Book Source Sync" 00:01:43 id:0x0x1000099f9 [System: PrevIdle PushSrvc SRPrevSleep kCPU] +2025-05-15 12:22:20 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 12:22:25 +0300 Assertions PID 418(timed) Released NoIdleSleepAssertion "com.apple.timed.ntp" 00:01:50 id:0x0x1000099f6 [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 12:22:27 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:09 id:0x0xd00009a12 [System: PrevIdle] +2025-05-15 12:22:27 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:87%) 85 secs +2025-05-15 12:22:29 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7198 wakeAt=2025-05-15 14:22:27 info="upkeep wake"] [process=dasd request=SleepService deltaSecs=935 wakeAt=2025-05-15 12:38:03 info="com.apple.dasd:501:com.apple.chronod.nextScheduledTimelineRefresh"] [process=powerd request=TCPKATurnOff deltaSecs=270046 wakeAt=2025-05-18 15:23:15] [*process=powerd request=CSPNEvaluation deltaSecs=85 wakeAt=2025-05-15 12:23:53] [process=powerd request=UserWake deltaSecs=20874 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 12:22:29 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.time is slow(257 ms)] [com.apple.duetactivityscheduler is slow(257 ms)] [com.apple.apfsd is slow(257 ms)] [PLPowerEventListener is slow(257 ms)] [com.apple.time is slow(258 ms)] [PLSleepWakeAgent is slow(265 ms)] [WiFiAgent is slow(272 ms)] [com.apple.audio.MacAudio is slow(415 ms)] [AirPort configd plug-in is slow(463 ms)] [com.apple.bluetooth.sleep is slow(1521 ms)] +2025-05-15 12:23:52 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "Holding in darkwake for up to 20 seconds to query model for inactivity prediction" 00:00:00 id:0x0xd00009a1a [System: PrevIdle SRPrevSleep kCPU] +2025-05-15 12:23:52 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "Holding in darkwake for up to 20 seconds to query model for inactivity prediction" 00:00:00 id:0x0xd00009a1a [System: PrevIdle] +2025-05-15 12:23:52 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a1b [System: PrevIdle] +2025-05-15 12:23:52 +0300 Assertions PID 388(powerd) Created InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:00 id:0x0xd00009a1c [System: PrevIdle] +2025-05-15 12:23:52 +0300 com.apple.sleepservices.sessionStarted SleepService: window begins with cap time=180 secs +2025-05-15 12:23:52 +0300 DarkWake DarkWake from Deep Idle [CDNP] : due to NUB.SPMI0.SW3 nub-spmi0.0x02 rtc/Maintenance Using BATT (Charge:87%) 6 secs +2025-05-15 12:23:52 +0300 WakeDetails DriverReason:NUB.SPMI0.SW3 - DriverDetails: +DriverReason:nub-spmi0.0x02 - DriverDetails: +DriverReason:rtc - DriverDetails: +2025-05-15 12:23:52 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3438 +2025-05-15 12:23:52 +0300 WakeTime WakeTime: 0.103 sec +2025-05-15 12:23:52 +0300 Kernel Client Acks +2025-05-15 12:23:52 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:23:53 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a1b [System: PrevIdle PushSrvc SRPrevSleep IPushSrvc kCPU] +2025-05-15 12:23:54 +0300 com.apple.sleepservices.sessionTerminated SleepService: window has terminated. +2025-05-15 12:23:58 +0300 Assertions PID 388(powerd) Released InternalPreventSleep "PM configd - Wait for Device enumeration" 00:00:05 id:0x0xd00009a1c [System: PrevIdle] +2025-05-15 12:23:58 +0300 Sleep Entering Sleep state due to 'Maintenance Sleep':TCPKeepAlive=active Using Batt (Charge:87%) 629 secs +2025-05-15 12:23:59 +0300 Wake Requests [process=mDNSResponder request=Maintenance deltaSecs=7198 wakeAt=2025-05-15 14:23:58 info="upkeep wake"] [*process=dasd request=SleepService deltaSecs=1026 wakeAt=2025-05-15 12:41:05 info="com.apple.dasd:501:com.apple.chronod.nextScheduledTimelineRefresh"] [process=powerd request=TCPKATurnOff deltaSecs=269956 wakeAt=2025-05-18 15:23:15] [process=powerd request=CSPNEvaluation deltaSecs=3653 wakeAt=2025-05-15 13:24:53] [process=powerd request=UserWake deltaSecs=20783 wakeAt=2025-05-15 18:10:23 info="com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer,802"] +2025-05-15 12:23:59 +0300 PM Client Acks Delays to Sleep notifications: [com.apple.audio.MacAudio is slow(414 ms)] [com.apple.bluetooth.sleep is slow(1529 ms)] +2025-05-15 12:34:27 +0300 Assertions PID 445(WindowServer) Created UserIsActive "com.apple.iohideventsystem.queue.tickle serviceID:100000297 service:AppleM68Buttons product:(null) eventType:3" 00:00:00 id:0x0x900009a22 [System: PrevIdle DeclUser kDisp] +2025-05-15 12:34:27 +0300 Assertions PID 388(powerd) Created UserIsActive "com.apple.powermanagement.lidopen" 00:00:00 id:0x0x900009a23 [System: PrevIdle DeclUser kDisp] +2025-05-15 12:34:27 +0300 Assertions PID 507(mDNSResponder) Created MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a24 [System: PrevIdle DeclUser kDisp] +2025-05-15 12:34:27 +0300 Assertions PID 507(mDNSResponder) Released MaintenanceWake "mDNSResponder:maintenance" 00:00:00 id:0x0xd00009a24 [System: PrevIdle DeclUser kDisp] +2025-05-15 12:34:27 +0300 Notification Display is turned on +2025-05-15 12:34:27 +0300 Wake Wake from Deep Idle [CDNVA] : due to smc.70070000 lid MTP.DOCK.CHANNELS.AP0.IRQ/HID Activity Using BATT (Charge:87%) +2025-05-15 12:34:27 +0300 WakeDetails DriverReason:smc.70070000 - DriverDetails: +DriverReason:lid - DriverDetails: +DriverReason:MTP.DOCK.CHANNELS.AP0.IRQ - DriverDetails: +2025-05-15 12:34:27 +0300 HibernateStats hibmode=3 standbydelaylow=0 standbydelayhigh=0 3439 +2025-05-15 12:34:27 +0300 WakeTime WakeTime: 0.107 sec +2025-05-15 12:34:27 +0300 Kernel Client Acks +2025-05-15 12:34:27 +0300 Kernel Client Acks Delays to Wake notifications: [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: SetState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(118 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(115 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(119 ms)] Delays to Sleep notifications: [powerd is slow(3023 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(101 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(119 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(122 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(61 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [powerd is slow(3010 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(79 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(79 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(120 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(124 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: SetState to 1)(77 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(117 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(100 ms)] [Codec Output driver is slow(msg: SetState to 1)(79 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(121 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(123 ms)] [Port-USB-C driver is slow(msg: SetState to 0)(60 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(81 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(78 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(78 ms)] [RTBuddy(GFX) driver is slow(msg: SetState to 2)(102 ms)] [AppleConvergedIPCOLYBTControl driver is slow(msg: SetState to 1)(116 ms)] [AppleMultiFunctionManager driver is slow(msg: SetState to 1)(121 ms)] [RTBuddy(ANS2) driver is slow(msg: SetState to 2)(82 ms)] [Codec Output driver is slow(msg: WillChangeState to 1)(75 ms)] [AppleCS42L84Audio driver is slow(msg: DidChangeState to 1)(75 ms)] +2025-05-15 12:34:27 +0300 Assertions PID 445(WindowServer) Created PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x700009a2b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-15 12:34:28 +0300 Assertions PID 445(WindowServer) Released PreventSystemSleep "com.apple.WindowServer.PUIDS" 00:00:00 id:0x0x700009a2b [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-15 12:34:28 +0300 Assertions Summary- [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] Using Batt(Charge: 87) +2025-05-15 12:34:29 +0300 Assertions PID 448(loginwindow) Created UserIsActive "Loginwindow User Activity" 00:00:00 id:0x0x900009a64 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-15 12:34:29 +0300 Assertions PID 448(loginwindow) Released UserIsActive "Loginwindow User Activity" 00:00:00 id:0x0x900009a64 [System: PrevIdle DeclUser IPushSrvc kCPU kDisp] +2025-05-15 12:35:13 +0300 Assertions Summary- [System: PrevIdle DeclUser kDisp] Using Batt(Charge: 87) +2025-05-15 12:36:28 +0300 Assertions PID 388(powerd) TimedOut UserIsActive "com.apple.powermanagement.lidopen" 00:02:00 id:0x0x900009a23 [System: PrevIdle DeclUser kDisp] +2025-05-15 12:36:35 +0300 Assertions PID 875(sharingd) Released PreventUserIdleSystemSleep "Handoff" 00:01:48 id:0x0x100009a6e [System: PrevIdle DeclUser kDisp] + +Total Sleep/Wakes since boot:2033 + +2025-05-15 12:38:44 +0300 : Showing all currently held IOKit power assertions +Assertion status system-wide: + BackgroundTask 0 + ApplePushServiceTask 0 + UserIsActive 1 + PreventUserIdleDisplaySleep 0 + PreventSystemSleep 0 + ExternalMedia 0 + PreventUserIdleSystemSleep 1 + NetworkClientActive 0 +Listed by owning process: + pid 388(powerd): [0x0003f6b900019a25] 00:04:16 PreventUserIdleSystemSleep named: "Powerd - Prevent sleep while display is on" + pid 445(WindowServer): [0x0003f6b900099a22] 00:00:00 UserIsActive named: "com.apple.iohideventsystem.queue.tickle serviceID:100000977 service:AppleMultitouchDevice product:Apple Internal Keyboard / Trackpad eventType:17" + Timeout will fire in 120 secs Action=TimeoutActionRelease +No kernel assertions. + + +Memory: + + Memory: 16 GB + Type: LPDDR5 + Manufacturer: Hynix + +NVMExpress: + + Apple SSD Controller: + + APPLE SSD AP0256Z: + + Capacity: 251 GB (251 000 193 024 bytes) + TRIM Support: Yes + Model: APPLE SSD AP0256Z + Revision: 532.100. + Serial Number: 0ba028e440b0d625 + Detachable Drive: No + BSD Name: disk0 + Partition Map Type: GPT (GUID Partition Table) + Removable Media: No + S.M.A.R.T. status: Verified + Volumes: + iSCPreboot: + Capacity: 524,3 MB (524 288 000 bytes) + BSD Name: disk0s1 + Content: Apple_APFS_ISC + Macintosh HD: + Capacity: 245,11 GB (245 107 195 904 bytes) + BSD Name: disk0s2 + Content: Apple_APFS + Recovery: + Capacity: 5,37 GB (5 368 664 064 bytes) + BSD Name: disk0s3 + Content: Apple_APFS_Recovery + +Network: + + Ethernet Adapter (en3): + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: en3 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Ethernet: + MAC Address: 12:c3:4f:96:68:ab + Media Options: + Media Subtype: none + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 0 + + Ethernet Adapter (en4): + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: en4 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Ethernet: + MAC Address: 12:c3:4f:96:68:ac + Media Options: + Media Subtype: none + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 1 + + Thunderbolt Bridge: + + Type: Ethernet + Hardware: Ethernet + BSD Device Name: bridge0 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 2 + + Wi-Fi: + + Type: AirPort + Hardware: AirPort + BSD Device Name: en0 + IPv4: + Configuration Method: DHCP + IPv6: + Configuration Method: Automatic + Ethernet: + MAC Address: c4:84:fc:05:95:19 + Media Options: + Media Subtype: Auto Select + Proxies: + Exceptions List: *.local, 169.254/16 + FTP Passive Mode: Yes + Service Order: 3 + + V2BOX: + + Type: VPN (hossin.asaadi.V2Box) + IPv4: + Configuration Method: VPN + IPv6: + Configuration Method: Automatic + Service Order: 4 + +Power: + + Battery Information: + + Model Information: + Serial Number: F5D50370E0U10DLDM + Device Name: bq40z651 + Pack Lot Code: 0 + PCB Lot Code: 0 + Firmware Version: 0b00 + Hardware Revision: 100 + Cell Revision: f914 + Charge Information: + The battery’s charge is below the warning level: No + Fully Charged: No + Charging: No + State of Charge (%): 86 + Health Information: + Cycle Count: 26 + Condition: Normal + Maximum Capacity: 100 % + + System Power Settings: + + AC Power: + System Sleep Timer (Minutes): 1 + Disk Sleep Timer (Minutes): 10 + Display Sleep Timer (Minutes): 10 + Sleep on Power Button: Yes + Wake on LAN: Yes + Hibernate Mode: 3 + Low Power Mode: No + Prioritize Network Reachability Over Sleep: No + Battery Power: + System Sleep Timer (Minutes): 1 + Disk Sleep Timer (Minutes): 10 + Display Sleep Timer (Minutes): 2 + Sleep on Power Button: Yes + Wake on LAN: No + Current Power Source: Yes + Hibernate Mode: 3 + Low Power Mode: No + Prioritize Network Reachability Over Sleep: No + Reduce Brightness: Yes + + Hardware Configuration: + + UPS Installed: No + + AC Charger Information: + + Connected: No + Charging: No + + Power Events: + + Next Scheduled Events: + + appPID: 802 + Type: Wake + Scheduled By: com.apple.alarm.user-invisible-com.apple.calaccessd.travelEngine.periodicRefreshTimer + Time: 15.05.2025, 18:10 + UserVisible: 0 + + appPID: 377 + Type: Wake + Scheduled By: com.apple.alarm.user-invisible-com.apple.acmd.alarm + Time: 15.05.2025, 23:22 + UserVisible: 0 + +Printer Software: + + PPDs: + + PPDs: + + Printers: + + Printers: + + Image Capture Devices: + + Image Capture Devices: + + Image Capture Support: + + Image Capture Support: + Path: /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/AirScanLegacyDiscovery.app/Contents/Info.plist + Version: 607 + +Printers: + + Status: The printers list is empty. To add printers, choose Apple menu > System Settings…, click Printers & Scanners, and then click Add Printer, Scanner, or Fax… + CUPS Version: CUPS/2.3.4 (macOS 15.4.1; arm64) IPP/2.0 + +Raw Support: + + Hasselblad H3D-31: + + Hasselblad Lunar: + + Leaf AFi 5: + + Nikon 1 V3: + + Fujifilm X-H2: + + Nikon D800E: + + Canon EOS 90D: + + Sony DSC-HX95: + + Nikon D70: + + Olympus E-400: + + iPhone14,3 front: + + Panasonic LUMIX DC-TZ202: + + Sony Alpha DSLR-A200: + + Sony Alpha ILCE-7M IV: + + Leaf AFi 75S: + + Sony ZV-1M2: + + Panasonic LUMIX DMC-GH3: + + Fujifilm X100S: + + Panasonic LUMIX DC-G99D: + + Canon PowerShot G6: + + iPad13,10 backwide: + + iPhone12,1 backwide: + + Sony DSC-HX99: + + Canon Kiss X10: + + Pentax 645D: + + iPhone11,4 backwide: + + Panasonic LUMIX DC-TZ97: + + Olympus PEN E-PL2: + + iPad 8,7 backcamera: + + Panasonic LUMIX DMC-LX2: + + Canon EOS M2: + + Nikon Z5: + + Nikon D1H: + + Nikon D90: + + Nikon D810A: + + Pentax *ist DL: + + Sony Cyber-shot DSC-RX100 III: + + Sony Alpha DSLR-A290: + + iPhone15,5 back: + + Olympus OM-D E-M5 Mark III: + + Canon EOS 77D: + + Panasonic LUMIX DC-GH6: + + Olympus OM-D E-M1 Mark II: + + Sony Alpha ILCE-5000: + + Canon EOS 5DS R: + + Canon EOS R6: + + Canon EOS M100: + + iPad13,6 backwide: + + Sony Alpha SLT-A77: + + Leica V-Lux 1: + + Olympus E-410: + + Nikon E8400: + + Sony Alpha SLT-A68: + + Canon EOS M200: + + Fujifilm GFX100S: + + Panasonic LUMIX DMC-LX7: + + Canon PowerShot G11: + + Panasonic LUMIX DMC-GF1: + + Leica X Vario (Typ 107): + + Nikon D3100: + + Canon EOS Rebel T6i: + + Nikon D7100: + + Pentax K20D: + + iPad 7,3 backcamera: + + Olympus PEN Lite E-PL10: + + Panasonic LUMIX DMC-TZ70: + + Sony Alpha DSLR-A580: + + Leica V-Lux 5: + + Fujifilm X-E1: + + Panasonic LUMIX DC-G90: + + Nikon COOLPIX P7100: + + Panasonic LUMIX DMC-LX10: + + iPhone15,3 backwide: + + Canon EOS Kiss X7i: + + Leica X-U (Typ 113): + + Canon EOS Kiss 8000D: + + iPad14,2 backwide: + + iPad13,4 backwide: + + Minolta DiMAGE A1: + + Panasonic LUMIX DMC-TZ82: + + Nikon COOLPIX P7800: + + Leica X2: + + Nikon D1: + + Panasonic LUMIX DMC-GF6: + + Olympus PEN E-PL3: + + Sony Alpha ILCE-6600: + + Sony Alpha ILCE-9M2: + + Canon EOS D60: + + Canon EOS Digital Rebel XT: + + Nikon Z 6 2: + + iPad 8,6 backcamera: + + Sony Alpha ILCE-7: + + iPhone10,5 wide: + + Nikon COOLPIX A1000: + + Panasonic LUMIX DC-GX850: + + Sony Cyber-shot DSC-RX100: + + Leaf Valeo 11: + + Canon EOS Digital Rebel: + + Panasonic LUMIX DC-GX9: + + Panasonic LUMIX DC-S1: + + iPhone15,2 backtelephoto: + + Sony DSC-RX10M4: + + Sony Alpha ILCE-7S: + + Olympus OM-D E-M10: + + Sony Alpha NEX-5R: + + Konica Minolta ALPHA-7 DIGITAL: + + Olympus STYLUS 1: + + Sony Alpha NEX-3: + + Canon EOS 6D Mark II: + + Canon PowerShot G5 X: + + Canon PowerShot S90: + + Leica S (Typ 007): + + Konica Minolta MAXXUM 7D: + + Canon EOS 5D Mark IV: + + Panasonic LUMIX DMC-LC1: + + Canon EOS 700D: + + Panasonic LUMIX DMC-LX15: + + Panasonic LUMIX DC-GX800: + + Nikon COOLPIX A: + + Canon EOS 40D: + + Nikon 1 S1: + + Panasonic LUMIX DC-G100: + + Nikon D5300: + + Panasonic LUMIX DMC-GM1: + + iPhone14,3 backwide: + + Olympus E-30: + + Panasonic LUMIX DMC-G6: + + iPhone14,7 back: + + Sony Alpha DSLR-A500: + + Minolta DiMAGE A2: + + Canon EOS M5: + + Canon EOS Kiss X10i: + + Nikon 1 J1: + + Canon EOS Digital Rebel XTi: + + iPhone16,2 front: + + Fujifilm X-T4: + + Olympus E-500: + + Canon EOS 750D: + + Panasonic LUMIX DMC-G10: + + Sony Alpha ILCE-6100: + + Leaf Aptus 75s: + + Canon EOS 3000D: + + iPad8,5 backwide: + + Nikon Z6: + + Canon EOS 760D: + + Canon EOS Rebel T5: + + Pentax 645Z: + + Panasonic LUMIX DMC-TZ100: + + Canon EOS-1D X Mark III: + + iPhone15,5 front: + + Leaf AFi 7: + + iPhone 10,1 back camera: + + Fujifilm XQ2: + + Canon EOS Rebel T7i: + + Pentax K-30: + + iPhone14,2 backultrawide: + + Sony Alpha SLT-A35: + + Sony Alpha NEX-5: + + Canon EOS Kiss Digital X3: + + Canon EOS R10: + + Panasonic LUMIX DMC-CM1: + + iPhone 10,3 backtelephotocamera: + + Pentax K-1: + + iPhone15,4 back ultrawide: + + iPhone14,8 front: + + Leica D-Lux 4: + + Leaf AFi-II 6: + + Canon PowerShot G15: + + Olympus XZ-1: + + iPhone15,3 backtelephoto: + + Nikon COOLPIX P7000: + + Sony Alpha ILCE-7RM4: + + iPad 7,1 backcamera: + + Sony NEX-VG20: + + Canon EOS 400D: + + Panasonic LUMIX DMC-TZ110: + + Pentax MX-1: + + Panasonic LUMIX DC-ZS80: + + Panasonic LUMIX DC-ZS80D: + + Canon EOS Kiss X8i: + + Olympus E-510: + + Nikon E8800: + + PENTAX RICOH GR II: + + iPhone13,3 backtelephoto: + + iPhone13,3 backwide: + + Nikon COOLPIX P7700: + + Nikon D3500: + + iPhone16,1 back: + + Hasselblad H3D-31 II: + + Nikon D7500: + + Pentax K-3 II: + + Sony Alpha NEX-6: + + Konica Minolta DYNAX 7D: + + Canon EOS Rebel SL2: + + Fujifilm X-H1: + + Panasonic LUMIX DMC-FZ35: + + Olympus PEN E-PL5: + + Canon EOS-1D: + + Olympus E-5: + + Canon EOS M50 Mark II: + + Canon PowerShot SX50 HS: + + Panasonic LUMIX DMC-G3: + + iPad 8,4 backcamera: + + Canon EOS Rebel T100: + + Canon EOS Digital Rebel XS: + + Panasonic LUMIX DMC-GX80: + + Canon EOS 450D: + + Leica T (Typ 701): + + Sony Alpha ILCE-7R III A: + + Canon EOS-1D C: + + Olympus C7000Z: + + iPhone15,2 front: + + Olympus OM-D E-M5 Mark II: + + Leica SL2: + + Canon EOS Kiss Digital N: + + Panasonic LUMIX DMC-ZS50: + + Panasonic LUMIX DMC-G80: + + Olympus OM-D E-M1 Mark III: + + Sony Alpha NEX-5T: + + Nikon D3000: + + Nikon D7000: + + Fujifilm X20: + + Pentax K10D: + + Panasonic LUMIX DMC-GF3: + + Canon EOS 1000D: + + Panasonic LUMIX DMC-LX9: + + Sony Alpha NEX-7: + + Olympus E-450: + + iPhone14,5 front: + + Pentax Q: + + Panasonic LUMIX DMC-TZ71: + + Hasselblad X1D-50c: + + Canon PowerShot S100: + + Nikon Z30: + + Canon PowerShot G9 X Mark II: + + Sony Alpha ILCE-7CR: + + Nikon D750: + + Canon EOS 100D: + + iPhone14,3 backultrawide: + + Panasonic LUMIX DMC-G85: + + iPhone 10,2 back camera: + + Canon EOS 1200D: + + iPhone12,3 backwide: + + Sony Alpha DSLR-A380: + + Sony Alpha ILCE-7RM4A: + + iPhone11,6 backwide: + + Panasonic LUMIX DMC-GF8: + + Leica D-LUX (Typ 109): + + Panasonic LUMIX DMC-GX85: + + Leica M: + + Canon EOS-1Ds Mark III: + + Leica M8: + + Nikon D2X: + + Sony ILME-FX30: + + Canon EOS 50D: + + Leica V-Lux 4: + + Panasonic LUMIX DMC-TX1: + + Leica X (Typ 113): + + iPhone 6s Plus backcamera: + + iPad 8,3 backcamera: + + Nikon Z50: + + Sony Cyber-shot DSC-RX10: + + Sony Alpha ILCE-6400: + + Canon EOS Rebel T6: + + Canon EOS Rebel T8i: + + Olympus OM-1: + + Nikon Z7: + + Olympus PEN-F: + + Samsung NX11: + + iPhone13,4 backtelephoto: + + Panasonic LUMIX DC-TX2D: + + LEICA M MONOCHROM (Typ 246): + + Nikon Zf: + + Nikon B700: + + Olympus E-600: + + Fujifilm X-E4: + + Nikon Z fc: + + Nikon D3S: + + Panasonic LUMIX DMC-LX100: + + Sony Cyber-shot DSC-RX10 III: + + Sony Alpha DSLR-A450: + + Sony Alpha DSLR-A230: + + Canon PowerShot G12: + + Sony Alpha ILCE-7S II: + + Nikon 1 J3: + + Panasonic LUMIX DC-ZS70: + + Canon EOS M10: + + Canon EOS-1Ds Mark II: + + iPhone14,2 front: + + Nikon D850: + + DxO ONE: + + Nikon D5200: + + Sony DSC-RX0M2: + + Canon EOS-1D Mark III: + + Panasonic LUMIX DMC-FZ50: + + Sony Cyber-shot DSC-RX10 II: + + Canon PowerShot G3 X: + + Fujifilm X-A3: + + Panasonic LUMIX DMC-GX7: + + Canon PowerShot S100V: + + Canon EOS Kiss Digital: + + Panasonic LUMIX DC-TZ96D: + + Canon EOS-1Ds: + + Fujifilm FinePix S3Pro: + + Sony Alpha ZV-E10: + + Fujifilm X30: + + Panasonic LUMIX DC-G9: + + Canon EOS 5D: + + Sony Cyber-shot DSC-RX1R II: + + Panasonic LUMIX DC-G91: + + iPhone10,6 backwide: + + Panasonic LUMIX DC-TZ91: + + Sony Alpha ILCE-9 III: + + Panasonic LUMIX DC-FZ81: + + Fujifilm X-A7: + + Canon EOS Kiss Digital X: + + LEICA M11 MONOCHROM: + + Sony Alpha DSLR-A300: + + Nikon D3: + + iPhone14,4 backultrawide: + + Panasonic LUMIX DMC-G70: + + iPad 8,2 backcamera: + + Hasselblad H3DII-50: + + Pentax K-3: + + Canon PowerShot S110: + + Leaf AFi 54S: + + Canon EOS-1D Mark II: + + Canon PowerShot SX60 HS: + + Nikon 1 V2: + + Canon EOS Rebel T1i: + + Canon EOS M3: + + Pentax K-S1: + + Panasonic LUMIX DMC-GH2: + + Olympus OM-D E-M10 Mark II: + + Fujifilm X-T3: + + Sony Cyber-shot DSC-RX1: + + Panasonic LUMIX DC-TZ96: + + Leica M11-P: + + Sony Alpha DSLR-A390: + + Panasonic LUMIX DMC-LX1: + + iPhone 9,4 backtelephotocamera: + + Leica S2: + + Canon EOS R50: + + Nikon COOLPIX P950: + + Leaf Aptus 65: + + Canon EOS R7: + + Pentax K200D: + + Sony Alpha ILCE-5100: + + Olympus OM-D E-M10 Mark IV: + + Olympus PEN Lite E-PL9: + + Nikon E8700: + + iPad13,9 backwide: + + iPhone15,2 backwide: + + iPhone14,5 backwide: + + Nikon D40: + + Nikon D3400: + + Pentax K-x: + + Olympus E-620: + + Canon PowerShot G9: + + Hasselblad CF-39: + + Sony Cyber-shot DSC-RX100 VII: + + Leica D-Lux 3: + + Olympus PEN E-PL8: + + Panasonic LUMIX DMC-G7: + + Phase One IQ3 100: + + Nikon D40X: + + Sony Alpha ILCE-7R III: + + Leica TL2: + + Leica M9: + + Nikon COOLPIX P6000: + + Fujifilm XF10: + + iPhone9,2 tele: + + iPad 8,1 backcamera: + + Canon EOS Rebel T7: + + Canon EOS Digital Rebel XSi: + + Pentax *ist DL2: + + Nikon D100: + + Panasonic LUMIX DC-GF90: + + Nikon Z8: + + Nikon D60: + + Leica D-Lux 7: + + Canon EOS 6D: + + Panasonic LUMIX DMC-TZ60: + + Sony Alpha ILCE-6700: + + Leaf Aptus 75: + + Canon EOS 200D Mark II: + + Sony Alpha SLT-A55: + + iPhone SE backcamera: + + Leica M10: + + Hasselblad CFV-16: + + Sony Alpha ILCE-7S III: + + Olympus E-1: + + Canon EOS 60D: + + Panasonic LUMIX DMC-GF5: + + Sony Alpha SLT-A37: + + Panasonic LUMIX DMC-FZ300: + + Sony Alpha SLT-A77 II: + + iPhone14,5 backultrawide: + + Konica Minolta ALPHA SWEET DIGITAL: + + iPhone14,7 back ultra-wide: + + Konica Minolta DYNAX 5D: + + iPhone14,8 back: + + Canon EOS 600D: + + Canon PowerShot G1 X Mark II: + + Canon PowerShot G16: + + LEICA Q2 MONO: + + Fujifilm X-E2S: + + Sony DSC-RX0: + + Panasonic LUMIX DC-GF10: + + iPhone14,2 backwide: + + Nikon D80: + + Panasonic LUMIX DC-FZ10002: + + Canon PowerShot SX1 IS: + + Fujifilm X-M1: + + Canon PowerShot S120: + + Olympus PEN Lite E-PL6: + + iPhone16,1 front: + + Panasonic LUMIX DC-S5M2: + + Fujifilm X100T: + + Canon EOS Rebel SL3: + + Fujifilm X-H2S: + + Nikon D5600: + + Canon EOS 5D Mark III: + + iPhone 10,3 backcamera: + + Canon EOS 650D: + + Panasonic LUMIX DMC-GX7MK2: + + Panasonic LUMIX DC-G95D: + + iPad13,7 backwide: + + iPhone16,1 back telephoto: + + Canon EOS Rebel T2i: + + Nikon D4: + + Nikon D200: + + Nikon 1 J5: + + Panasonic LUMIX DMC-FZ200: + + Sony ZV-1: + + iPhone15, back ultra wide: + + iPhone15,4 front: + + Sony Alpha NEX-3N: + + Panasonic LUMIX DMC-FZ70: + + Olympus PEN E-PL1s: + + Sony Cyber-shot DSC-RX1R: + + Panasonic LUMIX DMC-FZ1000: + + Nikon D2H: + + Canon EOS 7D Mark II: + + iPad13,11 backwide: + + Sony Alpha ILCE-3000: + + Canon PowerShot SX70 HS: + + Olympus STYLUS SH-2: + + Hasselblad X2D 100C: + + Nikon D5100: + + Canon EOS Kiss Digital F: + + Nikon COOLPIX P330: + + Canon EOS Kiss X50: + + Samsung GX-10: + + iPhone14,7 front: + + iPad13,5 backwide: + + Fujifilm X-T200: + + Canon EOS M50: + + Canon PowerShot S95: + + Canon PowerShot G7 X Mark II: + + Canon EOS 300D: + + Hasselblad H3D-39: + + Sony DSC-V3: + + iPhone16,2 back: + + Panasonic LUMIX DC-TZ200: + + Canon PowerShot G7 X Mark III: + + Canon EOS 7D: + + Panasonic LUMIX DMC-GM5: + + Adobe DNG: + + Canon PowerShot G3: + + Fujifilm X-100F: + + Fujifilm X-E3: + + Olympus OM-D E-M10 MarkIII: + + iPhone13,2 backwide: + + Pentax K-5: + + iPhone12,5 backwide: + + Panasonic LUMIX DMC-FZ100: + + iPhone14,2 backtelephoto: + + Leaf AFi 6: + + Olympus OM-D E-M1: + + Panasonic LUMIX DC-TZ93: + + Olympus PEN E-PM1: + + Panasonic LUMIX DC-G95: + + Panasonic LUMIX DMC-FZ330: + + Canon PowerShot G1 X: + + Pentax K-S2: + + Panasonic LUMIX DC-FZ83: + + Panasonic LUMIX DC-S5M2X: + + Sony Alpha ZV-E1: + + Pentax *ist DS: + + iPad14,1 backwide: + + Nikon D300: + + Sony Alpha ILCE-7R IV: + + Canon EOS M6 Mark II: + + Canon EOS 350D: + + Fujifilm X-A2: + + Panasonic LUMIX DMC-TZ101: + + Konica Minolta ALPHA-5 DIGITAL: + + iPhone 9,4 backcamera: + + Samsung GX-20: + + Panasonic LUMIX DMC-GH4: + + Sony Alpha SLT-A99: + + Sony Alpha SLT-A65: + + Sony Alpha DSLR-A100: + + Nikon Z9: + + Sony Alpha ILCE-7R II: + + Canon EOS 4000D: + + Panasonic LUMIX DMC-LX3: + + Leica TL: + + Canon EOS 10D: + + Panasonic LUMIX DMC-G1: + + iPhone14,4 front: + + Leaf Valeo 17: + + Canon EOS 5D Mark II: + + Fujifilm GFX 50R: + + Pentax K-5 II: + + Nikon D3300: + + Samsung NX100: + + Sony Alpha ILCE-7 II: + + Panasonic LUMIX DMC-FZ2500: + + Panasonic LUMIX DC-TZ220D: + + Canon EOS 70D: + + Fujifilm X-T2: + + Leaf Aptus 17: + + PENTAX RICOH GR: + + Sony Alpha ILCE-1: + + Panasonic LUMIX DMC-TZ80: + + iPhone 10,2 back telephoto camera: + + Leica M Monochrom: + + Sony Alpha ILCE-7M3: + + Sony Alpha ILCE-7R V: + + Panasonic LUMIX DMC-GF2: + + Olympus PEN E-PM2: + + Canon EOS Rebel T3i: + + Canon PowerShot G9 X: + + Canon EOS R5: + + Panasonic LUMIX DMC-ZS40: + + Leica Q (Typ 116): + + Nikon D610: + + Fujifilm GFX 50S: + + Kodak DCS Pro SLR/n: + + Fujifilm X-A10: + + Nikon D5: + + Panasonic LUMIX DMC-L1: + + Fujifilm X-Pro1: + + Leica M8.2: + + Nikon COOLPIX P1000: + + Konica Minolta DiMAGE A200: + + Panasonic LUMIX DMC-TZ61: + + iPhone14,3 backtelephoto: + + Nikon D2Hs: + + Pentax K100D: + + iPhone15,4 back: + + Panasonic LUMIX DC-GH5S: + + Leica DIGILUX 2: + + Pentax K-70: + + Sony DSC-R1: + + Sony Alpha DSLR-A900: + + Fujifilm FinePix S2Pro: + + iPhone 9,1 backcamera: + + Panasonic LUMIX DMC-GF7: + + Leica D-Lux 2: + + iPhone12,3 backtelephoto: + + Nikon COOLPIX P340: + + Nikon 1 AW1: + + Pentax K100D Super: + + Samsung GX-1L: + + Fujifilm X-Pro2: + + Panasonic LUMIX DC-S1H: + + Sony Alpha ILCE-6500: + + Hasselblad H4D-40: + + Nikon D70s: + + Leica DIGILUX 3: + + Fujifilm FinePix S5Pro: + + iPhone10,5 telephoto: + + Leica D-Lux 6: + + Panasonic LUMIX DC-S5: + + Sony Alpha 7S II: + + Canon EOS 2000D: + + Panasonic LUMIX DMC-TZ85: + + iPhone16,1 back ultra wide: + + Fujifilm X-Pro3: + + iPhone9,2 wide: + + iPhone15,2 backultrawide: + + Nikon D500: + + Sony Alpha DSLR-A550: + + Fujifilm X-T30: + + Panasonic LUMIX DMC-GX1: + + Sony Alpha DSLR-A330: + + iPhone14,8 back ultra-wide: + + Nikon D5500: + + iPhone11,2 backwide: + + Canon PowerShot S60: + + Panasonic LUMIX DC-GH5: + + Nikon 1 S2: + + Panasonic LUMIX DC-S1R: + + Canon EOS 5DS: + + iPhone11,4 back telephoto: + + Panasonic LUMIX DMC-LF1: + + Panasonic LUMIX DC-FZ1000M2: + + Leica Q2: + + Canon Kiss X9i: + + Nikon 1 J2: + + Panasonic LUMIX DC-TZ200D: + + iPhone10,4 wide: + + Hasselblad H6D-100C: + + Fujifilm X-S20: + + Panasonic LUMIX DMC-G8: + + Panasonic LUMIX DC-TZ220: + + Olympus E-P7: + + Panasonic LUMIX DMC-FZ150: + + Olympus C70Z: + + Canon EOS Kiss X4: + + Fujifilm X-T20: + + Canon EOS R5C: + + Panasonic LUMIX DMC-ZS200: + + Sony Alpha SLT-A57: + + Canon PowerShot G10: + + Nikon D5000: + + Canon EOS-M100: + + Leica V-LUX (Typ 114): + + Panasonic LUMIX DC-TZ90: + + iPhone11,2 back telephoto: + + Panasonic LUMIX DC-GX7MK3: + + Panasonic LUMIX DC-FZ80: + + Pentax K-7: + + Sony Cyber-shot DSC-RX100 VA: + + Canon EOS 800D: + + Panasonic LUMIX DC-TZ95D: + + Canon EOS Kiss Digital X2: + + Fujifilm GFX100 II: + + Leica M11: + + Fujifilm X70: + + iPhone11,6 back telephoto: + + Canon EOS R: + + iPad Pro (9.7-inch) backcamera: + + Canon EOS 1100D: + + Sony Cyber-shot DSC-RX100 V: + + Sony Alpha ILCE-6000: + + Nikon D600: + + Sony Alpha ILCE-7RM5: + + Nikon D1X: + + Olympus STYLUS XZ-2: + + Olympus C8080WZ: + + iPhone14,4 backwide: + + Canon EOS Rebel T4i: + + Panasonic LUMIX DMC-GH1: + + Fujifilm X-S10: + + Hasselblad CF-22: + + Canon EOS R8: + + Nikon D810: + + Canon EOS 20D: + + Panasonic LUMIX DC-TZ95: + + Leica V-Lux 2: + + Fujifilm X-T10: + + Panasonic LUMIX DC-G99: + + Nikon 1 V1: + + iPhone 6s backcamera: + + Panasonic LUMIX DC-FZ85: + + Sony Alpha ILCE-7C: + + Canon EOS 850D: + + Canon EOS-M6: + + Canon PowerShot Pro1: + + Fujifilm XQ1: + + Leica C-Lux: + + Canon EOS 1300D: + + Olympus EVOLT E-520: + + Panasonic LUMIX DMC-ZS100: + + Samsung NX200: + + Panasonic LUMIX DMC-FZH1: + + iPhone15,3 backultrawide: + + Olympus SP-570UZ: + + Olympus PEN Lite E-PL7: + + Panasonic LUMIX DC-TZ202D: + + Panasonic LUMIX DC-ZS220D: + + Canon EOS 80D: + + Olympus PEN E-P1: + + Panasonic LUMIX DMC-FZ2000: + + Olympus E-300: + + Fujifilm X-E2: + + Nikon D3X: + + Canon EOS-1D X Mark II: + + Canon EOS-1D Mark II N: + + Leica SL (Typ 601): + + Sony Alpha ILCE-7C II: + + Pentax K-5 IIs: + + Sony Alpha NEX-5N: + + Nikon D6: + + Sony Alpha NEX-F3: + + Canon EOS M: + + Panasonic LUMIX DMC-ZS220: + + Canon EOS Kiss X5: + + Canon EOS R6 Mark II: + + iPhone10,6 back telephoto: + + Canon EOS Kiss X70: + + Sony Alpha SLT-A99 II: + + Panasonic LUMIX DMC-LX5: + + Sony Alpha DSLR-A560: + + Leaf Aptus-II 6: + + Sony ILME-FX3: + + Canon EOS 1500D: + + Sony Cyber-shot DSC-RX100 II: + + Panasonic LUMIX DMC-G5: + + Hasselblad H5D-50c: + + Fujifilm FinePix X100: + + Fujifilm X-A1: + + Nikon D3200: + + Panasonic LUMIX DMC-ZS110: + + Panasonic LUMIX DMC-ZS60: + + Nikon D7200: + + Nikon D700: + + Canon EOS 500D: + + Nikon D4S: + + Canon PowerShot G5 X Mark II: + + Leaf Aptus 65S: + + Leaf Aptus-II 7: + + Olympus E-3: + + Olympus PEN E-P2: + + Canon PowerShot S70: + + iPhone13,4 backwide: + + Canon EOS RP: + + Panasonic LUMIX DC-LX100M2: + + Canon PowerShot G5: + + Fujifilm X-A5: + + Pentax K2000: + + Leica C (Typ 112): + + Panasonic LUMIX DMC-TZ81: + + Panasonic LUMIX DMC-G81: + + Panasonic LUMIX DMC-FZ38: + + Pentax K-r: + + Panasonic LUMIX DC-GX880: + + Fujifilm X-100V: + + Sony Alpha DSLR-A850: + + Olympus OM-D E-M5: + + Pentax *ist DS2: + + Fujifilm X-T30 II: + + Canon EOS 550D: + + Nikon Z 7 2: + + Fujifilm X-T100: + + Nikon D300S: + + Nikon D2Xs: + + Canon EOS 9000D: + + Canon EOS Rebel T3: + + Canon EOS-1D Mark IV: + + Leaf Aptus 54S: + + iPhone12,5 backtelephoto: + + Sony Cyber-shot DSC-RX100 VI: + + Olympus PEN E-P3: + + Canon PowerShot G7 X: + + Fujifilm X-T1: + + iPhone15,3 front: + + Leica Q3: + + Pentax K-m: + + Sony Alpha NEX-C3: + + Olympus OM-D E-M1X: + + Canon Kiss X8: + + Sony Alpha SLT-A33: + + Sony Alpha 9: + + Canon EOS R3: + + Sony Alpha SLT-A58: + + Epson R-D1x: + + Nikon D800: + + Leaf Valeo 22: + + Fujifilm X-T5: + + Sony Cyber-shot DSC-RX100 IV: + + Canon R100: + + iPhone14,6 front: + + Sony Alpha DSLR-A700: + + Panasonic LUMIX DMC-TX2: + + Panasonic LUMIX DC-ZS200D: + + Canon EOS D30: + + Canon EOS Rebel T5i: + + Panasonic LUMIX DC-GF9: + + Canon EOS 200D: + + Olympus C7070WZ: + + Leaf Aptus 22: + + Leica X1: + + Canon EOS Kiss X6i: + + Panasonic LUMIX DMC-G2: + + Sony Alpha ILCE-6300: + + iPhone13,1 backwide: + + Nikon 1 J4: + + Pentax K110D: + + Canon EOS Rebel T6s: + + iPad 8,8 backcamera: + + Canon EOS Rebel SL1: + + Konica Minolta MAXXUM 5D: + + Olympus PEN E-PL1: + + Canon PowerShot G1 X Mark III: + + iPad13,8 backwide: + + Samsung NX10: + + Nikon D780: + + Sony Alpha ILCE-7M4: + + Canon EOS-1D X: + + Nikon D50: + + Leica CL: + + Olympus EVOLT E-420: + + Sony Alpha DSLR-A350: + + iPhone 11,8 backcamera: + + iPhone16,2 back ultra wide: + + Epson R-D1: + + Olympus STYLUS TG-4 Tough: + + iPhone14,6 back camera: + + Leica D-Lux 5: + + Canon EOS 250D: + + Leaf AFi-II 7: + + Epson R-D1s: + + Panasonic LUMIX DMC-FZ72: + + Olympus PEN E-P5: + + iPhone 9,3 backcamera: + + Canon EOS 30D: + + Panasonic LUMIX DMC-GX8: + + Sony Alpha ILCE-7R: + + Panasonic LUMIX DMC-GM1S: + + Canon EOS Kiss X80: + + PENTAX RICOH GR III: + + Canon EOS Kiss X7: + + Panasonic LUMIX DC-TZ92: + + Panasonic LUMIX DC-FZ82: + + Samsung GX-1S: + + Pentax *ist D: + + Olympus E-330: + + Panasonic LUMIX DC-GH5M2: + + Nikon Df: + +SPI: + + Apple Internal Keyboard / Trackpad: + + Product ID: 0x0357 + Vendor ID: 0 + ST Version: 4.60 + MT Version: 7.60 + Serial Number: FM7HDK0ATYF0000F96+AYTN + Manufacturer: Apple + Location ID: 0x000000aa + Hardware ID: 0x0001 + +SmartCards: + + Readers: + + Reader Drivers: + + #01: fr.apdu.ccid.smartcardccid:1.5.1 (/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle) + + SmartCard Drivers: + + #01: com.apple.CryptoTokenKit.pivtoken:1.0 (/System/Library/Frameworks/CryptoTokenKit.framework/PlugIns/pivtoken.appex) + + Available SmartCards (keychain): + + com.apple.setoken: + + com.apple.setoken:aks: + + Available SmartCards (token): + + com.apple.setoken: + + com.apple.setoken:aks: + +Software: + + System Software Overview: + + System Version: macOS 15.4.1 (24E263) + Kernel Version: Darwin 24.4.0 + Boot Volume: Macintosh HD + Boot Mode: Normal + Computer Name: MacBook Air — Main + User Name: main (test) + Secure Virtual Memory: Enabled + System Integrity Protection: Enabled + Time since boot: 19 дней, 16 часов, 23 минуты + +Storage: + + Data: + + Free: 110,01 GB (110 012 362 752 bytes) + Capacity: 245,11 GB (245 107 195 904 bytes) + Mount Point: /System/Volumes/Data + File System: APFS + Writable: Yes + Ignore Ownership: No + BSD Name: disk3s5 + Volume UUID: C6ADB841-2907-421F-B33E-F7633C06428D + Physical Drive: + Device Name: APPLE SSD AP0256Z + Media Name: AppleAPFSMedia + Medium Type: SSD + Protocol: Apple Fabric + Internal: Yes + Partition Map Type: Unknown + S.M.A.R.T. Status: Verified + + iOS 18.4 Simulator Bundle: + + Free: 263,2 MB (263 184 384 bytes) + Capacity: 9,12 GB (9 116 319 744 bytes) + Mount Point: /Library/Developer/CoreSimulator/Cryptex/Images/bundle/SimRuntimeBundle-21CF05C3-9B4C-4CBA-BABC-8D9C33F0052A + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk5s1 + Volume UUID: 1E636626-73D7-484B-835A-A24FBF7D2C5C + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + iOS 18.4 Simulator: + + Free: 518,6 MB (518 606 848 bytes) + Capacity: 20,7 GB (20 698 890 240 bytes) + Mount Point: /Library/Developer/CoreSimulator/Volumes/iOS_22E238 + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk7s1 + Volume UUID: DD50EC5C-3A04-49B5-88ED-F50BB6C03943 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Endoparasitic 2: + + Free: 56,4 MB (56 418 304 bytes) + Capacity: 320,8 MB (320 823 296 bytes) + Mount Point: /Volumes/Endoparasitic 2 + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk9s1 + Volume UUID: F9F7CE72-0818-4C54-A869-DA53F4F8A363 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Mini Motorways: + + Free: 54,8 MB (54 751 232 bytes) + Capacity: 311,4 MB (311 386 112 bytes) + Mount Point: /Volumes/Mini Motorways + File System: APFS + Writable: No + Ignore Ownership: Yes + BSD Name: disk11s1 + Volume UUID: 85CA7846-AA18-4FAB-B50D-92856B5A9007 + Physical Drive: + Device Name: Disk Image + Media Name: AppleAPFSMedia + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Macintosh HD: + + Free: 110,01 GB (110 012 362 752 bytes) + Capacity: 245,11 GB (245 107 195 904 bytes) + Mount Point: / + File System: APFS + Writable: No + Ignore Ownership: No + BSD Name: disk3s1s1 + Volume UUID: 53435747-C371-4509-B67B-6673C9E4145D + Physical Drive: + Device Name: APPLE SSD AP0256Z + Media Name: AppleAPFSMedia + Medium Type: SSD + Protocol: Apple Fabric + Internal: Yes + Partition Map Type: Unknown + S.M.A.R.T. Status: Verified + + XPPenPenTablet: + + Free: 90,5 MB (90 517 504 bytes) + Capacity: 200 MB (199 999 488 bytes) + Mount Point: /Volumes/XPPenPenTablet + File System: HFS+ + Writable: No + Ignore Ownership: Yes + BSD Name: disk12 + Volume UUID: B78601B3-9023-3D26-9C2D-7759447267B5 + Physical Drive: + Device Name: Disk Image + Media Name: Apple UDIF read-only compressed (zlib) Media + Protocol: Disk Image + Internal: No + Partition Map Type: Unknown + + Steam: + + Free: 14,4 MB (14 385 152 bytes) + Capacity: 22 MB (22 016 000 bytes) + Mount Point: /Volumes/Steam + File System: HFS+ + Writable: No + Ignore Ownership: Yes + BSD Name: disk13s1 + Volume UUID: 75897109-9459-3ACB-B5D2-595E10B38BB8 + Physical Drive: + Device Name: Disk Image + Media Name: Apple Disk Image Media + Protocol: Disk Image + Internal: No + Partition Map Type: GPT (GUID Partition Table) + + Docker: + + Free: 178,9 MB (178 921 472 bytes) + Capacity: 2,11 GB (2 113 888 256 bytes) + Mount Point: /Volumes/Docker + File System: HFS+ + Writable: No + Ignore Ownership: Yes + BSD Name: disk14s2 + Volume UUID: 69C9886E-68B7-3F69-A95C-1819A556123E + Physical Drive: + Device Name: Disk Image + Media Name: Apple Disk Image Media + Protocol: Disk Image + Internal: No + Partition Map Type: GPT (GUID Partition Table) + +Sync Services: + + Sync Services Summary: + + Mac OS Version: 10,6 + + system.log: + + Errors and Warnings: + + Logs: + + system.log: + + Description: System Log + Date Modified: 15.05.2025, 12:34 + Size: 6 KB + Contents: May 15 00:13:16 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 00:29:15 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 00:46:02 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.cdscheduler" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.install" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl". + Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl". + Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd". +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.authd" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.eventmonitor" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mail" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.performance" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.iokit.power" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.contacts.ContactsAutocomplete" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mkb" sharing output destination "/private/var/log/keybagd.log" with ASL Module "com.apple.mkb.internal". + Output parameters from ASL Module "com.apple.mkb.internal" override any specified in ASL Module "com.apple.mkb". +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.mkb" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 00:46:02 MacBook-Air--Main syslogd[410]: Configuration Notice: + ASL Module "com.apple.MessageTracer" claims selected messages. + Those messages may not appear in standard system log files or in the ASL database. +May 15 01:02:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 01:18:14 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 01:38:38 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 02:00:19 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 02:16:23 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 02:33:52 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 02:49:38 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 03:07:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 03:25:28 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 03:41:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 03:58:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 04:16:38 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 04:34:18 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 04:51:24 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 05:09:14 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 05:34:19 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 05:50:26 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 06:08:29 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 06:26:03 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 06:42:50 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 06:59:15 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 07:18:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 07:34:25 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 07:50:29 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 08:06:06 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 08:19:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 08:36:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 08:53:34 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 09:08:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 09:20:54 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 09:38:57 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 09:55:00 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 10:13:31 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 10:37:34 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 10:54:12 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 11:10:01 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 11:22:53 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 11:46:19 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 12:04:36 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 12:20:34 MacBook-Air--Main syslogd[410]: ASL Sender Statistics +May 15 12:34:27 MacBook-Air--Main syslogd[410]: ASL Sender Statistics + + +Thunderbolt/USB4: + + Thunderbolt/USB4 Bus 1: + + Vendor Name: Apple Inc. + Device Name: MacBook Air + UID: 0x05AC49D5982D9971 + Route String: 0 + Domain UUID: 27A83CA6-5E0B-459E-AE5C-6D9948028FA0 + Port: + Status: No device connected + Link Status: 0x100 + Speed: Up to 40 Gb/s + Receptacle: 2 + + Thunderbolt/USB4 Bus 0: + + Vendor Name: Apple Inc. + Device Name: MacBook Air + UID: 0x05AC49D5982D9970 + Route String: 0 + Domain UUID: D214685E-BAA0-4E8F-B983-439FF57ACBF7 + Port: + Status: No device connected + Link Status: 0x100 + Speed: Up to 40 Gb/s + Receptacle: 1 + +USB: + + USB 3.1 Bus: + + Host Controller Driver: AppleT8122USBXHCI + + USB 3.1 Bus: + + Host Controller Driver: AppleT8122USBXHCI + +Volumes: + + home: + + Type: autofs + Mount Point: /System/Volumes/Data/home + Mounted From: map auto_home + Automounted: Yes + +Wi-Fi: + + Software Versions: + CoreWLAN: 16.0 (1657) + CoreWLANKit: 16.0 (1657) + Menu Extra: 17.0 (1728) + System Information: 15.0 (1502) + IO80211 Family: 12.0 (1200.13.1) + Diagnostics: 11.0 (1163) + AirPort Utility: 6.3.9 (639.26) + Interfaces: + en0: + Card Type: Wi-Fi (0x14E4, 0x4388) + Firmware Version: wl0: Feb 27 2025 18:17:26 version 23.40.26.0.41.51.177 FWID 01-36c62c6c +IO80211_driverkit-1475.34 "IO80211_driverkit-1475.34" Mar 9 2025 20:59:13 + MAC Address: 3e:2a:63:95:d0:4a + Supported PHY Modes: 802.11 a/b/g/n/ac/ax + Wake On Wireless: Supported + AirDrop: Supported + Auto Unlock: Supported + Status: Off + diff --git a/testGPT.py b/testGPT.py new file mode 100644 index 0000000..2079f7b --- /dev/null +++ b/testGPT.py @@ -0,0 +1,11 @@ +from ollama import chat +from ollama import ChatResponse + +response: ChatResponse = chat(model='llama3.2', messages=[ + { + 'role': 'user', + 'content': 'Саввис норм чел или нет?', + }, +]) +print(response['message']['content']) +print(response.message.content) \ No newline at end of file